uawdijnntqw1x1x1
IP : 216.73.217.24
Hostname : webm007.cluster114.gra.hosting.ovh.net
Kernel : Linux webm007.cluster114.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
locationbo
/
www
/
plugins
/
system
/
jce
/
templates
/
.
/
core.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; class WfTemplateCore extends JPlugin { public function onWfGetTemplateStylesheets(&$files, $template) { // already processed by a framework if (!empty($files)) { return false; } // Joomla! 1.5 standard $file = 'template.css'; $css = array(); $path = JPATH_SITE . '/templates/' . $template->name . '/css'; if (!is_dir($path)) { return false; } $css = JFolder::files($path, '(base|core|template|template_css)\.(css|less)$', false, true); if (!empty($css)) { // use the first result $file = $css[0]; } // check for php version, eg: template.css.php if (is_file($path . '/' . $file . '.php')) { $file .= '.php'; } // get file name only $file = basename($file); // check for default css file if (is_file($path . '/' . $file)) { $files[] = 'templates/' . $template->name . '/css/' . $file; } } }
/home/locationbo/www/plugins/system/jce/templates/./core.php