You are here

class Twig_Extension_Debug in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Extension/Debug.php \Twig_Extension_Debug

Hierarchy

Expanded class hierarchy of Twig_Extension_Debug

File

vendor/Twig/Extension/Debug.php, line 11

View source
class Twig_Extension_Debug extends Twig_Extension {

  /**
   * Returns a list of global functions to add to the existing list.
   *
   * @return array An array of global functions
   */
  public function getFunctions() {

    // dump is safe if var_dump is overridden by xdebug
    $isDumpOutputHtmlSafe = extension_loaded('xdebug') && (false === ini_get('xdebug.overload_var_dump') || ini_get('xdebug.overload_var_dump')) && (false === ini_get('html_errors') || ini_get('html_errors')) || 'cli' === php_sapi_name();
    return array(
      new Twig_SimpleFunction('dump', 'twig_var_dump', array(
        'is_safe' => $isDumpOutputHtmlSafe ? array(
          'html',
        ) : array(),
        'needs_context' => true,
        'needs_environment' => true,
      )),
    );
  }

  /**
   * Returns the name of the extension.
   *
   * @return string The extension name
   */
  public function getName() {
    return 'debug';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Twig_Extension::getFilters public function Returns a list of filters to add to the existing list. Overrides Twig_ExtensionInterface::getFilters 3
Twig_Extension::getGlobals public function Returns a list of global variables to add to the existing list. Overrides Twig_ExtensionInterface::getGlobals 1
Twig_Extension::getNodeVisitors public function Returns the node visitor instances to add to the existing list. Overrides Twig_ExtensionInterface::getNodeVisitors 4
Twig_Extension::getOperators public function Returns a list of operators to add to the existing list. Overrides Twig_ExtensionInterface::getOperators 1
Twig_Extension::getTests public function Returns a list of tests to add to the existing list. Overrides Twig_ExtensionInterface::getTests 2
Twig_Extension::getTokenParsers public function Returns the token parser instances to add to the existing list. Overrides Twig_ExtensionInterface::getTokenParsers 4
Twig_Extension::initRuntime public function Initializes the runtime environment. Overrides Twig_ExtensionInterface::initRuntime
Twig_Extension_Debug::getFunctions public function Returns a list of global functions to add to the existing list. Overrides Twig_Extension::getFunctions
Twig_Extension_Debug::getName public function Returns the name of the extension. Overrides Twig_ExtensionInterface::getName