function run() { global $session; if (isset($session->data["AUTHORIZED"])) { $this->authorized = 1; } if ($this->print) { $out['PRINT'] = 1; } $out["TODAY"] = date('l, F d, Y'); $out["AUTHORIZED"] = $this->authorized; if ($this->authorized) { include_once DIR_MODULES . "control_access/control_access.class.php"; $acc = new control_access(); if (!$acc->checkAccess($this->action, 1)) { $this->redirect("?"); } if ($_SERVER['REQUEST_METHOD'] == 'POST') { clearCache(0); } $modules = SQLSelect("SELECT * FROM project_modules WHERE `HIDDEN`='0' ORDER BY CATEGORY, `PRIORITY`, `TITLE`"); $old_cat = 'some_never_should_be_category_name'; for ($i = 0; $i < count($modules); $i++) { if ($modules[$i]['NAME'] == $this->action) { $modules[$i]['SELECTED'] = 1; } if ($modules[$i]['CATEGORY'] != $old_cat) { $modules[$i]['NEW_CATEGORY'] = 1; $old_cat = $modules[$i]['CATEGORY']; if ($i > 0) { //echo $last_allow."<br>"; $modules[$last_allow]['LAST_IN_CATEGORY'] = 1; } } if (!$acc->checkAccess($modules[$i]['NAME'])) { $modules[$i]['DENIED'] = 1; } else { $last_allow = $i; } if (file_exists(ROOT . 'img/admin/icons/ico_' . $modules[$i]['NAME'] . '_sm.gif')) { $modules[$i]['ICON_SM'] = ROOTHTML . 'img/admin/icons/ico_' . $modules[$i]['NAME'] . '_sm.gif'; } else { $modules[$i]['ICON_SM'] = ROOTHTML . 'img/admin/icons/ico_default_sm.gif'; } } $modules[$last_allow]['LAST_IN_CATEGORY'] = 1; $out["SUB_MODULES"] = $modules; } $out["ACTION"] = $this->action; $this->data = $out; $p = new parser(DIR_TEMPLATES . $this->name . ".html", $this->data, &$this); return $p->result; }
function run() { global $session; Define('ALTERNATIVE_TEMPLATES', 'templates_alt'); global $action; if (!$this->action && $action) { $this->action = $action; } if (!$session->data['SITE_USERNAME']) { $users = SQLSelect("SELECT * FROM users ORDER BY NAME"); $total = count($users); if ($total == 1) { $session->data['SITE_USERNAME'] = $users[0]['USERNAME']; $session->data['SITE_USER_ID'] = $users[0]['ID']; } else { for ($i = 0; $i < $total; $i++) { if ($users[$i]['HOST'] && $users[$i]['HOST'] == $_SERVER['REMOTE_ADDR']) { $session->data['SITE_USERNAME'] = $users[$i]['USERNAME']; $session->data['SITE_USER_ID'] = $users[$i]['ID']; } } } } if (!$session->data["AUTHORIZED"] && $session->data['SITE_USERNAME']) { $user = SQLSelectOne("SELECT * FROM users WHERE USERNAME LIKE '" . DBSafe($session->data['SITE_USERNAME']) . "'"); if ($user['IS_ADMIN']) { $user = SQLSelectOne("SELECT * FROM admin_users WHERE LOGIN='******'"); $session->data['USER_NAME'] = $user['LOGIN']; $session->data['USER_LEVEL'] = $user['PRIVATE']; $session->data['USER_ID'] = $user['ID']; $session->data["AUTHORIZED"] = 1; } } if (isset($session->data["AUTHORIZED"])) { $this->authorized = 1; } global $ajax_panel; if ($ajax_panel) { include_once DIR_MODULES . 'inc_panel_ajax.php'; } if ($this->print || $_GET['print']) { $this->print = 1; $out['PRINT'] = 1; } $out["TODAY"] = date('l, F d, Y'); $out["AUTHORIZED"] = $this->authorized; if ($this->authorized) { include_once DIR_MODULES . "control_access/control_access.class.php"; $acc = new control_access(); if (!$acc->checkAccess($this->action, 1)) { $this->redirect("?"); } if ($_SERVER['REQUEST_METHOD'] == 'POST') { clearCache(0); } $modules = SQLSelect("SELECT * FROM project_modules WHERE `HIDDEN`='0' ORDER BY FIELD(CATEGORY, '<#LANG_SECTION_OBJECTS#>', '<#LANG_SECTION_DEVICES#>', '<#LANG_SECTION_APPLICATIONS#>', '<#LANG_SECTION_SETTINGS#>', '<#LANG_SECTION_SYSTEM#>'), `PRIORITY`, `TITLE`"); $old_cat = 'some_never_should_be_category_name'; for ($i = 0; $i < count($modules); $i++) { if ($modules[$i]['NAME'] == $this->action) { $modules[$i]['SELECTED'] = 1; } if ($modules[$i]['CATEGORY'] != $old_cat) { $modules[$i]['NEW_CATEGORY'] = 1; $old_cat = $modules[$i]['CATEGORY']; if ($i > 0) { //echo $last_allow."<br>"; $modules[$last_allow]['LAST_IN_CATEGORY'] = 1; } } if (!$acc->checkAccess($modules[$i]['NAME'])) { $modules[$i]['DENIED'] = 1; } else { $last_allow = $i; } if (file_exists(ROOT . 'img/admin/icons/ico_' . $modules[$i]['NAME'] . '_sm.gif')) { $modules[$i]['ICON_SM'] = ROOTHTML . 'img/admin/icons/ico_' . $modules[$i]['NAME'] . '_sm.gif'; } else { $modules[$i]['ICON_SM'] = ROOTHTML . 'img/admin/icons/ico_default_sm.gif'; } } $modules[$last_allow]['LAST_IN_CATEGORY'] = 1; $out["SUB_MODULES"] = $modules; } $out["ACTION"] = $this->action; $this->data = $out; $p = new parser(DIR_TEMPLATES . $this->name . ".html", $this->data, $this); return $p->result; }