第1步- 在你的專案根目錄內建立一個 modules 檔案夾。在 modules 檔案夾內建立一個名為 admin 的檔案夾。這是 admin 模組的基本檔案夾。
<?php namespace app\modules\admin; class Admin extends \yii\base\Module { public function init() { parent::init(); } } ?>
我們剛剛建立了一個模組類。它位於模組根路徑下。每一次模組被存取時,將建立對應的模組類的一個範例。init()函式用於初始化模組的屬性。
第3步 - 現在,在 admin檔案夾內新增兩個目錄- controllers 和 views。新增 CustomController.php 檔案到控制器的檔案夾中。
<?php namespace app\modules\admin\controllers; use yii\web\Controller; class CustomController extends Controller { public function actionGreet() { return $this->render('greet'); } } ?>
當建立一個模組,慣例是把控制器類到模組根路徑的 controllers 目錄。我們剛才定義的actionGreet函式,只返回一個 greet 檢視。
在模組中檢視應該放在模組基本路徑的 views 檔案夾中。如果檢視是由控制器呈現,那麼它們應位於對應於該控制器ID的檔案夾中。將 custom 檔案夾新增到 views 檔案夾。
<h1>Hello,這是一個自定義模組!</h1>
我們剛剛建立了 actionGreet 檢視。要在模組中使用這個新建立檔案,我們還應該組態應用程式。我們應該將模組新增到應用程式的模組屬性中。
<?php $params = require(__DIR__ . '/params.php'); $config = [ 'id' => 'basic', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 'components' => [ 'request' => [ // !!! insert a secret key in the following (if it is empty) - this is //required by cookie validation 'cookieValidationKey' => 'Yia-tw511.com', ], 'cache' => [ 'class' => 'yii\caching\FileCache', ], 'user' => [ 'identityClass' => 'app\models\User', 'enableAutoLogin' => true, ], 'errorHandler' => [ 'errorAction' => 'site/error', ], 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', // send all mails to a file by default. You have to set // 'useFileTransport' to false and configure a transport // for the mailer to send real emails. 'useFileTransport' => true, ], 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [ [ 'class' => 'yii\log\FileTarget', 'levels' => ['error', 'warning'], ], ], ], 'db' => require(__DIR__ . '/db.php'), ], 'modules' => [ 'admin' => [ 'class' => 'app\modules\admin\Admin', ], ], 'params' => $params, ]; if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = [ 'class' => 'yii\debug\Module', ]; $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', ]; } return $config; ?>
admin/custom/greet
模組(Modules)應該 ?