Home >PHP Framework >YII >How to adaptively switch templates in yii2

How to adaptively switch templates in yii2

王林
王林Original
2020-02-10 11:14:452494browse

How to adaptively switch templates in yii2

1. Create behavior

// frontend/behaviors/MobileBehavior.php
class MobileBehavior extends \yii\base\Behavior{    public function events()
        {            return [
                    \yii\web\Controller::EVENT_BEFORE_ACTION => 'beforeAction'
                ];
        }        public function beforeAction($event)
        {            if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') || strpos($_SERVER['HTTP_USER_AGENT'], 'Android') {
                    $event->sender->module->setViewPath($event->sender->module->getBasePath().DIRECTORY_SEPARATOR.'H5Views');
                } 
        }
}

2. Create a base class BaseController.php (free learning tutorial sharing: php tutorial)

/ frontend/controllers/BaseController.php
class BaseController extends \yii\web\Controller{    public function behaviors()
        {            return [
                    \frontend\behaviors\MobileBehavior::className()
                ];
        }        // 其他action}

Other controllers inherit BaseController.
3. Create H5Views under frontend, and just put the H5 template file here.

Related recommendations: yii tutorial

The above is the detailed content of How to adaptively switch templates in yii2. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn