码迷,mamicode.com
首页 > 其他好文 > 详细

ZF2小TIP:使用事件驱动为模块快速设置模板

时间:2014-09-10 12:48:00      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:io   使用   ar   cti   sp   on   c   ad   r   

<?php
namespace Admin;

use Zend\ModuleManager\ModuleManager;

class Module 
{
    public function init(ModuleManager $moduleManager)
    {
        $sharedEvents = $moduleManager->getEventManager()->getSharedManager();
        $sharedEvents->attach(__NAMESPACE__, ‘dispatch‘, function($e) {
            $controller = $e->getTarget();
            $controller->layout(‘layout/admin‘);
        }, 100);
    }
}



ZF2小TIP:使用事件驱动为模块快速设置模板

标签:io   使用   ar   cti   sp   on   c   ad   r   

原文地址:http://my.oschina.net/leadsir/blog/311957

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!