123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace backend\controllers;
- use backend\base\CommonController;
- use backend\base\Help;
- use common\models\NewsRenovationcontent;
- use Yii;
- use backend\server\UploadFile;
- class RoutinespecialController extends CommonController{
- public function actionHome()
- {
- return $this->render('home');
- }
- public function actionHomeform()
- {
- }
- public function actionCreate()
- {
- return $this->render('create');
- }
- public function actionCreateform()
- {
- }
- }
|