Copyright (C) 2008-2012 All Rights Reserved. Contributor(s): Mark J Crane */ //includes require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; //check permissions if (permission_exists('conference_session_view')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //additional includes require_once "resources/header.php"; require_once "resources/paging.php"; //set variables from the http values $meeting_uuid = check_str($_GET["id"]); $order_by = check_str($_GET["order_by"]); $order = check_str($_GET["order"]); //add meeting_uuid to a session variable if (strlen($meeting_uuid) > 0) { $_SESSION['meeting']['uuid'] = $meeting_uuid; } //show the content echo "\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
".$text['title-conference_sessions']."
\n"; echo " ".$text['description-conference_sessions']."

\n"; echo "
\n"; //prepare to page the results $sql = "select count(*) as num_rows from v_conference_sessions "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and meeting_uuid = '".$_SESSION['meeting']['uuid']."' "; $prep_statement = $db->prepare($sql); if ($prep_statement) { $prep_statement->execute(); $row = $prep_statement->fetch(PDO::FETCH_ASSOC); if ($row['num_rows'] > 0) { $num_rows = $row['num_rows']; } else { $num_rows = '0'; } } //prepare to page the results $rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50; $param = ""; $page = $_GET['page']; if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; } list($paging_controls, $rows_per_page, $var3) = paging($num_rows, $param, $rows_per_page); $offset = $rows_per_page * $page; //get the list $sql = "select * from v_conference_sessions "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and meeting_uuid = '".$_SESSION['meeting']['uuid']."' "; if (strlen($order_by) == 0) { $sql .= "order by start_epoch desc "; } else { $sql .= "order by $order_by $order "; } $sql .= "limit $rows_per_page offset $offset "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $conference_sessions = $prep_statement->fetchAll(); unset ($prep_statement, $sql); $c = 0; $row_style["0"] = "row_style0"; $row_style["1"] = "row_style1"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo th_order_by('start_epoch', $text['label-start'], $order_by, $order); echo th_order_by('end_epoch', $text['label-end'], $order_by, $order); echo th_order_by('profile', $text['label-profile'], $order_by, $order); //echo th_order_by('recording', $text['label-recording'], $order_by, $order); echo "\n"; echo "\n"; echo "\n"; if (is_array($conference_sessions)) { foreach($conference_sessions as $row) { $tmp_year = date("Y", $row['start_epoch']); $tmp_month = date("M", $row['start_epoch']); $tmp_day = date("d", $row['start_epoch']); if (defined('TIME_24HR') && TIME_24HR == 1) { $start_date = date("j M Y H:i:s", $row['start_epoch']); $end_date = date("j M Y H:i:s", $row['end_epoch']); } else { $start_date = date("j M Y h:i:sa", $row['start_epoch']); $end_date = date("j M Y h:i:sa", $row['end_epoch']); } $time_difference = ''; if (strlen($row['end_epoch']) > 0) { $time_difference = $row['end_epoch'] - $row['start_epoch']; $time_difference = gmdate("G:i:s", $time_difference); } if (strlen( $row['start_epoch']) > 0) { $tr_link = "href='conference_session_details.php?uuid=".escape($row['conference_session_uuid'])."'"; echo "\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; $tmp_dir = $_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'].'/archive/'.$tmp_year.'/'.$tmp_month.'/'.$tmp_day; $tmp_name = ''; if (file_exists($tmp_dir.'/'.$row['conference_session_uuid'].'.mp3')) { $tmp_name = $row['conference_session_uuid'].".mp3"; } elseif (file_exists($tmp_dir.'/'.$row['conference_session_uuid'].'.wav')) { $tmp_name = $row['conference_session_uuid'].".wav"; } echo " \n"; echo " \n"; echo "\n"; } if ($c==0) { $c=1; } else { $c=0; } } //end foreach unset($sql, $result, $row_count); } //end if results echo "\n"; echo "\n"; echo "\n"; echo "
".$text['label-time']."".$text['label-tools']." 
".$time_difference." ".$start_date." ".$end_date." ".escape($row['profile'])." \n"; if (strlen($tmp_name) > 0 && file_exists($tmp_dir.'/'.$tmp_name)) { echo "\n"; echo "\n"; if (permission_exists('conference_session_play')) { echo "\n"; } echo "\n"; echo "\n"; echo "\n"; echo "
\n"; echo " \n"; //echo " \n"; //echo " ".$text['label-play']."\n"; //echo " \n"; //echo "  \n"; echo "\n"; echo "  \n"; echo "\n"; echo " "; //echo " ".$text['label-download']."\n"; echo " "; echo " \n"; echo "
\n"; //echo "  \n"; } else { echo " "; } echo "
\n"; echo " \n"; //echo " "; echo " $v_link_label_view\n"; echo " \n"; echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
 $paging_controls\n"; echo "  \n"; echo "
\n"; echo "
"; echo "

"; //include the footer require_once "resources/footer.php"; ?>