| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function run() |
||
| 30 | { |
||
| 31 | $url = Json::htmlEncode(Url::to($this->route)); |
||
| 32 | $selector = Json::htmlEncode($this->containerSelector); |
||
| 33 | |||
| 34 | $this->view->registerJs("$.get($url, function (data) { |
||
| 35 | $($selector).replaceWith(data); |
||
| 36 | });"); |
||
| 37 | |||
| 38 | return $this->renderOverlay(); |
||
| 39 | } |
||
| 40 | |||
| 46 |