[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
backup
/
alajaji
/
templates
/
beez3
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 css
SET
[ DEL ]
📁 html
SET
[ DEL ]
📁 images
SET
[ DEL ]
📁 javascript
SET
[ DEL ]
📁 language
SET
[ DEL ]
📄 component.php
2,017 B
SET
[ EDIT ]
|
[ DEL ]
📄 favicon.ico
2,019 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
8,857 B
SET
[ EDIT ]
|
[ DEL ]
📄 template_preview.png
118,531 B
SET
[ EDIT ]
|
[ DEL ]
📄 template_thumbnail.png
21,957 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: component.php
<?php /** * @package Joomla.Site * @subpackage Templates.beez3 * * @copyright (C) 2010 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ $color = $this->params->get('templatecolor'); // Output as HTML5 $this->setHtml5(true); // Add html5 shiv JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); // Add stylesheets JHtml::_('stylesheet', 'templates/system/css/system.css', array('version' => 'auto')); JHtml::_('stylesheet', 'template.css', array('version' => 'auto', 'relative' => true)); JHtml::_('stylesheet', 'position.css', array('version' => 'auto', 'relative' => true)); JHtml::_('stylesheet', 'layout.css', array('version' => 'auto', 'relative' => true)); JHtml::_('stylesheet', 'print.css', array('version' => 'auto', 'relative' => true), array('media' => 'print')); JHtml::_('stylesheet', 'general.css', array('version' => 'auto', 'relative' => true)); JHtml::_('stylesheet', htmlspecialchars($color, ENT_COMPAT, 'UTF-8') . '.css', array('version' => 'auto', 'relative' => true)); if ($this->direction === 'rtl') { JHtml::_('stylesheet', 'template_rtl.css', array('version' => 'auto', 'relative' => true)); JHtml::_('stylesheet', htmlspecialchars($color, ENT_COMPAT, 'UTF-8') . '_rtl.css', array('version' => 'auto', 'relative' => true)); } JHtml::_('stylesheet', 'ieonly.css', array('version' => 'auto', 'relative' => true, 'conditional' => 'lte IE 6')); // Check for a custom CSS file JHtml::_('stylesheet', 'user.css', array('version' => 'auto', 'relative' => true)); ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <jdoc:include type="head" /> </head> <body class="contentpane"> <div id="all"> <div id="main"> <jdoc:include type="message" /> <jdoc:include type="component" /> </div> </div> </body> </html>