| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace backend\controllers;
- use Yii;
- use yii\web\Controller;
- use yii\filters\AccessControl;
- /**
- *
- */
- class MarketingController extends BackendController
- {
- public function actionIndex()
- {
- $get = Yii::$app->request->get();
- if(isset($get['partial'])){
- return $this->renderpartial('iframeIndex');
- }else{
- return $this->render('index');
- }
- }
- public function actionEveryday()
- {
- return $this->render('everyday');
- }
-
- public function actionWorksShow()
- {
- return $this->render('worksShow');
- }
- }
|