/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
mirko-pagliai
/
me-tools
/
config
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/me-tools/config
mkdir
upload
Name
Size
Mode
Actions
ckeditor/
-
0755
rm
bootstrap.php
1243
0644
edit
dl
rm
i18n_constants.php
2180
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/me-tools/config/bootstrap.php
(1243B)
<?php declare(strict_types=1); /** * This file is part of me-tools. * * 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) Mirko Pagliai * @link https://github.com/mirko-pagliai/me-tools * @license https://opensource.org/licenses/mit-license.php MIT License */ use Cake\Core\Configure; if (!defined('VENDOR')) { define('VENDOR', rtrim(ROOT, DS) . DS . 'vendor' . DS); } if (!defined('WWW_VENDOR')) { define('WWW_VENDOR', WWW_ROOT . 'vendor' . DS); } //Sets directories to be created and must be writable Configure::write('MeTools.WritableDirs', [ CACHE, CACHE . 'models', CACHE . 'persistent', CACHE . 'views', LOGS, TMP, TMP . 'sessions', TMP . 'tests', WWW_ROOT . 'files', WWW_VENDOR, ]); //Sets symbolic links for vendor assets to be created Configure::write('MeTools.VendorLinks', [ 'axllent/jquery' => 'jquery', 'fortawesome/font-awesome' => 'font-awesome', 'npm-asset/fancyapps-fancybox/dist' => 'fancyapps-fancybox', 'twbs/bootstrap/dist' => 'bootstrap', ]); require_once 'i18n_constants.php';
Save
cmd:
run