示例#1
0
 /**
  * Retrieve PluginLoader
  *
  * @return Zend_Loader_PluginLoader
  */
 public static function getPluginLoader()
 {
     if (null === self::$_pluginLoader) {
         self::$_pluginLoader = new Zend_Loader_PluginLoader(array('Zend_Controller_Action_Helper' => 'Zend/Controller/Action/Helper/'));
     }
     return self::$_pluginLoader;
 }
示例#2
0
 /**
  * Retrieve PluginLoader
  *
  * @return Zend_Loader_PluginLoader
  */
 public static function getPluginLoader()
 {
     if (null === self::$_pluginLoader) {
         require_once PHP_LIBRARY_PATH . 'Zend/Loader/PluginLoader.php';
         self::$_pluginLoader = new Zend_Loader_PluginLoader(array('Zend_Controller_Action_Helper' => 'Zend/Controller/Action/Helper/'));
     }
     return self::$_pluginLoader;
 }