* @copyright 2008-2010 Phergie Development Team (http://phergie.org) * @license http://phergie.org/license New BSD License * @link http://pear.phergie.org/package/Phergie_Plugin_Caffeine */ /** * Processes requests to serve users caffeinated beverages. * * @category Phergie * @package Phergie_Plugin_Caffeine * @author Phergie Development Team * @license http://phergie.org/license New BSD License * @link http://pear.phergie.org/package/Phergie_Plugin_Caffeine * @uses Phergie_Plugin_Command pear.phergie.org * @uses Phergie_Plugin_Serve pear.phergie.org */ class Phergie_Plugin_Caffeine extends Phergie_Plugin_Abstract { /** * Checks for dependencies. * * @return void */ public function onLoad() { $plugins = $this->plugins; $plugins->getPlugin('Command'); $plugins->getPlugin('Serve'); } /** * Processes requests to serve a user a caffeinated beverage. * * @param string $request Request including the target and an optional * suggestion of what caffeinated beverage to serve * * @return void */ public function onCommandCaffeine($request) { $format = $this->getConfig( 'beer.format', 'throws %target% %article% %item%.' ); $this->plugins->getPlugin('Serve')->serve( dirname(__FILE__) . '/Caffeine/caffeine.db', 'caffeine', $format, $request ); } }