Exemple #1
0
 /**
  * Returns the scrolling style loader.  If it doesn't exist it's
  * created.
  *
  * @return Zend_Loader_PluginLoader
  */
 public static function getScrollingStyleLoader()
 {
     if (self::$_scrollingStyleLoader === null) {
         self::$_scrollingStyleLoader = new Zend_Loader_PluginLoader(array('Zend_Paginator_ScrollingStyle' => 'Zend/Paginator/ScrollingStyle'));
     }
     return self::$_scrollingStyleLoader;
 }