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 /
Factory /
Magic /
Delete
Unzip
Name
Size
Permission
Date
Action
BaseFactory.php
1.07
KB
-rwxr-xr-x
2023-07-13 17:52
ControllerFactory.php
2.15
KB
-rwxr-xr-x
2023-07-13 17:52
DispatcherFactory.php
1.07
KB
-rwxr-xr-x
2023-07-13 17:52
ModelFactory.php
2.83
KB
-rwxr-xr-x
2023-07-13 17:52
TransparentAuthenticationFactory.php
1.24
KB
-rwxr-xr-x
2023-07-13 17:52
ViewFactory.php
1.98
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\Factory\Magic; defined('_JEXEC') || die; use FOF40\Container\Container; abstract class BaseFactory { /** * @var Container|null The container where this factory belongs to */ protected $container; /** * Section used to build the namespace prefix. We have to pass it since in CLI we need * to force the section we're in (ie Site or Admin). {@see \FOF40\Container\Container::getNamespacePrefix() } for * valid values * * @var string */ protected $section = 'auto'; /** * Public constructor * * @param Container $container The container we belong to */ public function __construct(Container $container) { $this->container = $container; } /** * @return string */ public function getSection(): string { return $this->section; } /** * @param string $section */ public function setSection(string $section): void { $this->section = $section; } }