예제 #1
0
파일: Htmlarea.php 프로젝트: gudwin/extasy
 public function __construct()
 {
     parent::__construct();
     $this->addPost('content', 'store');
 }
예제 #2
0
파일: ZoomPage.php 프로젝트: gudwin/extasy
 public function __construct()
 {
     parent::__construct();
     $this->addGet('url', 'showByURL');
 }
예제 #3
0
 public function __construct($tplPath, HttpRequest $request)
 {
     parent::__construct();
     $this->view = new View($tplPath);
     $this->view->set('request', $request);
 }
예제 #4
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('group,permissions', 'update');
 }
예제 #5
0
파일: launcher.php 프로젝트: gudwin/extasy
 public function __construct()
 {
     parent::__construct();
     $this->addPost('testId', 'test');
 }
예제 #6
0
파일: Tags.php 프로젝트: gudwin/extasy
 public function __construct()
 {
     parent::__construct();
     $this->addGet('document,index,fieldname,displayLimit', 'showByCount');
 }
예제 #7
0
파일: Audit.php 프로젝트: gudwin/extasy
 public function __construct()
 {
     $this->setupAclActionsRequiredForAction(array(\CMSAuth::AuditorRoleName));
     parent::__construct();
 }