Exemple #1
0
 function ExtractPageInfo()
 {
     $page_info = SJB_System::getModuleAndFunctionBySystemURL($this->uri);
     if (!empty($page_info) && SJB_System::isFunctionAccessible($page_info['module'], $page_info['function'])) {
         $this->module = $page_info['module'];
         $this->function = $page_info['function'];
         $this->parameters = array();
         $this->template = SJB_Settings::getSettingByName('DEFAULT_PAGE_TEMPLATE');
         $this->page_exists = true;
     }
     $this->has_raw_output = SJB_System::doesFunctionHaveRawOutput($this->module, $this->function);
 }