| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 65 | public function element(string $sSelector = '', string $sContext = ''): Element |
||
| 66 | { |
||
| 67 | $jQueryNs = $this->xConfig->getOption('core.jquery.no_conflict', false) ? 'jQuery' : '$'; |
||
| 68 | $xElement = new Element($jQueryNs, $sSelector, $sContext); |
||
| 69 | $this->addCommand(['cmd' => 'jquery'], $xElement); |
||
| 70 | return $xElement; |
||
| 71 | } |
||
| 73 |