/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakephp
/
twig-view
/
src
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/twig-view/src
mkdir
upload
Name
Size
Mode
Actions
Command/
-
0755
rm
Filesystem/
-
0755
rm
Panel/
-
0755
rm
Twig/
-
0755
rm
View/
-
0755
rm
Plugin.php
1303
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/twig-view/src/Plugin.php
(1303B)
<?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; use Cake\Console\CommandCollection; use Cake\Core\BasePlugin; use Cake\TwigView\Command\CompileCommand; /** * Plugin class for Cake\TwigView. */ class Plugin extends BasePlugin { /** * Do bootstrapping or not * * @var bool */ protected $bootstrapEnabled = false; /** * Load routes or not * * @var bool */ protected $routesEnabled = false; /** * @inheritDoc */ public function console(CommandCollection $commands): CommandCollection { $commands->add('twig-view compile', CompileCommand::class); return $commands; } }
Save
cmd:
run