You are here

public static function FirePhp::checkRequirements in Devel 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Devel/Dumper/FirePhp.php \Drupal\devel\Plugin\Devel\Dumper\FirePhp::checkRequirements()

Checks if requirements for this plugin are satisfied.

Return value

bool TRUE is requirements are satisfied, FALSE otherwise.

Overrides DevelDumperInterface::checkRequirements

File

src/Plugin/Devel/Dumper/FirePhp.php, line 37

Class

FirePhp
Provides a FirePhp dumper plugin.

Namespace

Drupal\devel\Plugin\Devel\Dumper

Code

public static function checkRequirements() {
  return class_exists('FirePHP', TRUE);
}