Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /var/www/web28/html/wp-content/plugins/matomo/app/core/View/ |
Current File : //var/www/web28/html/wp-content/plugins/matomo/app/core/View/MethodCallExpression.php |
<?php /* * This file is a modified file from Twig 1.x. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with it's source code. */ namespace Piwik\View; use Matomo\Dependencies\Twig\Compiler; use Matomo\Dependencies\Twig\Node\Expression\AbstractExpression; use Matomo\Dependencies\Twig\Node\Expression\ArrayExpression; use Matomo\Dependencies\Twig\Node\Expression\NameExpression; class MethodCallExpression extends AbstractExpression { public function __construct(AbstractExpression $node, $method, ArrayExpression $arguments, $lineno) { parent::__construct(['node' => $node, 'arguments' => $arguments], ['method' => $method, 'safe' => false], $lineno); if ($node instanceof NameExpression) { $node->setAttribute('always_defined', true); } } public function compile(Compiler $compiler) { $compiler->subcompile($this->getNode('node'))->raw('->')->raw($this->getAttribute('method'))->raw('('); $first = true; foreach ($this->getNode('arguments')->getKeyValuePairs() as $pair) { if (!$first) { $compiler->raw(', '); } $first = false; $compiler->subcompile($pair['value']); } $compiler->raw(')'); } }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare