class Twig_Extension_Debug

Hierarchy

Expanded class hierarchy of Twig_Extension_Debug

File

drupal/core/vendor/twig/twig/lib/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 overriden 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'));
    return array(
      'dump' => new Twig_Function_Function('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_Debug::getFunctions public function Returns a list of global functions to add to the existing list.
Twig_Extension_Debug::getName public function Returns the name of the extension.