You are here

public function Twig_Parser::getImportedSymbol in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/lib/Twig/Parser.php \Twig_Parser::getImportedSymbol()

File

vendor/twig/twig/lib/Twig/Parser.php, line 298

Class

Twig_Parser
Default parser implementation.

Code

public function getImportedSymbol($type, $alias) {
  foreach ($this->importedSymbols as $functions) {
    if (isset($functions[$type][$alias])) {
      return $functions[$type][$alias];
    }
  }
}