Total Complexity | 4 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class EnvEditor extends Widget |
||
8 | { |
||
9 | /** |
||
10 | * @return bool |
||
11 | */ |
||
12 | public function active() |
||
13 | { |
||
14 | return config('sleeping_owl.show_editor'); |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | * @throws \Throwable |
||
20 | */ |
||
21 | public function toHtml() |
||
22 | { |
||
23 | return view(AdminTemplate::getViewPath('_partials.env_editor'))->render(); |
||
|
|||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return string|array |
||
28 | */ |
||
29 | public function template() |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function block() |
||
40 | } |
||
41 | } |