Bergeron Briefs

Bergeron Briefs:

Bergeron Briefs is a show sponsored by Mirick O’Connell and hosted by elder law attorney Arthur Bergeron of Mirick O’Connell’s Westborough office. It is a show that introduces viewers to the people that they need to know if they are seniors in the community. It is meant to supplement the various seminars Bergeron hosts in Westborough and surrounding communities on elder law and elder care issues. The guests on the show discuss issues pertaining to aging and the show allows viewers to really get to know the important programs, service providers and people in the elder services community.

Screen Shot 2016-03-01 at 2.58.41 PM[insert_php]

//Configure
$server = “71.248.188.158/”;
date_default_timezone_set(‘America/New_York’);
// End Configure

$client = new SoapClient(“http://” . $server . “/CablecastWS/CablecastWS.asmx?WSDL”); // Creates New SOAP client using WSDL file

$searchDate = date(“Y-m-d”).”T12:00:00″;

// Search for all shows that have an event date less than now that are available for VOD
$result = $client->AdvancedShowSearch(array(
‘ChannelID’ => 1, // This sets the script to search only the pub channel
‘searchString’ => ‘Bergeron Briefs’, // This is Where you change what content you want!
‘eventDate’ => date(“Y-m-d”) . “T00:00:00”,
‘dateComparator’ => ‘<‘, ‘restrictToCategoryID’ => 0,
‘restrictToProducerID’ => 0,
‘restrictToProjectID’ => 0,
‘displayStreamingShowsOnly’ => 1,
‘searchOtherSites’ => 0,));

if(!isset($result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo)) {
$vods = array();
} else {
$vods = is_array($result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo) ?
$result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo :
array($result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo);
}

if(count($vods) == ‘0’) {
//There is probably something wrong if this shows up.
echo “There are no Shows currently available for on demand viewing.”;
} else {
// Prints out a table with time and show title with link to show detial page
echo ”

\n”; echo “Show TitleLink\n”;foreach($vods as $vod) {
echo ”
\n”; echo “\n”;
echo “Watch Now“;
echo “\n”;
}echo ”

” . $vod->Title . “

“;
}

[/insert_php]

     To search for other shows visit our search page.

One Response to "Bergeron Briefs"

  1. Pingback: Bergeron Briefs Hosts BayPath Elder Services |

Leave a Reply

Your email address will not be published.