public function Twig_Environment::getExtensions

Returns all registered extensions.

Return value

array An array of extensions

8 calls to Twig_Environment::getExtensions()
Twig_Environment::getFilters in drupal/core/vendor/twig/twig/lib/Twig/Environment.php
Gets the registered Filters.
Twig_Environment::getFunctions in drupal/core/vendor/twig/twig/lib/Twig/Environment.php
Gets registered functions.
Twig_Environment::getGlobals in drupal/core/vendor/twig/twig/lib/Twig/Environment.php
Gets the registered Globals.
Twig_Environment::getNodeVisitors in drupal/core/vendor/twig/twig/lib/Twig/Environment.php
Gets the registered Node Visitors.
Twig_Environment::getTests in drupal/core/vendor/twig/twig/lib/Twig/Environment.php
Gets the registered Tests.

... See full list

File

drupal/core/vendor/twig/twig/lib/Twig/Environment.php, line 674

Class

Twig_Environment
Stores the Twig configuration.

Code

public function getExtensions() {
  return $this->extensions;
}