26 lines
811 B
PHP
26 lines
811 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace app\controller\api\operate;
|
|
|
|
use app\controller\Base;
|
|
use app\services\operate\ClientService;
|
|
|
|
class Client extends Base{
|
|
|
|
/**
|
|
* @title 客户端菜单
|
|
*
|
|
* @return void
|
|
*/
|
|
public function menu(ClientService $service){
|
|
$this->data['data'] = $service->getClientMenu($this->request);
|
|
|
|
return $this->data;
|
|
}
|
|
} |