f71c34a8 by Jeff Balicki

SSS

1 parent 54fe6eef
......@@ -2,7 +2,6 @@
namespace Tz\WordPress\Tools\Notifications\Settings;
use Tz\Common;
use Tz\WordPress\Tools;
use Tz\WordPress\Tools\Notifications;
......@@ -107,7 +106,6 @@ function display_page()
$link = $_POST[$lang . '_push_notifications_link'];
$status = $_POST[$lang . '_push_notifications_status'];
if (count($entry->email[$lang . '_attachments']) > 0) {
$attachments = array_merge($entry->email[$lang . '_attachments'], $attachments);
}
......@@ -118,14 +116,14 @@ function display_page()
$lang . '_subject' => $subject,
$lang . '_text' => $text,
$lang . '_html' => $html,
$lang . '_attachments' => $attachments
$lang . '_attachments' => $attachments,
]
);
$systemMessageData = array_merge(
$systemMessageData,
[
'system_message_type' => $systemMessageType,
$lang . '_message' => $system
$lang . '_message' => $system,
]
);
$pushMessageData = array_merge(
......@@ -135,7 +133,7 @@ function display_page()
$lang . '_title' => $title,
$lang . '_message' => $message,
$lang . '_link' => $link,
$lang . '_status' => $status
$lang . '_status' => $status,
]
);
}
......@@ -148,8 +146,7 @@ function display_page()
'sendto' => $sendto,
'status' => $entry->details['status'],
'trigger' => $trigger,
'execute_date' => $executeDate
'execute_date' => $executeDate,
]
);
......@@ -182,9 +179,9 @@ function display_page()
$entry->push = $push;
$flash = '<strong>Notification Saved Successfully!</strong><br /><a href=""/wp-admin/admin.php?page=notifications">Click here</a> to view all notifications.</a>';
require_once(__DIR__ . '/views/form.php');
require_once __DIR__ . '/views/form.php';
} else {
require_once(__DIR__ . '/views/form.php');
require_once __DIR__ . '/views/form.php';
}
} else {
if (isset($_GET['action']) && $_GET['action'] == 'delete') {
......@@ -211,7 +208,7 @@ function display_page()
'order' => 'desc',
'meta_key' => 'send_status',
'meta_compare' => '=',
'meta_value' => 'pending'
'meta_value' => 'pending',
];
$entries = get_posts($args);
......@@ -239,7 +236,7 @@ function display_page()
}
}
require_once(__DIR__ . '/views/admin.php');
require_once __DIR__ . '/views/admin.php';
}
}
......@@ -296,7 +293,7 @@ function fixFilesArray(&$files)
function notification_settings()
{
require_once(__DIR__ . '/views/settings.php');
require_once __DIR__ . '/views/settings.php';
}
function create_notification()
......@@ -326,7 +323,7 @@ function create_notification()
if ($_POST && ($_POST['en_subject'] == '' && $_POST['fr_subject'] == '' && $_POST['en_system'] == '' && $_POST['fr_system'] == '')) {
$form_error = true;
require_once(__DIR__ . '/views/create.php');
require_once __DIR__ . '/views/create.php';
} else {
if ($validation->run() == true) {
......@@ -353,14 +350,7 @@ function create_notification()
$emailData = [];
$systemMessageData = [];
$pushMessageData = [];
$def_trid = "";
foreach (['en', 'fr'] as $lang) {
// email
$subject = $_POST[$lang . '_subject'];
......@@ -396,7 +386,7 @@ function create_notification()
'post_title' => $subject,
'post_status' => 'publish',
'post_type' => 'newsLetter',
'post_content' => '<div id="newsletter">' . $html . '</div>',
'post_content' => $html,
)
);
......@@ -415,15 +405,25 @@ function create_notification()
'element_type' => $wpml_element_type,
'trid' => $original_post_language_info->trid,
'language_code' => $lang,
'source_language_code' => $original_post_language_info->language_code
'source_language_code' => $original_post_language_info->language_code,
);
do_action('wpml_set_element_language_details', $set_language_args);
}
if ($post_id && $lang == 'en') {
$postIdEn = $post_id;
}
if ($post_id && $lang == 'fr') {
$postIdFr = $post_id;
}
} else {
$post_id = -2;
}
}
// system
......@@ -436,8 +436,6 @@ function create_notification()
$link = $_POST[$lang . '_push_notifications_link'];
$status = $_POST[$lang . '_push_notifications_status'];
$emailData = array_merge(
$emailData,
[
......@@ -452,7 +450,7 @@ function create_notification()
$systemMessageData,
[
'system_message_type' => $systemMessageType,
$lang . '_message' => $system
$lang . '_message' => $system,
]
);
$pushMessageData = array_merge(
......@@ -462,16 +460,13 @@ function create_notification()
$lang . '_title' => $title,
$lang . '_message' => $message,
$lang . '_link' => $link,
$lang . '_status' => $status
$lang . '_status' => $status,
]
);
$links[$lang] = get_permalink($post_id);
}
// make post...
$notification = new PostTemplate();
$notification->post_title = $title;
......@@ -484,6 +479,9 @@ function create_notification()
if ($style == 'newsletter') {
update_post_meta($id, 'links', $links);
global $sitepress;
$def_trid = $sitepress->get_element_trid($postIdEn, 'post_newsletter');
$sitepress->set_element_language_details($postIdFr, 'post_newsletter', $def_trid, 'fr');
}
update_post_meta(
......@@ -494,7 +492,7 @@ function create_notification()
'sendto' => $sendto,
'status' => 'pending',
'trigger' => $trigger,
'execute_date' => $executeDate
'execute_date' => $executeDate,
]
);
......@@ -505,26 +503,22 @@ function create_notification()
update_post_meta($id, 'trigger', $trigger);
update_post_meta($id, 'email', $emailData);
update_post_meta($id, 'style', $style);
update_post_meta($id, 'system', $systemMessageData);
update_post_meta($id, 'push', $pushMessageData);
$flash = "<strong>Notification Saved Successfully!</strong><br /><a href='/wp-admin/admin.php?page=notifications'>Click here</a> to view all notifications.</a>";
require_once(__DIR__ . '/views/create.php');
require_once __DIR__ . '/views/create.php';
} else {
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . 'create.php');
require_once __DIR__ . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . 'create.php';
}
}
}
function strip_word_html($text, $allowed_tags = '<b><i><sup><sub><em><strong><u><br>')
{
mb_regex_encoding('UTF-8');
//replace MS special characters first
$search = array('/&lsquo;/u', '/&rsquo;/u', '/&ldquo;/u', '/&rdquo;/u', '/&mdash;/u');
......@@ -542,7 +536,6 @@ function strip_word_html($text, $allowed_tags = '<b><i><sup><sub><em><strong><u>
$text = preg_replace('/\<!--(.)*--\>/isu', '', $text);
}
$text = preg_replace('/(?:width\=\"\d*\")\S/mxi', '>', $text);
$text = preg_replace('/(?:width\=\"\d*%\")\S/mxi', '>', $text);
return $text;
......
......@@ -8,6 +8,20 @@ function getInputFormValues($validation, $name)
{
return ($validation->set_value($name) != '') ? $validation->set_value($name) : (!empty($_POST[$name])) ? $_POST[$name] : '';
}
$newsletter = get_posts_with_fallback(
[
'suppress_filters' => false,
'post_type' => 'newsletter',
'posts_per_page' => 1,
'order' => 'DESC',
]
);
$newsletterEnId = icl_object_id($newsletter[0]->ID, 'newsletter', false, 'en');
$newsletterFrId = icl_object_id($newsletter[0]->ID, 'newsletter', false, 'fr');
$newsletterEn = get_post($newsletterEnId);
$newsletterFr = get_post($newsletterFrId);
?>
......@@ -446,43 +460,9 @@ endforeach;
jQuery('.scheduled_sendto').show();
//$(tinymce.get('en_html').getBody()).html(header+footer);
//$(tinymce.get('fr_html').getBody()).html(header_fr+footer_fr);
jQuery(tinymce.get('en_html').getBody()).html('<div id="newsletter"><p><img class="header-img alignnone wp-image-125416 size-full" src="https://cbvinstitute.com/wp-content/uploads/2019/02/image001.png" alt="" width="1691" height="441" /></p><p>&nbsp;</p>' +
'<div class="content-block-header"><h2><span style="font-family: MyanmarMN;"><strong><span style="color: #ffffff;">BREAKING</span> <span style="color: #6ac9c8;">NEWS</span></strong></span></h2>'+
'<table> <tbody> <tr class="trlast-child"> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="font-family: MyanmarMN; color: #221d58;">FIRST-EVER CBV INSTITUTE </span><br /> <span style="font-family: MyanmarMN; color: #6ac9c8;">EXPERT WITNESS SYMPOSIUM</span></h1> <p style="text-align: left;">The CICBV is pleased to present its inaugural <strong>Expert Witness Symposium on Nov 19 20, 2018</strong>.'+
' <p>This event will provide CBVs with the unique opportunity to learn from, and with, renowned CBVs, senior legal counsel, and a federal court judge in an interactive and practical format. The Symposium will be of interest to CBVs who are looking to either brush up on, or develop, credible expert witness skills. Participants interested in attending this session should have some litigation support experience.</p> <p style="text-align: left;">Attendees may choose the live in-person <strong><a href="https://cicbv.ca/events/expert-witness-symposium-in-person-2-day-live-event/">2-day session</a></strong> or the <strong>'+
'<a href="https://cicbv.ca/events/livestreaming-day-1-expert-witness-symposium/">live streaming of day 1</a></strong>. Space is very limited don t miss this fantastic opportunity to learn from the best!</p> </td> </tr> </tbody> </table> <p><img class="aligncenter wp-image-129339 size-full" src="https://cbvinstitute.com/wp-content/uploads/2019/07/Summer-Social-Draft-2-1.jpg" alt="" width="1200" height="627" /></p> </div> <table> <tbody> <tr> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="color: #221d58; font-family: MyanmarMN;">CBV INSTITUTE <span style="color: #6ac9c8;">EVENTS</span></span></h1> '+
' <table> <tbody> <tr> <td> <p><span style="color: #221d58;">09/19/18</span></p> </td> <td> <p><span style="color: #221d58;">When is the right time to sell: How do we give the Business Owner comfort on their cash flow in the post transaction period?</span></p> </td> <td> <p><span style="color: #221d58;">WORKSHOP</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/when-is-the-right-time-to-sell-how-do-we-give-the-business-owner-comfort-on-their-cash-flow-in-the-post-transaction-period/">More information/Registration</a></span></p> '+
' </td> </tr> <tr> <td> <p><span style="color: #221d58;">09/20/18</span></p> </td> <td> <p><span style="color: #221d58;">Texas Scramble Golf Tournament</span></p> </td> <td> <p><span style="color: #221d58;">WORKSHOP</span></p> </td> <td> <p><span style="color: #221d58;">CALGARY</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/calgary-workshop-texas-scramble-golf-tournament-5/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">09/28/18</span></p> <p> </p> </td> <td> <p><span style="color: #221d58;">The Art & Science of Forecasting</span></p>'+
' </td> <td> <p><span style="color: #221d58;">WEBINAR/</span></p> <p><span style="color: #221d58;">LUNCHEON</span></p> </td> <td> <p><span style="color: #221d58;">TORONTO</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cfainstitute.force.com/s/lt-event?site=a0Wj0000005liezEAA&id=a1Of1000002mbpBEAQ">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">10/03/18</span></p> </td> <td> <p><span style="color: #221d58;">Key Elements of US Tax Reform for Canadians</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> '+
' <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/key-elements-of-us-tax-reform-for-canadians/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">10/17/18</span></p> </td> <td> <p><span style="color: #221d58;">Cannabis in Canada</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/cannabis-in-canada/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">11/19/18</span></p> </td> <td>'+
' <p><span style="color: #221d58;">Expert Witness Symposium (Live streaming Day 1 only)</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/livestreaming-day-1-expert-witness-symposium/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">11/19/18</span></p> </td> <td> <p><span style="color: #221d58;">Expert Witness Symposium </span><br /> <span style="color: #221d58;">(In-person 2 day live event)</span></p> </td> <td> <p><span style="color: #221d58;">SYMPOSIUM</span></p> </td> <td> '+
' <p><span style="color: #221d58;">TORONTO</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/cannabis-in-canada/">More information/Registration</a></span></p> </td> </tr> <tr class="trlast-child"> <td> <p><span style="color: #221d58;">01/16/19</span></p> </td> <td> <p><span style="color: #221d58;">Strategies to address the estate and tax implications of trapped money in a holding company</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/cannabis-in-canada/">More information/Registration</a></span></p> </td> </tr> </tbody> '+
' </table> </td> </tr> <tr> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="color: #221d58; font-family: MyanmarMN;">POD<span style="color: #6ac9c8;">CASTS</span></span></h1> <table> <tbody> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Recordings</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day M&A Update</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td>'+
' <p><span style="color: #221d58;">2017 Atlantic PD Day Bankers Perspective on Current Capital </span><br /> <span style="color: #221d58;">Structure Trends</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Cross Examination Preparation by Expert Witnesses</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Family Law Panel Discussion</span></p> </td> '+
'<td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr class="trlast-child"> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Topical Issues in Business Loss Quantification</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="color: #221d58; font-family: MyanmarMN;">EXTERNAL <span style="color: #6ac9c8;">EVENTS</span></span></h1> <p style="text-align: left;"><span style="color: #221d58;">ASA 2018 ABV Conference '+
'<strong>Huge discount for CICBV Members and Students</strong></span><br /> <span style="color: #221d58;">Save <sup>$</sup>1,100 For only <strong><sup>$</sup>200 CICBV</strong> Members and students can attend the ASA 2018 Advanced Business Valuation Conference in Anaheim <strong>California October 7 10, 2018</strong>.</span></p> <p style="text-align: left;"><span style="color: #221d58;"> Enhance Your Professional Knowledge</span></p> <p style="text-align: left;"><span style="color: #221d58;"> Learn from the Very Best in the BV Profession</span></p> <p style="text-align: left;"><span style="color: #221d58;"> Build Your Business Network and Make New Contacts</span></p> <p style="text-align: left;"><span style="color: #221d58;">CBV INSTITUTE EVENTS</span></p> <p style="text-align: left;"><span style="color: #221d58;">'+
'<strong>1. </strong>Meet and Learn from the World s Most Renowned Thought Leaders </span><br /> <span style="color: #221d58;">in Business Valuation.</span></p> <p style="text-align: left;"><span style="color: #221d58;"><strong>2. </strong>Network with 600+ Appraisal Professionals from 6 Disciplines.</span></p> <p style="text-align: left;"><span style="color: #221d58;"><strong>3. </strong>Pre-Conference BV Courses are Available for an Additional Registration Fee.</span></p> <p> </p> <p><span style="color: #221d58;"><strong> </strong></span></p> <div class="call-to-action"> <h2><span style="color: #ffffff;"><strong>For more information/registration </strong><span style="color: #6ac9c8;"><strong><a style="color: #6ac9c8;" href="https://cicbv.ca/wp-content/uploads/2018/08/ASA-BV-Conference-2018.pdf">click here</a></strong></span></span></h2> </div>'+
' <p><span style="color: #221d58;"><strong><u> </u></strong></span></p> </td> </tr> <tr class="trlast-child"> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="font-family: MyanmarMN; color: #221d58;">EMPLOYMENT <span style="color: #6ac9c8;">OPPORTUNITIES</span></span></h1> <table> <tbody> <tr> <td> <p>08/02/18</p> </td> <td> <p>MDD Forensic Accountants</p> </td> <td> <p>LONDON</p> </td> <td class="tdlast-child"> <p>Senior Manager</p> </td> </tr> <tr> <td> <p>07/26/18</p> </td> <td> <p>Ontario Teachers Pension Plan</p> </td> <td> <p>TORONTO</p> </td> <td class="tdlast-child"> <p><a href="https://cicbv.ca/employment/senior-financial-analyst-valuations/">Senior Financial Analyst, Valuations</a></p> </td> </tr> <tr class="trlast-child"> <td> <p>06/13/16</p> </td> <td> <p>Raymond Chabot Grant Thornton</p> </td> <td> '+
' <p>SHERBROOKE</p> </td> <td class="tdlast-child"> <p><a href="https://cicbv.ca/employment/conseiller-en-evaluation-dentreprise-2/">Conseiller en valuation d entreprises</a></p> </td> </tr> </tbody> </table> <p><img class="alignnone wp-image-129621 " src="https://cbvinstitute.com/wp-content/uploads/2019/07/LI-In-Bug-150x150.png" alt="" width="50" height="50" /></p> </td> </tr> </tbody> </table> </div>');
jQuery(tinymce.get('fr_html').getBody()).html('<div id="newsletter"><p><img class="header-img alignnone wp-image-125416 size-full" src="https://cbvinstitute.com/wp-content/uploads/2019/02/image002.png" alt="" width="1691" height="441" /></p><p>&nbsp;</p>' +
'<div class="content-block-header"><h2><span style="font-family: MyanmarMN;"><strong><span style="color: #ffffff;">DERNIÈRES</span> <span style="color: #6ac9c8;">NOUVELLES</span></strong></span></h2>'+
'<table> <tbody> <tr class="trlast-child"> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="font-family: MyanmarMN; color: #221d58;">FIRST-EVER CBV INSTITUTE </span><br /> <span style="font-family: MyanmarMN; color: #6ac9c8;">EXPERT WITNESS SYMPOSIUM</span></h1> <p style="text-align: left;">The CICBV is pleased to present its inaugural <strong>Expert Witness Symposium on Nov 19 20, 2018</strong>.'+
'<p>This event will provide CBVs with the unique opportunity to learn from, and with, renowned CBVs, senior legal counsel, and a federal court judge in an interactive and practical format. The Symposium will be of interest to CBVs who are looking to either brush up on, or develop, credible expert witness skills. Participants interested in attending this session should have some litigation support experience.</p> <p style="text-align: left;">Attendees may choose the live in-person <strong><a href="https://cicbv.ca/events/expert-witness-symposium-in-person-2-day-live-event/">2-day session</a></strong> or the <strong>'+
'<a href="https://cicbv.ca/events/livestreaming-day-1-expert-witness-symposium/">live streaming of day 1</a></strong>. Space is very limited don t miss this fantastic opportunity to learn from the best!</p> </td> </tr> </tbody> </table> <p><img class="aligncenter wp-image-129339 size-full" src="https://cbvinstitute.com/wp-content/uploads/2019/07/Summer-Social-Draft-2-1.jpg" alt="" width="1200" height="627" /></p> </div> <table> <tbody> <tr> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="color: #221d58; font-family: MyanmarMN;">CBV INSTITUTE <span style="color: #6ac9c8;">EVENTS</span></span></h1> '+
' <table> <tbody> <tr> <td> <p><span style="color: #221d58;">09/19/18</span></p> </td> <td> <p><span style="color: #221d58;">When is the right time to sell: How do we give the Business Owner comfort on their cash flow in the post transaction period?</span></p> </td> <td> <p><span style="color: #221d58;">WORKSHOP</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/when-is-the-right-time-to-sell-how-do-we-give-the-business-owner-comfort-on-their-cash-flow-in-the-post-transaction-period/">More information/Registration</a></span></p> '+
' </td> </tr> <tr> <td> <p><span style="color: #221d58;">09/20/18</span></p> </td> <td> <p><span style="color: #221d58;">Texas Scramble Golf Tournament</span></p> </td> <td> <p><span style="color: #221d58;">WORKSHOP</span></p> </td> <td> <p><span style="color: #221d58;">CALGARY</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/calgary-workshop-texas-scramble-golf-tournament-5/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">09/28/18</span></p> <p> </p> </td> <td> <p><span style="color: #221d58;">The Art & Science of Forecasting</span></p>'+
' </td> <td> <p><span style="color: #221d58;">WEBINAR/</span></p> <p><span style="color: #221d58;">LUNCHEON</span></p> </td> <td> <p><span style="color: #221d58;">TORONTO</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cfainstitute.force.com/s/lt-event?site=a0Wj0000005liezEAA&id=a1Of1000002mbpBEAQ">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">10/03/18</span></p> </td> <td> <p><span style="color: #221d58;">Key Elements of US Tax Reform for Canadians</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> '+
' <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/key-elements-of-us-tax-reform-for-canadians/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">10/17/18</span></p> </td> <td> <p><span style="color: #221d58;">Cannabis in Canada</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/cannabis-in-canada/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">11/19/18</span></p> </td> <td>'+
' <p><span style="color: #221d58;">Expert Witness Symposium (Live streaming Day 1 only)</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/livestreaming-day-1-expert-witness-symposium/">More information/Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">11/19/18</span></p> </td> <td> <p><span style="color: #221d58;">Expert Witness Symposium </span><br /> <span style="color: #221d58;">(In-person 2 day live event)</span></p> </td> <td> <p><span style="color: #221d58;">SYMPOSIUM</span></p> </td> <td> '+
' <p><span style="color: #221d58;">TORONTO</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/cannabis-in-canada/">More information/Registration</a></span></p> </td> </tr> <tr class="trlast-child"> <td> <p><span style="color: #221d58;">01/16/19</span></p> </td> <td> <p><span style="color: #221d58;">Strategies to address the estate and tax implications of trapped money in a holding company</span></p> </td> <td> <p><span style="color: #221d58;">WEBINAR</span></p> </td> <td> <p> </p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/cannabis-in-canada/">More information/Registration</a></span></p> </td> </tr> </tbody> '+
' </table> </td> </tr> <tr> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="color: #221d58; font-family: MyanmarMN;">POD<span style="color: #6ac9c8;">CASTS</span></span></h1> <table> <tbody> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Recordings</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day M&A Update</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td>'+
' <p><span style="color: #221d58;">2017 Atlantic PD Day Bankers Perspective on Current Capital </span><br /> <span style="color: #221d58;">Structure Trends</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Cross Examination Preparation by Expert Witnesses</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Family Law Panel Discussion</span></p> </td> '+
'<td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> <tr class="trlast-child"> <td> <p><span style="color: #221d58;">2017 Atlantic PD Day Topical Issues in Business Loss Quantification</span></p> </td> <td class="tdlast-child"> <p><span style="color: #221d58;"><a style="color: #221d58;" href="https://cicbv.ca/events/2017-atlantic-pd-day-recordings/">More information/ Registration</a></span></p> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="color: #221d58; font-family: MyanmarMN;">EXTERNAL <span style="color: #6ac9c8;">EVENTS</span></span></h1> <p style="text-align: left;"><span style="color: #221d58;">ASA 2018 ABV Conference '+
'<strong>Huge discount for CICBV Members and Students</strong></span><br /> <span style="color: #221d58;">Save <sup>$</sup>1,100 For only <strong><sup>$</sup>200 CICBV</strong> Members and students can attend the ASA 2018 Advanced Business Valuation Conference in Anaheim <strong>California October 7 10, 2018</strong>.</span></p> <p style="text-align: left;"><span style="color: #221d58;"> Enhance Your Professional Knowledge</span></p> <p style="text-align: left;"><span style="color: #221d58;"> Learn from the Very Best in the BV Profession</span></p> <p style="text-align: left;"><span style="color: #221d58;"> Build Your Business Network and Make New Contacts</span></p> <p style="text-align: left;"><span style="color: #221d58;">CBV INSTITUTE EVENTS</span></p> <p style="text-align: left;"><span style="color: #221d58;">'+
'<strong>1. </strong>Meet and Learn from the World s Most Renowned Thought Leaders </span><br /> <span style="color: #221d58;">in Business Valuation.</span></p> <p style="text-align: left;"><span style="color: #221d58;"><strong>2. </strong>Network with 600+ Appraisal Professionals from 6 Disciplines.</span></p> <p style="text-align: left;"><span style="color: #221d58;"><strong>3. </strong>Pre-Conference BV Courses are Available for an Additional Registration Fee.</span></p> <p> </p> <p><span style="color: #221d58;"><strong> </strong></span></p> <div class="call-to-action"> <h2><span style="color: #ffffff;"><strong>For more information/registration </strong><span style="color: #6ac9c8;"><strong><a style="color: #6ac9c8;" href="https://cicbv.ca/wp-content/uploads/2018/08/ASA-BV-Conference-2018.pdf">click here</a></strong></span></span></h2> </div>'+
' <p><span style="color: #221d58;"><strong><u> </u></strong></span></p> </td> </tr> <tr class="trlast-child"> <td class="tdlast-child"> <h1 style="text-align: left;"><span style="font-family: MyanmarMN; color: #221d58;">EMPLOYMENT <span style="color: #6ac9c8;">OPPORTUNITIES</span></span></h1> <table> <tbody> <tr> <td> <p>08/02/18</p> </td> <td> <p>MDD Forensic Accountants</p> </td> <td> <p>LONDON</p> </td> <td class="tdlast-child"> <p>Senior Manager</p> </td> </tr> <tr> <td> <p>07/26/18</p> </td> <td> <p>Ontario Teachers Pension Plan</p> </td> <td> <p>TORONTO</p> </td> <td class="tdlast-child"> <p><a href="https://cicbv.ca/employment/senior-financial-analyst-valuations/">Senior Financial Analyst, Valuations</a></p> </td> </tr> <tr class="trlast-child"> <td> <p>06/13/16</p> </td> <td> <p>Raymond Chabot Grant Thornton</p> </td> <td> '+
' <p>SHERBROOKE</p> </td> <td class="tdlast-child"> <p><a href="https://cicbv.ca/employment/conseiller-en-evaluation-dentreprise-2/">Conseiller en valuation d entreprises</a></p> </td> </tr> </tbody> </table> <p><img class="alignnone wp-image-129621 " src="https://cbvinstitute.com/wp-content/uploads/2019/07/LI-In-Bug-150x150.png" alt="" width="50" height="50" /></p> </td> </tr> </tbody> </table> </div>');
jQuery(tinymce.get('en_html').getBody()).html(<?php echo json_encode($newsletterEn->post_content); ?>);
jQuery(tinymce.get('fr_html').getBody()).html(<?php echo json_encode($newsletterFr->post_content); ?>);
jQuery('#execute_date').datetimepicker({
format: 'Y-m-d, H:i',
......