Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class HomeController extends Controller |
||
15 | { |
||
16 | /** |
||
17 | * 基础功能-首页 |
||
18 | */ |
||
19 | public function showIndex() |
||
20 | { |
||
21 | $opcache = 'false'; |
||
22 | if (function_exists('opcache_get_status') && opcache_get_status() !== false) { |
||
23 | $opcache = 'true'; |
||
24 | } |
||
25 | return view('admin.home.index', ['opcache' => $opcache]); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * 内容管理-内容管理 |
||
30 | */ |
||
31 | public function showAggregation() |
||
34 | } |
||
35 | } |
||
36 |