Portions created by the Initial Developer are Copyright (C) 2008-2015 the Initial Developer. All Rights Reserved. Contributor(s): Matthew Vale */ require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; if (permission_exists('tenant_settings_view')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //header and paging require_once "resources/header.php"; $document['title'] = $text['title-tenant_settings']; require_once "resources/paging.php"; //get variables used to control the order $order_by = $_GET["order_by"]; $order = $_GET["order"]; //copy settings javascript if (permission_exists("tenant_settings_admin") && count($_SESSION['domains']) > 1) { echo ""; } //show the content echo "
"; echo ""; echo "\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
"; echo " ".$text['header-default_settings'].""; echo "

"; echo " ".$text['description-default_settings']; echo "
"; echo " \n"; if (permission_exists("domain_select") && permission_exists("domain_setting_add") && count($_SESSION['domains']) > 1) { echo " "; echo " "; echo " \n"; echo " "; } echo " "; echo "
\n"; echo "
"; //include the footer require_once "resources/footer.php"; ?>