(1) グローバル コントローラー、パス "Apps/Common/Controller/BaseController.class.php"
namespace CommonController;
class BaseController extends Controller {
Public function _initialize() {
/ /データベースコードを省略します
$this ->
}
?>
(2) モジュールコントローラー、パス "Apps/Home" Common/Controller/HomeController.class.php"
namespace HomeCommonController;
use CommonControllerBaseController;
class HomeController extends BaseController {
}
?>
Home/Controller/IndexController.class.php"
php
namespace HomeController;
class IndexController extends HomeController {
$this -> }
?つまり、