__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Joomla! Content Management System
*
* @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\CMS\Application;
use Joomla\Application\AbstractApplication;
use Joomla\CMS\Input\Input;
use Joomla\Event\DispatcherAwareInterface;
use Joomla\Event\DispatcherAwareTrait;
use Joomla\Registry\Registry;
// phpcs:disable PSR1.Files.SideEffects
\defined('JPATH_PLATFORM') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Joomla Platform Base Application Class
*
* @property-read Input $input The application input object
*
* @since 3.0.0
*
* @deprecated 4.3 will be removed in 6.0
* Application classes should directly be based on \Joomla\Application\AbstractApplication
* don't use this class anymore
*/
abstract class BaseApplication extends AbstractApplication implements DispatcherAwareInterface
{
use DispatcherAwareTrait;
use EventAware;
use IdentityAware;
/**
* Class constructor.
*
* @param Input $input An optional argument to provide dependency injection for the application's
* input object. If the argument is a \JInput object that object will become
* the application's input object, otherwise a default input object is created.
* @param Registry $config An optional argument to provide dependency injection for the application's
* config object. If the argument is a Registry object that object will become
* the application's config object, otherwise a default config object is created.
*
* @since 3.0.0
*/
public function __construct(Input $input = null, Registry $config = null)
{
$this->input = $input instanceof Input ? $input : new Input();
$this->config = $config instanceof Registry ? $config : new Registry();
$this->initialise();
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CLI | Folder | 0775 |
|
|
| Exception | Folder | 0775 |
|
|
| AdministratorApplication.php | File | 16.93 KB | 0664 |
|
| ApiApplication.php | File | 13.5 KB | 0664 |
|
| ApplicationHelper.php | File | 5.56 KB | 0664 |
|
| BaseApplication.php | File | 2.02 KB | 0664 |
|
| CMSApplication.php | File | 41.28 KB | 0664 |
|
| CMSApplicationInterface.php | File | 4.44 KB | 0664 |
|
| CMSWebApplicationInterface.php | File | 3.09 KB | 0664 |
|
| CliApplication.php | File | 11.32 KB | 0664 |
|
| ConsoleApplication.php | File | 19.68 KB | 0664 |
|
| DaemonApplication.php | File | 28.21 KB | 0664 |
|
| EventAware.php | File | 3.58 KB | 0664 |
|
| EventAwareInterface.php | File | 2.12 KB | 0664 |
|
| ExtensionNamespaceMapper.php | File | 900 B | 0664 |
|
| IdentityAware.php | File | 1.29 KB | 0664 |
|
| MultiFactorAuthenticationHandler.php | File | 19.89 KB | 0664 |
|
| SiteApplication.php | File | 28.98 KB | 0664 |
|
| WebApplication.php | File | 14.46 KB | 0664 |
|