FirePhp debugging tool.") * ) */ class FirePhp extends DevelDumperBase { /** * {@inheritdoc} */ public function dump($input, $name = NULL) { $fb = new \FB(); $fb->dump($name, $input); } /** * {@inheritdoc} */ public function export($input, $name = NULL) { $this->dump($input); return $this->t('Dump was redirected to the console.'); } /** * {@inheritdoc} */ public static function checkRequirements() { return class_exists('FirePHP', TRUE); } }