Example #1
0
 /**
  * Notify plugins of an event
  *
  * @return integer|boolean Returns number of plugins notified or false if none exist
  */
 public function notify()
 {
     $args = func_get_args();
     return Zend_Db_Table_Plugin_Broker::notify($this->getTable(), 'Row', $args);
 }
Example #2
0
 /**
  * Retrieve the plugin loader
  *
  * @return Zend_Loader_PluginLoader
  */
 public static function getPluginLoader()
 {
     if (self::$_loader === null) {
         self::$_loader = new Zend_Loader_PluginLoader();
     }
     return self::$_loader;
 }