133 lines
5.1 KiB
PHP
133 lines
5.1 KiB
PHP
<?php
|
|
|
|
//includes
|
|
require_once "root.php";
|
|
require_once "resources/require.php";
|
|
|
|
//check permissions
|
|
require_once "resources/check_auth.php";
|
|
if (permission_exists('conference_profile_param_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
|
|
$order_by = $_GET["order_by"];
|
|
$order = $_GET["order"];
|
|
|
|
//additional includes
|
|
require_once "resources/header.php";
|
|
require_once "resources/paging.php";
|
|
|
|
//prepare to page the results
|
|
$sql = "select count(*) from v_conference_profile_params ";
|
|
$sql .= "where conference_profile_uuid = :conference_profile_uuid ";
|
|
$parameters['conference_profile_uuid'] = $conference_profile_uuid;
|
|
$database = new database;
|
|
$num_rows = $database->select($sql, $parameters, 'column');
|
|
unset($sql);
|
|
|
|
//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_profile_params ";
|
|
$sql .= "where conference_profile_uuid = :conference_profile_uuid ";
|
|
$sql .= order_by($order_by, $order);
|
|
$sql .= limit_offset($rows_per_page, $offset);
|
|
$database = new database;
|
|
$result = $database->select($sql, $parameters, 'all');
|
|
unset($sql, $parameters);
|
|
|
|
//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 align='left' colspan='2'>\n";
|
|
echo " ".$text['title_description-conference_profile_param']."<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('profile_param_name', $text['label-profile_param_name'], $order_by, $order);
|
|
echo th_order_by('profile_param_value', $text['label-profile_param_value'], $order_by, $order);
|
|
echo th_order_by('profile_param_enabled', $text['label-profile_param_enabled'], $order_by, $order);
|
|
echo th_order_by('profile_param_description', $text['label-profile_param_description'], $order_by, $order);
|
|
echo "<td class='list_control_icons'>";
|
|
if (permission_exists('conference_profile_param_add')) {
|
|
echo "<a href='conference_profile_param_edit.php?conference_profile_uuid=".escape($_GET['id'])."' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
|
}
|
|
else {
|
|
echo " \n";
|
|
}
|
|
echo "</td>\n";
|
|
echo "<tr>\n";
|
|
|
|
if (is_array($result) && sizeof($result) != 0) {
|
|
foreach($result as $row) {
|
|
if (permission_exists('conference_profile_param_edit')) {
|
|
$tr_link = "href='conference_profile_param_edit.php?conference_profile_uuid=".$row['conference_profile_uuid']."&id=".$row['conference_profile_param_uuid']."'";
|
|
}
|
|
echo "<tr ".$tr_link.">\n";
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['profile_param_name'])." </td>\n";
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['profile_param_value'])." </td>\n";
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['profile_param_enabled'])." </td>\n";
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['profile_param_description'])." </td>\n";
|
|
echo " <td class='list_control_icons'>";
|
|
if (permission_exists('conference_profile_param_edit')) {
|
|
echo "<a href='conference_profile_param_edit.php?conference_profile_uuid=".escape($row['conference_profile_uuid'])."&id=".escape($row['conference_profile_param_uuid'])."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
|
}
|
|
if (permission_exists('conference_profile_param_delete')) {
|
|
echo "<a href='conference_profile_param_delete.php?conference_profile_uuid=".escape($row['conference_profile_uuid'])."&id=".escape($row['conference_profile_param_uuid'])."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
|
}
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
} //end foreach
|
|
unset($result);
|
|
} //end if results
|
|
|
|
echo "<tr>\n";
|
|
echo "<td colspan='5' 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_profile_param_add')) {
|
|
echo "<a href='conference_profile_param_edit.php?conference_profile_uuid=".escape($_GET['id'])."' 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";
|
|
|
|
?>
|