class Twig_Extension_StringLoader in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Extension/StringLoader.php \Twig_Extension_StringLoader
Hierarchy
- class \Twig_Extension implements Twig_ExtensionInterface
- class \Twig_Extension_StringLoader
Expanded class hierarchy of Twig_Extension_StringLoader
File
- vendor/
Twig/ Extension/ StringLoader.php, line 11
View source
class Twig_Extension_StringLoader extends Twig_Extension {
/**
* {@inheritdoc}
*/
public function getFunctions() {
return array(
new Twig_SimpleFunction('template_from_string', 'twig_template_from_string', array(
'needs_environment' => true,
)),
);
}
/**
* {@inheritdoc}
*/
public function getName() {
return 'string_loader';
}
}
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_StringLoader:: |
public | function |
Returns a list of functions to add to the existing list. Overrides Twig_Extension:: |
|
Twig_Extension_StringLoader:: |
public | function |
Returns the name of the extension. Overrides Twig_ExtensionInterface:: |