init() 공개 메소드

Initialization
public init ( )
예제 #1
0
파일: jUI.php 프로젝트: respond/atk4
 function init()
 {
     parent::init();
     $this->api->jui = $this;
     $this->addDefaultIncludes();
     $this->atk4_initialised = true;
 }
예제 #2
0
파일: jUI.php 프로젝트: samratcis/atk4
 function init()
 {
     parent::init();
     if (@$this->api->jui) {
         throw $this->exception('Do not add jUI twice');
     }
     $this->api->jui = $this;
     $this->addDefaultIncludes();
     $this->atk4_initialised = true;
 }
예제 #3
0
파일: jQuery.php 프로젝트: s-kalaus/zkernel
 /**
  * addAction
  * add query to stack
  *
  * @param  string $name
  * @param  jQuery_Action $jQuery_Action
  * @return void
  */
 public static function addAction($name, jQuery_Action &$jQuery_Action)
 {
     jQuery::init();
     jQuery::$jQuery->response['a'][$name][] = $jQuery_Action;
 }