Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('content', 'store');
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->addGet('url', 'showByURL');
 }
Example #3
0
 public function __construct($tplPath, HttpRequest $request)
 {
     parent::__construct();
     $this->view = new View($tplPath);
     $this->view->set('request', $request);
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('group,permissions', 'update');
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('testId', 'test');
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     $this->addGet('document,index,fieldname,displayLimit', 'showByCount');
 }
Example #7
0
 public function __construct()
 {
     $this->setupAclActionsRequiredForAction(array(\CMSAuth::AuditorRoleName));
     parent::__construct();
 }