/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
mirko-pagliai
/
cakephp-thumber
/
config
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/cakephp-thumber/config
mkdir
upload
Name
Size
Mode
Actions
bootstrap.php
801
0644
edit
dl
rm
routes.php
968
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/cakephp-thumber/config/bootstrap.php
(801B)
<?php declare(strict_types=1); /** * This file is part of cakephp-thumber. * * 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/cakephp-thumber * @license https://opensource.org/licenses/mit-license.php MIT License */ use Cake\Core\Configure; //Default thumbnails driver if (!defined('THUMBER_DRIVER')) { define('THUMBER_DRIVER', Configure::read('Thumber.driver', extension_loaded('imagick') ? 'imagick' : 'gd')); } //Default thumbnails directory if (!defined('THUMBER_TARGET')) { define('THUMBER_TARGET', Configure::read('Thumber.target', TMP . 'thumbs')); }
Save