getPluginHandler() public method

Returns a plugin handler instance, creating it if it does not already exist and using a default class if none has been set.
public getPluginHandler ( ) : Phergie_Plugin_Handler
return Phergie_Plugin_Handler
Beispiel #1
0
 /**
  * Gets the required class refences from Phergie_Bot.
  *
  * @param Phergie_Bot $bot     Current bot instance in use
  * @param array       $options Optional processor arguments
  *
  * @return void
  */
 public function __construct(Phergie_Bot $bot, array $options = array())
 {
     $this->driver = $bot->getDriver();
     $this->plugins = $bot->getPluginHandler();
     $this->connections = $bot->getConnectionHandler();
     $this->events = $bot->getEventHandler();
     $this->ui = $bot->getUi();
     $this->options = $options;
 }
Beispiel #2
0
 /**
  * Tests that a custom plugin handler can be set.
  *
  * @return void
  */
 public function testSetPluginHandler()
 {
     $plugins = $this->getMockPluginHandler();
     $this->bot->setPluginHandler($plugins);
     $this->assertSame($plugins, $this->bot->getPluginHandler());
 }