Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function run() |
||
12 | { |
||
13 | $content = ob_get_clean(); |
||
14 | $html = Html::beginForm($this->action, $this->method, $this->options); |
||
15 | $html .= $content; |
||
16 | |||
17 | if ($this->enableClientScript) { |
||
18 | $this->registerClientScript(); |
||
19 | } |
||
20 | |||
21 | $html .= Html::endForm(); |
||
22 | return $html; |
||
23 | } |
||
24 | } |