Your IP : 216.73.217.22


Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/builder-source-filesystem/
Upload File :
Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/builder-source-filesystem/bootstrap.php

<?php

namespace YOOtheme\Builder\Source\Filesystem;

use YOOtheme\Config;

return [
    'events' => [
        'source.init' => [
            SourceListener::class => ['initSource', -5], // -5 to show the 'External' Group after the 'Custom' Group
        ],
    ],

    'services' => [
        FileHelper::class => function (Config $config) {
            return new FileHelper($config('app.uploadDir'));
        },
    ],
];