class Twig_Extension_Debug in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Extension/Debug.php \Twig_Extension_Debug
Hierarchy
- class \Twig_Extension implements Twig_ExtensionInterface
- class \Twig_Extension_Debug
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Twig_Extension:: |
public | function |
Returns a list of filters to add to the existing list. Overrides Twig_ExtensionInterface:: |
3 |
Twig_Extension:: |
public | function |
Returns a list of global variables to add to the existing list. Overrides Twig_ExtensionInterface:: |
1 |
Twig_Extension:: |
public | function |
Returns the node visitor instances to add to the existing list. Overrides Twig_ExtensionInterface:: |
4 |
Twig_Extension:: |
public | function |
Returns a list of operators to add to the existing list. Overrides Twig_ExtensionInterface:: |
1 |
Twig_Extension:: |
public | function |
Returns a list of tests to add to the existing list. Overrides Twig_ExtensionInterface:: |
2 |
Twig_Extension:: |
public | function |
Returns the token parser instances to add to the existing list. Overrides Twig_ExtensionInterface:: |
4 |
Twig_Extension:: |
public | function |
Initializes the runtime environment. Overrides Twig_ExtensionInterface:: |
|
Twig_Extension_Debug:: |
public | function |
Returns a list of global functions to add to the existing list. Overrides Twig_Extension:: |
|
Twig_Extension_Debug:: |
public | function |
Returns the name of the extension. Overrides Twig_ExtensionInterface:: |