File Manager

Current Directory: /home/astoriaah/www/templates/yootheme-BK/vendor/yootheme/framework/modules/asset
Viewing File: /home/astoriaah/www/templates/yootheme-BK/vendor/yootheme/framework/modules/asset/index.php
<?php use YOOtheme\Asset\CssImageBase64Filter; use YOOtheme\Asset\CssImportResolverFilter; use YOOtheme\Asset\CssRewriteUrlFilter; use YOOtheme\Asset\CssRtlFilter; use YOOtheme\Asset\FilterManager; use YOOtheme\AssetFactory; use YOOtheme\AssetManager; use YOOtheme\Util\File; use YOOtheme\Util\Str; return [ 'name' => 'yootheme/asset', 'main' => function ($app) { $app['assets'] = function ($app) { return new AssetFactory($app['assets.loader']); }; $app['assets.loader'] = $app->protect(function ($name) { $scheme = ['http://', 'https://', '//']; if (File::isAbsolute($name)) { return !Str::startsWith($name, $scheme) && is_file($name) ? $name : false; } if ($name[0] != '@') { $name = "@assets/{$name}"; } return File::find($name); }); $app['assets.filters'] = function ($app) { return new FilterManager([ 'CssImageBase64' => new CssImageBase64Filter($app['url']->base(), $app->path), 'CssImportResolver' => new CssImportResolverFilter, 'CssRewriteUrl' => new CssRewriteUrlFilter($app['url']), 'CssRtl' => new CssRtlFilter, ]); }; $app['styles'] = function ($app) { return new AssetManager($app['assets'], $app['assets.filters'], $app['styles.cache']); }; $app['styles.cache'] = function ($app) { return isset($app['path.cache']) ? "{$app['path.cache']}/%name%.css" : null; }; $app['scripts'] = function ($app) { return new AssetManager($app['assets'], $app['assets.filters'], $app['scripts.cache']); }; $app['scripts.cache'] = function ($app) { return isset($app['path.cache']) ? "{$app['path.cache']}/%name%.js" : null; }; }, 'events' => [ 'view' => [function ($app) { $config = [ 'url' => $app['url']->base(), 'route' => $app['url']->route(), ]; if (isset($app['locale'])) { $config['locale'] = $app['locale']; } if (isset($app['translator'])) { $config['locales'] = $app['translator']->getResources(); } if (isset($app['csrf'])) { $config['csrf'] = $app['csrf']->generate(); } $app['scripts']->register('config', sprintf('var $config = %s;', json_encode($config)), [], 'string'); }, 10] ] ];