Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function renderInput() |
||
29 | { |
||
30 | if (View::exists('mini-cms.admin.blocks.' . static::$blockType)) { |
||
31 | return View::make(View::exists('mini-cms.admin.blocks.' . static::$blockType, ['block' => $this])); |
||
32 | } |
||
33 | |||
34 | return View::make('mini-cms::admin.blocks.' . static::$blockType, ['block' => $this]); |
||
35 | } |
||
36 | } |
||
37 |