Theming and layout in yii framework

前端 未结 2 876
南笙
南笙 2021-02-06 06:46

I am a newbie in Yii Framework and creating a CRM which is module based. Using different tutorials I am able to create my own theme, but now I am stucked at one point.

I

2条回答
  •  我在风中等你
    2021-02-06 07:09

    Using a custom layout for your view is the right way to go. You can either set the layout in the controller action or in the view.

    $this->layout = "//layouts/mylayout";
    

    Note that the default layouts column1.php and column2.php also use the main.php layout file.

提交回复
热议问题