Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function getScript() { |
||
24 | $allParams=$this->params; |
||
25 | $this->jquery_code_for_compile=array (); |
||
26 | $paramParts=""; |
||
27 | if(\sizeof($this->paramParts)>0){ |
||
28 | $paramParts=".".$this->generateParamParts(); |
||
29 | } |
||
30 | $this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).{$this->uiName}(".$this->getParamsAsJSON($allParams).")".$paramParts.";"; |
||
31 | $this->compileEvents(); |
||
32 | return $this->compileJQueryCode(); |
||
33 | } |
||
34 | |||
45 | } |