Files
graphonline/src/dev/ckeditor4_head.php
/usr/bin/nano c715e2a604 first commit
2017-04-15 01:34:36 +03:00

19 lines
758 B
PHP
Executable File

<?php
$contentCss = NULL;
if ($g_config['extrapacker']['packCss'] && $g_config['extrapacker']['dir'])
{
// Если мы в админке, то директория может быть переопределена, но изначальная должна быть сохранена в $g_config['extrapacker']['non_admin_dir']
$dir = isset($g_config['extrapacker']['non_admin_dir']) ? $g_config['extrapacker']['non_admin_dir'] : $g_config['extrapacker']['dir'];
$path = "tmp/{$dir}/css/";
$files = glob(BASEPATH . $path . "*.css");
if (count($files) > 0)
{
sort($files);
$file = end($files);
$contentCss = "/" . $path . basename($file);
}
}
?>