Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
34 | 108 | protected function bindPopupContent($js) |
|
35 | { |
||
36 | 108 | if (!empty($this->popupContent)) { |
|
37 | 21 | $content = addslashes($this->popupContent); |
|
38 | 21 | $js .= ".bindPopup(\"{$content}\")"; |
|
39 | 21 | if ($this->openPopup) { |
|
40 | 3 | $js .= ".openPopup()"; |
|
41 | 3 | } |
|
42 | 21 | } |
|
43 | 108 | return $js; |
|
44 | } |
||
45 | } |
||
46 |