phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
GenericComponent.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Ajax\common\components;
4 
6 
8 
9  /*
10  * (non-PHPdoc)
11  * @see \Ajax\common\components\SimpleExtComponent::getScript()
12  */
13  public function getScript() {
14  $this->jquery_code_for_compile=array ();
15  foreach ( $this->jsCodes as $jsCode ) {
16  $this->jquery_code_for_compile []=$jsCode->compile(array (
17  "identifier" => $this->attachTo
18  ));
19  }
20  $this->compileEvents();
21  return $this->compileJQueryCode();
22  }
23 }