2017-06-13 07:09:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
//includes
|
|
|
|
|
require_once "root.php";
|
|
|
|
|
require_once "resources/require.php";
|
|
|
|
|
|
|
|
|
|
//check permissions
|
|
|
|
|
require_once "resources/check_auth.php";
|
|
|
|
|
if (permission_exists('conference_control_view')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add multi-lingual support
|
|
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
|
|
|
|
|
|
|
|
|
//get variables used to control the order
|
2019-07-07 00:37:13 +02:00
|
|
|
$order_by = $_GET["order_by"];
|
|
|
|
|
$order = $_GET["order"];
|
2019-06-03 18:54:38 +02:00
|
|
|
|
2017-06-13 07:09:36 +02:00
|
|
|
//add the search term
|
2019-07-07 00:37:13 +02:00
|
|
|
$search = strtolower($_GET["search"]);
|
2017-06-13 07:09:36 +02:00
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql_search = "where (";
|
2019-06-03 18:54:38 +02:00
|
|
|
$sql_search .= "lower(control_name) like :search ";
|
|
|
|
|
$sql_search .= "or lower(control_description) like :search ";
|
2017-06-13 07:09:36 +02:00
|
|
|
$sql_search .= ") ";
|
2019-07-07 00:37:13 +02:00
|
|
|
$parameters['search'] = '%'.$search.'%';
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//additional includes
|
|
|
|
|
require_once "resources/header.php";
|
|
|
|
|
require_once "resources/paging.php";
|
|
|
|
|
|
|
|
|
|
//prepare to page the results
|
2019-07-07 00:37:13 +02:00
|
|
|
$sql = "select count(conference_control_uuid) ";
|
|
|
|
|
$sql .= "from v_conference_controls ";
|
2017-06-13 07:09:36 +02:00
|
|
|
$sql .= $sql_search;
|
2019-06-03 18:54:38 +02:00
|
|
|
$database = new database;
|
2019-07-07 00:37:13 +02:00
|
|
|
$num_rows = $database->select($sql, $parameters, 'column');
|
|
|
|
|
unset($sql);
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//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_controls ";
|
2019-06-03 18:54:38 +02:00
|
|
|
//$sql .= "where domain_uuid = :domain_uuid ";
|
2017-06-13 07:09:36 +02:00
|
|
|
$sql .= $sql_search;
|
2019-07-07 00:37:13 +02:00
|
|
|
$sql .= order_by($order_by, $order);
|
|
|
|
|
$sql .= limit_offset($rows_per_page, $offset);
|
2019-06-03 18:54:38 +02:00
|
|
|
//$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
|
|
|
|
|
$database = new database;
|
|
|
|
|
$result = $database->select($sql, $parameters, 'all');
|
2019-07-07 00:37:13 +02:00
|
|
|
unset($sql, $parameters);
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//alternate the row style
|
|
|
|
|
$c = 0;
|
|
|
|
|
$row_style["0"] = "row_style0";
|
|
|
|
|
$row_style["1"] = "row_style1";
|
|
|
|
|
|
|
|
|
|
//show the content
|
|
|
|
|
echo "<table width='100%' border='0'>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td width='50%' align='left' nowrap='nowrap'><b>".$text['title-conference_controls']."</b></td>\n";
|
|
|
|
|
echo " <form method='get' action=''>\n";
|
|
|
|
|
echo " <td width='50%' style='vertical-align: top; text-align: right; white-space: nowrap;'>\n";
|
2018-06-06 02:13:28 +02:00
|
|
|
echo " <input type='text' class='txt' style='width: 150px' name='search' id='search' value='".escape($search)."'>\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
echo " <input type='submit' class='btn' name='submit' value='".$text['button-search']."'>\n";
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </form>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td align='left' colspan='2'>\n";
|
|
|
|
|
echo " ".$text['title_description-conference_control']."<br /><br />\n";
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo "</table>\n";
|
|
|
|
|
|
|
|
|
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo th_order_by('control_name', $text['label-control_name'], $order_by, $order);
|
|
|
|
|
echo th_order_by('control_enabled', $text['label-control_enabled'], $order_by, $order);
|
|
|
|
|
echo th_order_by('control_description', $text['label-control_description'], $order_by, $order);
|
|
|
|
|
echo "<td class='list_control_icons'>";
|
|
|
|
|
if (permission_exists('conference_control_add')) {
|
|
|
|
|
echo "<a href='conference_control_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " \n";
|
|
|
|
|
}
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
|
2019-07-07 00:37:13 +02:00
|
|
|
if (is_array($result) && sizeof($result) != 0) {
|
2017-06-13 07:09:36 +02:00
|
|
|
foreach($result as $row) {
|
|
|
|
|
if (permission_exists('conference_control_edit')) {
|
|
|
|
|
$tr_link = "href='conference_control_edit.php?id=".$row['conference_control_uuid']."'";
|
|
|
|
|
}
|
|
|
|
|
echo "<tr ".$tr_link.">\n";
|
2018-06-06 02:13:28 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['control_name'])." </td>\n";
|
|
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['control_enabled'])." </td>\n";
|
|
|
|
|
echo " <td valign='top' class='row_stylebg'>".escape($row['control_description'])." </td>\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
echo " <td class='list_control_icons'>";
|
|
|
|
|
if (permission_exists('conference_control_edit')) {
|
2018-06-06 02:13:28 +02:00
|
|
|
echo "<a href='conference_control_edit.php?id=".escape($row['conference_control_uuid'])."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
if (permission_exists('conference_control_delete')) {
|
2018-06-06 02:13:28 +02:00
|
|
|
echo "<a href='conference_control_delete.php?id=".escape($row['conference_control_uuid'])."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
} //end foreach
|
2019-07-07 00:37:13 +02:00
|
|
|
unset($result);
|
2017-06-13 07:09:36 +02:00
|
|
|
} //end if results
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td colspan='4' align='left'>\n";
|
|
|
|
|
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td width='33.3%' nowrap='nowrap'> </td>\n";
|
|
|
|
|
echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
|
|
|
|
|
echo " <td class='list_control_icons'>";
|
|
|
|
|
if (permission_exists('conference_control_add')) {
|
|
|
|
|
echo "<a href='conference_control_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " ";
|
|
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo " </table>\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "</table>";
|
|
|
|
|
echo "<br /><br />";
|
|
|
|
|
|
|
|
|
|
//include the footer
|
|
|
|
|
require_once "resources/footer.php";
|
|
|
|
|
|
|
|
|
|
?>
|