/**
  * Intially sets up the page
  */
 public function setupPage($login = false)
 {
     //Allow Plugins.
     Observable::Observable();
     $this->login = $login;
     //Initial value for each variable
     $this->titlePage = $this->openFile("data/config/site_title.dat");
     $this->titleName = "Impropery Loaded Page";
     $this->leftTitle = "Left Column";
     $this->leftContent = "";
     $this->content = "";
     $this->thePage = "";
     $this->columns = 2;
     $this->tempOverride = null;
     if (empty($this->meta)) {
         //Setup Meta Class
         $this->meta = new Meta();
     }
     $this->error_type = null;
     $this->redirect = null;
     //Setup the location of this file
     $this->base = "";
     //Get left title
     $this->setLeftTitle("");
     //Get left content
     $this->setLeftContent("");
     //Check if any error messages are to be displayed
     $this->checkError();
 }
 /**
  * Starts the controller of the classes system
  */
 public function DashModel()
 {
     Observable::Observable();
 }
 public function UsersModel()
 {
     Observable::Observable();
 }
 public function TemplateModel()
 {
     Observable::Observable();
 }
 public function EditorModel()
 {
     Observable::Observable();
 }
Ejemplo n.º 6
0
 function Base()
 {
     Observable::Observable();
 }
 public function ModuleUpdateModel()
 {
     Observable::Observable();
 }
 public function ModulesInstallModel()
 {
     Observable::Observable();
 }
 public function SEOModel()
 {
     Observable::Observable();
 }
 public function PageListModel()
 {
     Observable::Observable();
 }
 public function ModulesModel()
 {
     Observable::Observable();
 }
 /**
  * Starts the controller of the classes system
  */
 public function GeneralSettingsModel()
 {
     //Allow Plugins.
     Observable::Observable();
 }
 /**
  * Sets up the basic variables
  */
 protected function varSetup()
 {
     Observable::Observable();
     //Setup ID
     $this->setID($this->getModel()->getInputString("id", -1, "G"));
     //Set Page request
     $this->setPageRequest($this->getModel()->getInputString("page", "", "G"));
 }
 public function SettingsModel()
 {
     Observable::Observable();
 }