You are here

public function Twig_Environment::getFunctions in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Environment.php \Twig_Environment::getFunctions()

Gets registered functions.

Be warned that this method cannot return functions defined with registerUndefinedFunctionCallback.

Return value

Twig_FunctionInterface[] An array of Twig_FunctionInterface instances

See also

registerUndefinedFunctionCallback

File

vendor/Twig/Environment.php, line 1008

Class

Twig_Environment
Stores the Twig configuration.

Code

public function getFunctions() {
  if (!$this->extensionInitialized) {
    $this
      ->initExtensions();
  }
  return $this->functions;
}