Yii2动态主题

时间:2014-11-14 13:54:23

标签: yii2

如何动态设置主题?我在用户个人资料中有一个字段,允许选择主题。我在@webroot中创建了一个主题文件夹和不同的主题。

当用户正在查看他的个人资料时,我需要设置他选择的主题或设置为默认主题。

3 个答案:

答案 0 :(得分:0)

尝试更改视图组件的属性theme

http://stuff.cebe.cc/yii2docs/yii-base-view.html# $主题细节

此文章也可能有所帮助

https://github.com/yiisoft/yii2/blob/master/docs/guide/output-theming.md

答案 1 :(得分:0)

如果您想动态更改主题,您可以执行类似的操作。

切换主题的功能:

public function actionThemeswitch($theme)
{
    $options = ['name'=>'theme','value'=>$theme,'expire'=>time()+86400*365];
    $cookie = new \yii\web\Cookie($options);
    Yii::$app->response->cookies->add($cookie);

    return $this->redirect(['backend/info']);
}

创建自定义控制器并使用以下内容扩展所有控制器:

<?php
namespace frontend\components;

class Controller extends \yii\web\Controller {
    public function beforeAction($action) 
    {
        if (parent::beforeAction($action)) {
            $theme = "blue";
            if (Yii::$app->request->cookies['theme']) {
                $theme = Yii::$app->request->cookies->getValue('theme');
            }
            Yii::$app->view->theme = new \yii\base\Theme([
                'pathMap' => ['@app/views' => '@app/themes/'.$theme],
                'baseUrl' => '@web',

            ]);
            return true;  // or false if needed
        } else {
            return false;
        }
    }
}

答案 2 :(得分:0)

在你的controller \ abstract controller中(我为所有控制器使用抽象控制器)。我也是在高级Yii2中做的,但不要认为有问题......只需更改你需要的别名。

 public function init()
    {
        parent::init();

        \Yii::$app->setLayoutPath('@backend/views/theme_'.$this->getView()->themeName.'/layouts');
        $this->setViewPath($this->module->getViewPath().'/theme_'.$this->getView()->themeName.'/'.$this->id);
    }

$this->getView()->themeName是一个字符串,在我看来是扩展View类中的字符串,但您可以按照自己喜欢的方式加载\存储...(从配置文件加载)

之后在模块和基础应用程序中,您应该创建如下视图:

...
--views
----theme_b3
------controller1
--------action1
----------index.php
----------add.php
----------remove.php

----theme_adminLTE
------controller1
--------action1
----------index.php
----------add.php
----------remove.php

要点是创建包含theme_ {themeName}的文件夹(&#34; b3&#34;,&#34; adminLTE&#34;)并存储我们需要的所有布局\视图,但是在旧位置。

所以你不需要创建&#34;主题&#34; root文件夹中的所有视图都位于相同位置,但位于子文件夹中。

顺便说一句,在这种情况下,我们可以通过cookie或配置轻松切换主题,从旧主题更改为新主题。

PS:如果你使用很多模块,这个解决方案很好。在基础应用程序中,来自@Ravindra Bhalothia的解决方案就足够了。