예제 #1
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     parent::__construct();
     $this->checkPermission = array('system' => 'options', 'modules' => 'configure');
     $this->modulelist = new \fpcm\model\modules\modulelist();
     $this->view = new \fpcm\model\view\ajax('list_inner', 'modules');
 }
예제 #2
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     parent::__construct();
     $this->checkPermission = array('article' => array('editall', 'edit'), 'comment' => array('editall', 'edit'));
     $this->view = new \fpcm\model\view\ajax('commentlist_inner', 'comments');
     $this->view->initAssigns();
     $this->list = new \fpcm\model\comments\commentList();
     $this->articleList = new \fpcm\model\articles\articlelist();
 }
예제 #3
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     parent::__construct();
     $this->articleList = new \fpcm\model\articles\articlelist();
     $this->categoryList = new \fpcm\model\categories\categoryList();
     $this->commentList = new \fpcm\model\comments\commentList();
     $this->userList = new \fpcm\model\users\userList();
     $this->view = new \fpcm\model\view\ajax('articles', 'articles/lists');
     $this->view->initAssigns();
 }
예제 #4
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     parent::__construct();
     $this->checkPermission = array('system' => 'options', 'modules' => 'configure', 'modules' => 'install');
     $this->canConnect = \fpcm\classes\baseconfig::canConnect();
 }
예제 #5
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     $this->checkPermission = array('system' => 'options');
     parent::__construct();
 }
예제 #6
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     parent::__construct();
     $this->checkPermission = array('article' => 'add', 'article' => 'edit', 'uploads' => 'add', 'uploads' => 'add');
     $this->view = new \fpcm\model\view\ajax('listinner', 'filemanager');
 }
예제 #7
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     parent::__construct();
 }
예제 #8
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     parent::__construct();
     $this->view = new \fpcm\model\view\ajax('list', 'dashboard');
 }