fangw
Results
1
issues of
fangw
class Bootstrap extends Yaf_Bootstrap_Abstract{ public function _initConfig() { //把配置保存起来 $arrConfig = Yaf_Application::app()->getConfig(); Yaf_Registry::set('config', $arrConfig); } public function _initPlugin(Yaf_Dispatcher $dispatcher) { //注册一个插件 $objSamplePlugin = new SamplePlugin(); $dispatcher->registerPlugin($objSamplePlugin); } public function _initDefaultName(Yaf_Dispatcher...