Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
<?= $lang->string('Administration') ?> page_start(sprintf($lang->string('%1$s Panel'), $lang->string('Administration'))); $print->table_start(); $print->table_head(sprintf($lang->string('%1$s Panel'), $lang->string('Administration')), 2); $print->row_span($lang->string('Welcome to the ProCal Administration Panel. Here you can setup all of the various options that ProCal has to offer. If you have any problems using this panel, consult the online manual.'), 'alt1'); $print->table_end(); $print->form_end(); $print->page_end(); } if ($_REQUEST['do'] == 'nav') { define('ISSO_PRINTER_HIDE_SETUP', true); $navigation = array( $lang->string('Kalens Settings') => array( '» ' . $lang->string('New Setting Group') => 'options.php?do=newgroup', // debug $lang->string('XML Import/Export') => 'options.php?do=io', // ... and here are all of the option groups ), $lang->string('Language Manager') => array( ), $lang->string('Template Manager') => array( $lang->string('Manage Styles') => 'styles.php', '» ' . $lang->string('MASETR STYLE') => 'templates.php?do=modify&styleid=-1', // debug // ... a list of all the styles ), $lang->string('User Manager') => array( $lang->string('Add User') => 'users.php?do=add', $lang->string('Search') => 'users.php?do=search', $lang->string('Show All Users') => 'users.php?do=results&id=-1' ) ); // extra setting groups $get_settings = $db->query("SELECT * FROM " . TABLE_PREFIX . "settinggroup ORDER BY displayorder ASC"); while ($setting = $db->fetch_array($get_settings)) { if ($setting['shortname'] == 'untouchable' AND !DEVDEBUG) { continue; } $navigation[ $lang->string('Kalens Settings') ]["$setting[groupname]"] = "options.php?do=settings&group=$setting[shortname]"; } // get styles $get_styles = $db->query("SELECT * FROM " . TABLE_PREFIX . "style ORDER BY stylename"); while ($style = $db->fetch_array($get_styles)) { $navigation[ $lang->string('Template Manager') ][ '» ' . $style['stylename'] ] = "templates.php?do=modify&styleid=$style[styleid]"; } // ------------------------------------------------------------------- $print->page_start($lang->string('Navigation'), 'nav_body'); $print->page_code("\n
\n"); $print->page_code("
\n
\n\n\n
\n\t" . $lang->string('Index') . " | " . $lang->string('Logout') . "\n
\n\n
\n"); foreach ($navigation AS $group => $links) { echo "\n" . "
$group
"; echo "\n" . "
"; foreach ($links AS $name => $location) { echo "\n\t" . "
$name
"; } echo "\n
"; } $print->page_end(); } /*=====================================================================*\ || ################################################################### || # $HeadURL$ || # $Id$ || ################################################################### \*=====================================================================*/ ?>