Файловый менеджер - Редактировать - /home/digilove/public_html/110/libraries/fof30/Factory/Magic/BaseFactory.php
Назад
<?php /** * @package FOF * @copyright Copyright (c)2010-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 2 or later */ namespace FOF30\Factory\Magic; use FOF30\Container\Container; defined('_JEXEC') or die; abstract class BaseFactory { /** * @var Container|null The container where this factory belongs to */ protected $container = null; /** * Section used to build the namespace prefix. We have to pass it since in CLI scaffolding we need * to force the section we're in (ie Site or Admin). {@see \FOF30\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() { return $this->section; } /** * @param string $section */ public function setSection($section) { $this->section = $section; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0.16 |
proxy
|
phpinfo
|
Настройка