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('device_profile_view')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //get the http values and set them as variables $search = $_GET["search"]; $order_by = $_GET["order_by"]; $order = $_GET["order"]; //additional includes require_once "resources/header.php"; $document['title'] = $text['title-profiles']; require_once "resources/paging.php"; //common sql $sql_where = "where (domain_uuid = :domain_uuid or domain_uuid is null) "; if ($search != '') { $sql_where .= "and ("; $sql_where .= " device_profile_name like :search "; $sql_where .= " or device_profile_description like :search "; $sql_where .= ") "; $parameters['search'] = '%'.$search.'%'; } $parameters['domain_uuid'] = $domain_uuid; //prepare to page the results $sql = "select count(*) from v_device_profiles "; $sql .= $sql_where; $database = new database; $num_rows = $database->select($sql, $parameters, 'column'); //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 device profiles $sql = str_replace('count(*)', '*', $sql); $sql .= order_by($order_by, $order, 'device_profile_name'); $sql .= limit_offset($rows_per_page, $offset); $database = new database; $device_profiles = $database->select($sql, $parameters, 'all'); unset($sql, $parameters); //set row styles $c = 0; $row_style["0"] = "row_style0"; $row_style["1"] = "row_style1"; //show the content echo "\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
"; echo " ".$text['header-profiles'].""; echo "

"; echo " ".$text['description-profiles']; echo "
\n"; echo "
\n"; echo "     "; echo " "; echo " "; echo "
\n"; echo "
\n"; echo "
"; echo "\n"; echo "\n"; echo th_order_by('name', $text['label-profile_name'], $order_by, $order); echo th_order_by('enabled', $text['label-profile_enabled'], $order_by, $order); echo th_order_by('description', $text['label-profile_description'], $order_by, $order); echo "\n"; echo "\n"; if (is_array($device_profiles) && @sizeof($device_profiles) != 0) { foreach($device_profiles as $row) { $tr_link = (permission_exists('device_profile_edit')) ? "href='device_profile_edit.php?id=".escape($row['device_profile_uuid'])."'" : null; echo "\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "\n"; $c = ($c == 0) ? 1 : 0; } } unset($device_profiles); echo "\n"; echo "\n"; echo "\n"; echo "
\n"; if (permission_exists('device_profile_add')) { echo " ".$v_link_label_add."\n"; } echo "
"; echo (permission_exists('device_profile_edit')) ? "".escape($row['device_profile_name'])."" : escape($row['device_profile_name']); echo !is_uuid($row['domain_uuid']) ? "    ".$text['select-global']."" : null; echo " ".$text['label-'.escape($row['device_profile_enabled'])]." ".escape($row['device_profile_description'])." "; if (permission_exists('device_profile_edit')) { echo "".$v_link_label_edit.""; } if (permission_exists('device_profile_delete')) { echo "".$v_link_label_delete.""; } echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
 ".$paging_controls.""; if (permission_exists('device_profile_add')) { echo " ".$v_link_label_add.""; } echo "
\n"; echo "
"; echo "

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