array $dependencies = []
) {
parent::__construct($name, $uri, $options, $attributes, $dependencies);
// Prepare Uri depend from the active language
$langTag = Factory::getApplication()->getLanguage()->getTag();
$client = $this->getOption('client');
// Create Uri <client>/language/<langTag>/<langTag>.css
if ($client) {
$this->uri = $client . '/language/' . $langTag . '/' . $langTag . '.css';
$className = \array_key_exists('class', $options) ? $options['class'] : null;
if ($className && class_exists($nameSpace . '\\' . $className)) {
$className = $nameSpace . '\\' . $className;
return new $className($name, $uri, $options, $attributes, $dependencies);
}
return new WebAssetItem($name, $uri, $options, $attributes, $dependencies);
}
// Inheriting the Namespace
if ($namespace && !\array_key_exists('namespace', $options)) {
$options['namespace'] = $namespace;
}
$assetItem = $this->createAsset($name, $uri, $options);
$this->add($item['type'], $assetItem);
}
}
/**
$this->dataFilesNew = [];
foreach ($paths as $path) {
// Parse only if the file was not parsed already
if (empty($this->dataFilesParsed[$path])) {
$this->parseRegistryFile($path);
// Mark the file as parsed
$this->dataFilesParsed[$path] = $path;
}
}
if (!array_key_exists($type, $this->assets)) {
$this->assets[$type] = [];
}
// Check if any new file was added
$this->parseRegistryFiles();
$eventChange = 'new';
$eventAsset = $asset;
// Use "old" asset for "Changed" event, a "new" asset can be loaded by a name from the registry
if ($asset instanceof WebAssetItemInterface) {
$this->registry->add($type, $asset);
} elseif (is_string($asset)) {
$options['type'] = $type;
$assetInstance = $this->registry->createAsset($asset, $uri, $options, $attributes, $dependencies);
$this->registry->add($type, $assetInstance);
} else {
throw new \InvalidArgumentException(
sprintf(
'%s(): Argument #2 ($asset) must be a string or an instance of %s, %s given.',
__METHOD__,
}
if ($andUse) {
$name = $arguments[0] instanceof WebAssetItemInterface ? $arguments[0]->getName() : $arguments[0];
return $this->registerAsset($type, ...$arguments)->useAsset($type, $name);
} else {
return $this->registerAsset($type, ...$arguments);
}
}
$templatePath = 'media/templates/site/cassiopeia';
// Color Theme
$paramsColorName = $this->params->get('colorName', 'colors_standard');
$assetColorName = 'theme.' . $paramsColorName;
$wa->registerAndUseStyle($assetColorName, $templatePath . '/css/global/' . $paramsColorName . '.css');
// Use a font scheme if set in the template style options
$paramsFontScheme = $this->params->get('useFontScheme', false);
$fontStyles = '';
// Store the file path
$this->_file = $directory . '/' . $filename;
// Get the file content
ob_start();
require $directory . '/' . $filename;
$contents = ob_get_contents();
ob_end_clean();
}
return $contents;
$this->baseurl = Uri::base(true);
$this->params = $params['params'] ?? new Registry();
$this->template = $template;
// Load
$this->_template = $this->_loadTemplate($baseDir, $file);
return $this;
}
/**
*
* @since 1.7.0
*/
public function parse($params = [])
{
return $this->_fetchTemplate($params)->_parseTemplate();
}
/**
* Outputs the template to the browser.
*
public function render($caching = false, $params = [])
{
$this->_caching = $caching;
if (empty($this->_template)) {
$this->parse($params);
}
if (\array_key_exists('csp_nonce', $params) && $params['csp_nonce'] !== null) {
$this->cspNonce = $params['csp_nonce'];
}
$this->debug = $params['debug'] ?? false;
$this->error = $this->_error;
$params['file'] = 'error.php';
return parent::render($cache, $params);
}
/**
* Render the backtrace
*
ob_end_clean();
}
$this->getDocument()->setTitle(Text::_('Error') . ': ' . $error->getCode());
return $this->getDocument()->render(
false,
[
'template' => $template->template,
'directory' => JPATH_THEMES,
'debug' => JDEBUG,
// Reset the document object in the factory, this gives us a clean slate and lets everything render properly
Factory::$document = $renderer->getDocument();
Factory::getApplication()->loadDocument(Factory::$document);
$data = $renderer->render($error);
// If nothing was rendered, just use the message from the Exception
if (empty($data)) {
$data = $error->getMessage();
}
* @since 3.10.0
*/
public static function handleException(\Throwable $error)
{
static::logException($error);
static::render($error);
}
/**
* Render the error page based on an exception.
*
);
// Trigger the onError event.
$this->triggerEvent('onError', $event);
ExceptionHandler::handleException($event->getError());
}
// Trigger the onBeforeRespond event.
$this->getDispatcher()->dispatch('onBeforeRespond');
// Set the application as global app
\Joomla\CMS\Factory::$application = $app;
// Execute the application.
$app->execute();
* define() is used rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Run the application - All executable code should be triggered through this file
require_once dirname(__FILE__) . '/includes/app.php';
throw new \RuntimeException('Failed to start the session: already started by PHP.');
}
if (ini_get('session.use_cookies') && headers_sent($file, $line))
{
throw new \RuntimeException(
sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.', $file, $line)
);
}
if (!session_start())
$this->setId($session_clean);
$cookie->set($session_name, '', time() - 3600);
}
}
parent::start();
// Try loading data from the session
if (isset($_SESSION['joomla']) && !empty($_SESSION['joomla'])) {
$this->data = unserialize(base64_decode($_SESSION['joomla']));
}
if ($this->isStarted())
{
return;
}
$this->store->start();
$this->setState(SessionState::ACTIVE);
// Initialise the session
$this->setCounter();
*/
public function has($name)
{
if (!$this->isActive())
{
$this->start();
}
return $this->store->has($name);
}
$name = $args[2] . '.' . $name;
}
}
if (parent::has($name)) {
// Parent is used because of b/c, can be changed in Joomla 5
return parent::get($name, $default);
}
/*
__CLASS__
),
E_USER_DEPRECATED
);
$instance = self::getApplication()->getSession()->get('user');
if (\is_null($id)) {
if (!($instance instanceof User)) {
$instance = User::getInstance();
}
*
* @since 3.2
*/
protected function initialiseApp($options = [])
{
$user = Factory::getUser();
// If the user is a guest we populate it with the guest user group.
if ($user->guest) {
$guestUsergroup = ComponentHelper::getParams('com_users')->get('guest_usergroup', 1);
$user->groups = [$guestUsergroup];
* @since 3.2
*/
protected function doExecute()
{
// Initialise the application
$this->initialiseApp();
// Mark afterInitialise in the profiler.
JDEBUG ? $this->profiler->mark('afterInitialise') : null;
// Route the application
$this->sanityCheckSystemVariables();
$this->setupLogging();
$this->createExtensionNamespaceMap();
// Perform application routines.
$this->doExecute();
// If we have an application document object, render it.
if ($this->document instanceof \Joomla\CMS\Document\Document) {
// Render the application output.
$this->render();
// Set the application as global app
\Joomla\CMS\Factory::$application = $app;
// Execute the application.
$app->execute();
* define() is used rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Run the application - All executable code should be triggered through this file
require_once dirname(__FILE__) . '/includes/app.php';
[2/2]
Error
|
---|
Error: Call to a member function getTag() on null at /hp/bq/ac/ci/www/libraries/src/WebAsset/AssetItem/LangActiveAssetItem.php:48 at Joomla\CMS\WebAsset\AssetItem\LangActiveAssetItem->__construct('template.active.language', '', array('description' => 'An asset to allow language specific css, eg \'language/[lang-CODE]/[lang-CODE].css\', to use it as a dependency to the active template', 'type' => 'style', 'class' => 'LangActiveAssetItem', 'dependencies' => array('template.active'), 'assetSource' => array('registryFile' => 'templates/cassiopeia/joomla.asset.json')), array(), array()) (/hp/bq/ac/ci/www/libraries/src/WebAsset/WebAssetRegistry.php:247) at Joomla\CMS\WebAsset\WebAssetRegistry->createAsset('template.active.language', '', array('description' => 'An asset to allow language specific css, eg \'language/[lang-CODE]/[lang-CODE].css\', to use it as a dependency to the active template', 'type' => 'style', 'class' => 'LangActiveAssetItem', 'dependencies' => array('template.active'), 'assetSource' => array('registryFile' => 'templates/cassiopeia/joomla.asset.json'))) (/hp/bq/ac/ci/www/libraries/src/WebAsset/WebAssetRegistry.php:419) at Joomla\CMS\WebAsset\WebAssetRegistry->parseRegistryFile('templates/cassiopeia/joomla.asset.json') (/hp/bq/ac/ci/www/libraries/src/WebAsset/WebAssetRegistry.php:351) at Joomla\CMS\WebAsset\WebAssetRegistry->parseRegistryFiles() (/hp/bq/ac/ci/www/libraries/src/WebAsset/WebAssetRegistry.php:159) at Joomla\CMS\WebAsset\WebAssetRegistry->add('style', object(WebAssetItem)) (/hp/bq/ac/ci/www/libraries/src/WebAsset/WebAssetManager.php:508) at Joomla\CMS\WebAsset\WebAssetManager->registerAsset('style', 'theme.colors_standard', 'media/templates/site/cassiopeia/css/global/colors_standard.css') (/hp/bq/ac/ci/www/libraries/src/WebAsset/WebAssetManager.php:234) at Joomla\CMS\WebAsset\WebAssetManager->__call('registerandusestyle', array('theme.colors_standard', 'media/templates/site/cassiopeia/css/global/colors_standard.css')) (/hp/bq/ac/ci/www/templates/cassiopeia/error.php:40) at require('/hp/bq/ac/ci/www/templates/cassiopeia/error.php') (/hp/bq/ac/ci/www/libraries/src/Document/HtmlDocument.php:721) at Joomla\CMS\Document\HtmlDocument->_loadTemplate('/hp/bq/ac/ci/www/templates/cassiopeia', 'error.php') (/hp/bq/ac/ci/www/libraries/src/Document/HtmlDocument.php:776) at Joomla\CMS\Document\HtmlDocument->_fetchTemplate(array('template' => 'cassiopeia', 'directory' => '/hp/bq/ac/ci/www/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/hp/bq/ac/ci/www/libraries/src/Document/HtmlDocument.php:612) at Joomla\CMS\Document\HtmlDocument->parse(array('template' => 'cassiopeia', 'directory' => '/hp/bq/ac/ci/www/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/hp/bq/ac/ci/www/libraries/src/Document/HtmlDocument.php:630) at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'cassiopeia', 'directory' => '/hp/bq/ac/ci/www/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/hp/bq/ac/ci/www/libraries/src/Document/ErrorDocument.php:139) at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'cassiopeia', 'directory' => '/hp/bq/ac/ci/www/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/hp/bq/ac/ci/www/libraries/src/Error/Renderer/HtmlRenderer.php:70) at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(RuntimeException)) (/hp/bq/ac/ci/www/libraries/src/Exception/ExceptionHandler.php:126) at Joomla\CMS\Exception\ExceptionHandler::render(object(RuntimeException)) (/hp/bq/ac/ci/www/libraries/src/Exception/ExceptionHandler.php:72) at Joomla\CMS\Exception\ExceptionHandler::handleException(object(RuntimeException)) (/hp/bq/ac/ci/www/libraries/src/Application/CMSApplication.php:322) at Joomla\CMS\Application\CMSApplication->execute() (/hp/bq/ac/ci/www/includes/app.php:61) at require_once('/hp/bq/ac/ci/www/includes/app.php') (/hp/bq/ac/ci/www/index.php:32) |
[1/2]
RuntimeException
|
---|
RuntimeException: Failed to start the session because headers have already been sent by "/hp/bq/ac/ci/www/libraries/vendor/joomla/database/src/Mysql/MysqlDriver.php" at line 121. at /hp/bq/ac/ci/www/libraries/vendor/joomla/session/src/Storage/NativeStorage.php:473 at Joomla\Session\Storage\NativeStorage->start() (/hp/bq/ac/ci/www/libraries/src/Session/Storage/JoomlaStorage.php:295) at Joomla\CMS\Session\Storage\JoomlaStorage->start() (/hp/bq/ac/ci/www/libraries/vendor/joomla/session/src/Session.php:406) at Joomla\Session\Session->start() (/hp/bq/ac/ci/www/libraries/vendor/joomla/session/src/Session.php:333) at Joomla\Session\Session->has('user') (/hp/bq/ac/ci/www/libraries/src/Session/Session.php:194) at Joomla\CMS\Session\Session->get('user') (/hp/bq/ac/ci/www/libraries/src/Factory.php:372) at Joomla\CMS\Factory::getUser() (/hp/bq/ac/ci/www/libraries/src/Application/SiteApplication.php:562) at Joomla\CMS\Application\SiteApplication->initialiseApp() (/hp/bq/ac/ci/www/libraries/src/Application/SiteApplication.php:226) at Joomla\CMS\Application\SiteApplication->doExecute() (/hp/bq/ac/ci/www/libraries/src/Application/CMSApplication.php:293) at Joomla\CMS\Application\CMSApplication->execute() (/hp/bq/ac/ci/www/includes/app.php:61) at require_once('/hp/bq/ac/ci/www/includes/app.php') (/hp/bq/ac/ci/www/index.php:32) |