| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 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 | } |