mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 03:17:05 +08:00
60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Admin\Controllers;
|
|
|
|
use App\Http\Admin\Services\Index as IndexService;
|
|
use Phalcon\Mvc\View;
|
|
|
|
/**
|
|
* @RoutePrefix("/admin")
|
|
*/
|
|
class IndexController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/", name="admin.index")
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$indexService = new IndexService();
|
|
|
|
$topMenus = $indexService->getTopMenus();
|
|
$leftMenus = $indexService->getLeftMenus();
|
|
$appInfo = $indexService->getAppInfo();
|
|
|
|
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
|
|
$this->view->setVar('app_info', $appInfo);
|
|
$this->view->setVar('top_menus', $topMenus);
|
|
$this->view->setVar('left_menus', $leftMenus);
|
|
}
|
|
|
|
/**
|
|
* @Get("/main", name="admin.main")
|
|
*/
|
|
public function mainAction()
|
|
{
|
|
$indexService = new IndexService();
|
|
|
|
$globalStat = $indexService->getGlobalStat();
|
|
$todayStat = $indexService->getTodayStat();
|
|
$appInfo = $indexService->getAppInfo();
|
|
$serverInfo = $indexService->getServerInfo();
|
|
|
|
$this->view->setVar('global_stat', $globalStat);
|
|
$this->view->setVar('today_stat', $todayStat);
|
|
$this->view->setVar('app_info', $appInfo);
|
|
$this->view->setVar('server_info', $serverInfo);
|
|
}
|
|
|
|
/**
|
|
* @Get("/phpinfo", name="admin.phpinfo")
|
|
*/
|
|
public function phpinfoAction()
|
|
{
|
|
echo phpinfo();
|
|
|
|
exit;
|
|
}
|
|
|
|
}
|