You are here

public function Twig_Environment::getFunctions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/lib/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/twig/lib/Twig/Environment.php, line 1148

Class

Twig_Environment
Stores the Twig configuration.

Code

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