Example #1
0
}
$strTotalUserContacts = $arrUserContactCount[0]['TotalUserContacts'];
try {
    $arrHostMeetingCount = getMeetingCountByID($strSetClient_ID, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getMeetingCountByID Failed : " . $e->getMessage(), 1125);
}
$strTotalMeeting = $arrHostMeetingCount[0]['TotalMeeting'];
try {
    $arrMeetingDuration = getMeetingDurationByID($strSetClient_ID, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getMeetingDurationByID Failed : " . $e->getMessage(), 1125);
}
$strTotalDuration = $arrMeetingDuration[0]['TotalMinutes'];
try {
    $arrMeetingOverview = getMeetingOverviewByID($strSetClient_ID, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getMeetingOverviewByID Failed : " . $e->getMessage(), 1125);
}
//print_r($arrMeetingOverview);
try {
    $arrSubscriptionInfo = getClientSubscriptionInfo($strSetPartner_ID, $strSetClient_ID, $objDataHelper);
} catch (Exception $a) {
    throw new Exception("index.php : getClientSubscriptionInfo : Error in populating List." . $a->getMessage(), 541);
}
try {
    $arrProfileCompletePercent = getProfileCompletePercent($strSetClient_ID, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getProfileCompletePercent Failed : " . $e->getMessage(), 1125);
}
$strProfileCompletePercent = $arrProfileCompletePercent[0]['ProfilePercentage'];
Example #2
0
}
$strTotalDistinctInviteeCount = $arrDistinctInviteeCount[0]['DistinctInvitee'];
try {
    $arrProfileCompletePercent = getProfileCompletePercentByID($strCK_user_id, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getProfileCompletePercentByID Failed : " . $e->getMessage(), 1125);
}
$strTotalProfileCompletePercent = $arrProfileCompletePercent[0]['ProfilePercentage'];
$noOfInvitees = 9;
try {
    $arrFrequentInvitees = getFrequentInvitees($strCK_user_id, $noOfInvitees, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getFrequentInvitees Failed : " . $e->getMessage(), 1125);
}
try {
    $arrMeetingOverview = getMeetingOverviewByID($strCk_user_email_address, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getTotalHostMeetingCountByID Failed : " . $e->getMessage(), 1125);
}
try {
    $arrMinuteBaseMeetingGraph = getMinuteBaseMeetingGraphByID($strCK_user_id, $objDataHelper);
} catch (Exception $e) {
    throw new Exception("index.php : getMinuteBaseMeetingGraphByID Failed : " . $e->getMessage(), 1125);
}
for ($i = 0; $i < sizeof($arrMinuteBaseMeetingGraph); $i++) {
    $arrDateArr .= "'" . $arrMinuteBaseMeetingGraph[$i]['DateOfMeeting'] . "',";
}
$arrDateArr = substr($arrDateArr, 0, -1);
for ($i = 0; $i < sizeof($arrMinuteBaseMeetingGraph); $i++) {
    $arrMinuteArr .= $arrMinuteBaseMeetingGraph[$i]['TotalMinute'] . ",";
}