plugins[ ] = new SysFilters\Plugin(); } /** * put your comment there... * */ public static function & load() { if ( ! self::$instance ) { self::$instance = new Plugins(); } return self::$instance; } /** * put your comment there... * */ public function runPlugins() { foreach ( $this->plugins as $plugin ) { $plugin->run(); } return $this; } }