| 1234567891011121314151617181920212223242526272829303132333435363738 | <?php/** * FecShop file. * * @link http://www.fecshop.com/ * @copyright Copyright (c) 2016 FecShop Software LLC * @license http://www.fecshop.com/license/ */namespace fecadmin\controllers;use Yii;use fec\helpers\CRequest;use fecadmin\FecadminbaseController;/** * @author Terry Zhao <2358269014@qq.com> * @since 1.0 */class SystemlogController extends FecadminbaseController{	# 我的账户    public function actionManager()    {		//echo $this->action->id ;exit;		$data = $this->getBlock()->getLastData();		return $this->render($this->action->id,$data);	}				}
 |