PHP 8.1.33
Preview: BaseApplication.php Size: 1.77 KB
/home/jambtst2015/9jahookups.com/libraries/src/Application/BaseApplication.php

<?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;

\defined('JPATH_PLATFORM') or die;

use Joomla\Application\AbstractApplication;
use Joomla\CMS\Input\Input;
use Joomla\Event\DispatcherAwareInterface;
use Joomla\Event\DispatcherAwareTrait;
use Joomla\Registry\Registry;

/**
 * Joomla Platform Base Application Class
 *
 * @property-read  Input  $input  The application input object
 *
 * @since       3.0.0
 * @deprecated  5.0  Application classes should be based on \Joomla\Application\AbstractApplication
 */
abstract class BaseApplication extends AbstractApplication implements DispatcherAwareInterface
{
	use DispatcherAwareTrait, EventAware, 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();
	}
}

Directory Contents

Dirs: 2 × Files: 16

Name Size Perms Modified Actions
CLI DIR
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
Exception DIR
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
15.84 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
11.22 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
4.53 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.77 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
9.47 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
37.17 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
3.74 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.62 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
10.61 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
24.47 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.89 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.66 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
779 B lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.45 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
22.84 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
12.35 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).