| Current Path : /var/www/html/plugins/system/jce/templates/ |
| Current File : /var/www/html/plugins/system/jce/templates/astroid.php |
<?php
/**
* @copyright Copyright (C) 2021 Ryan Demmer. All rights reserved
* @license GNU General Public License version 2 or later
*/
defined('JPATH_BASE') or die;
use Joomla\CMS\Plugin\CMSPlugin;
class WfTemplateAstroid extends CMSPlugin
{
public function onWfGetTemplateStylesheets(&$files, $template)
{
// Joomla 4
$path = JPATH_SITE . '/media/templates/site/' . $template->name;
if (is_dir($path . '/astroid')) {
$items = glob($path . '/css/compiled-*.css');
// add template css file (bootstrap)
if (is_file($path . '/css/template.css')) {
$files[] = 'media/templates/site/' . $template->name . '/css/template.css';
}
if (!empty($items)) {
// order by modified time from newest to oldest
usort($items, function ($a, $b) {
return filemtime($b) - filemtime($a);
});
// get the first item
$item = array_shift($items);
$files[] = 'media/templates/site/' . $template->name . '/css/' . basename($item);
}
// add custom css file
if (is_file($path . '/css/custom.css')) {
$files[] = 'media/templates/site/' . $template->name . '/css/custom.css';
}
return true;
}
// Joomla 3
$path = JPATH_SITE . '/templates/' . $template->name;
if (is_dir($path . '/astroid')) {
$items = glob($path . '/css/compiled-*.css');
// add template css file (bootstrap)
if (is_file($path . '/css/template.css')) {
$files[] = 'templates/' . $template->name . '/css/template.css';
}
if (!empty($items)) {
// order by modified time from newest to oldest
usort($items, function ($a, $b) {
return filemtime($b) - filemtime($a);
});
// get the first item
$item = array_shift($items);
$files[] = 'templates/' . $template->name . '/css/' . basename($item);
}
// add custom css file
if (is_file($path . '/css/custom.css')) {
$files[] = 'templates/' . $template->name . '/css/custom.css';
}
}
}
}