Example #1
0
 function __construct()
 {
     parent::getModel("intranetProduct");
     $tabl = array();
     $this->tabl['article01'] = $this->modelInstance->getAllArticlesOrderedByName();
     parent::getView("intranetProduct", $this->tabl);
 }
Example #2
0
 function __construct()
 {
     parent::getModel("intranetHome");
     $tabl = array();
     $this->tabl['article01'] = $this->modelInstance->getMissingArticles();
     parent::getView("intranetHome", $this->tabl);
 }
Example #3
0
 function __construct()
 {
     parent::getModel("intranetAddNew");
     $tabl = array();
     $this->tabl['id'] = $this->modelInstance->newArticle();
     parent::getView("intranetAddNew", $this->tabl);
 }
Example #4
0
 function __construct()
 {
     parent::getModel("intranetAddModify");
     $tabl = array();
     $this->id = $_GET['id'];
     $this->tabl['id'] = $this->modelInstance->getArticleById($this->id);
     parent::getView("intranetAddModify", $this->tabl);
 }
Example #5
0
 function __construct()
 {
     parent::getModel("shopHome");
     $tabl = array();
     $this->tabl['article01'] = $this->modelInstance->getArticle();
     $this->tabl['img'] = $this->tabl['article01'][0]['IMAGE'];
     parent::getView("shopHome", $this->tabl);
 }
Example #6
0
 function __construct()
 {
     parent::getModel("intranetAdd");
     $tabl = array();
     parent::getView("intranetAdd", $tabl);
 }
Example #7
0
 function __construct()
 {
     parent::getModel("Default");
     $this->d = @$_POST['user'] ? $_POST['user'] : "";
     parent::getView("Default", $this->d);
 }