{
// Check if any new file was added
$this->parseRegistryFiles();
if (empty($this->assets[$type][$name])) {
throw new UnknownAssetException(sprintf('There is no "%s" asset of a "%s" type in the registry.', $name, $type));
}
return $this->assets[$type][$name];
}
if ($this->locked) {
throw new InvalidActionException('WebAssetManager is locked, you came late');
}
// Check whether asset exists
$asset = $this->registry->get($type, $name);
if (empty($this->activeAssets[$type])) {
$this->activeAssets[$type] = [];
}
if (empty($arguments[0])) {
throw new \BadMethodCallException('An asset name is required');
}
return $this->useAsset($type, $arguments[0]);
}
if (0 === strpos($method, 'addinline')) {
$type = substr($method, 9);
$this->getPreloadManager()->preload($wa->getAsset('style', 'fontscheme.current')->getUri() . '?' . $this->getMediaVersion(), ['as' => 'style']);
}
}
// Enable assets
$wa->usePreset('template.cassiopeia.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr'))
->useStyle('template.active.language')
->useStyle('template.user')
->useScript('template.user')
->addInlineStyle(":root {
--hue: 214;
// 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
*
'template' => $template->template,
'directory' => JPATH_THEMES,
'debug' => JDEBUG,
'csp_nonce' => $app->get('csp_nonce'),
'templateInherits' => $template->parent,
'params' => $template->params,
]
);
}
}
// 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';
}
public static function initLoadJoomshoppingLanguageFile(){
static $load;
if (!\JFactory::getApplication()->input->getInt('no_lang') && !$load){
\JSFactory::loadLanguageFile();
$load = 1;
}
}
public static function reloadPriceJoomshoppingNewCurrency($back = ''){
return $segments;
}
function parse(&$segments){
$vars = array();
\JSHelper::initLoadJoomshoppingLanguageFile();
$reservedFirstAlias = \JSFactory::getReservedFirstAlias();
$menu = \JFactory::getApplication()->getMenu();
$menuItem = $menu->getActive();
if (!isset($menuItem) || !isset($menuItem->query)) {
$miquery = [];
if (\count($segments)) {
// Handle component route
$component = preg_replace('/[^A-Z0-9_\.-]/i', '', $uri->getVar('option'));
$crouter = $this->getComponentRouter($component);
$uri->setQuery(array_merge($uri->getQuery(true), $crouter->parse($segments)));
}
$route = implode('/', $segments);
}
if (!\array_key_exists('parse' . $stage, $this->rules)) {
throw new \InvalidArgumentException(sprintf('The %s stage is not registered. (%s)', $stage, __METHOD__));
}
foreach ($this->rules['parse' . $stage] as $rule) {
$rule($this, $uri);
}
}
/**
* Process the build uri query data based on custom defined rules
{
// Do the preprocess stage of the URL parse process
$this->processParseRules($uri, self::PROCESS_BEFORE);
// Do the main stage of the URL parse process
$this->processParseRules($uri);
// Do the postprocess stage of the URL parse process
$this->processParseRules($uri, self::PROCESS_AFTER);
// Check if all parts of the URL have been parsed.
// Get the full request URI.
$uri = clone Uri::getInstance();
// It is not possible to inject the SiteRouter as it requires a SiteApplication
// and we would end in an infinite loop
$result = $this->getContainer()->get(SiteRouter::class)->parse($uri, true);
$active = $this->getMenu()->getActive();
if (
$active !== null
// Mark afterInitialise in the profiler.
JDEBUG ? $this->profiler->mark('afterInitialise') : null;
// Route the application
$this->route();
// Mark afterRoute in the profiler.
JDEBUG ? $this->profiler->mark('afterRoute') : null;
if (!$this->isHandlingMultiFactorAuthentication()) {
$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]
UnknownAssetException
|
---|
Joomla\CMS\WebAsset\Exception\UnknownAssetException: There is no "template.cassiopeia.ltr" asset of a "preset" type in the registry. at /home/host1475397/vtormaster.ru/htdocs/www/libraries/src/WebAsset/WebAssetRegistry.php:134 at Joomla\CMS\WebAsset\WebAssetRegistry->get('preset', 'template.cassiopeia.ltr') (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/WebAsset/WebAssetManager.php:263) at Joomla\CMS\WebAsset\WebAssetManager->useAsset('preset', 'template.cassiopeia.ltr') (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/WebAsset/WebAssetManager.php:197) at Joomla\CMS\WebAsset\WebAssetManager->__call('usepreset', array('template.cassiopeia.ltr')) (/home/host1475397/vtormaster.ru/htdocs/www/templates/vtormaster/error.php:74) at require('/home/host1475397/vtormaster.ru/htdocs/www/templates/vtormaster/error.php') (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Document/HtmlDocument.php:736) at Joomla\CMS\Document\HtmlDocument->_loadTemplate('/home/host1475397/vtormaster.ru/htdocs/www/templates/vtormaster', 'error.php') (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Document/HtmlDocument.php:791) at Joomla\CMS\Document\HtmlDocument->_fetchTemplate(array('template' => 'vtormaster', 'directory' => '/home/host1475397/vtormaster.ru/htdocs/www/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Document/HtmlDocument.php:608) at Joomla\CMS\Document\HtmlDocument->parse(array('template' => 'vtormaster', 'directory' => '/home/host1475397/vtormaster.ru/htdocs/www/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Document/HtmlDocument.php:626) at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'vtormaster', 'directory' => '/home/host1475397/vtormaster.ru/htdocs/www/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Document/ErrorDocument.php:139) at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'vtormaster', 'directory' => '/home/host1475397/vtormaster.ru/htdocs/www/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Error/Renderer/HtmlRenderer.php:78) at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(Error)) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Exception/ExceptionHandler.php:121) at Joomla\CMS\Exception\ExceptionHandler::render(object(Error)) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Exception/ExceptionHandler.php:72) at Joomla\CMS\Exception\ExceptionHandler::handleException(object(Error)) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Application/CMSApplication.php:323) at Joomla\CMS\Application\CMSApplication->execute() (/home/host1475397/vtormaster.ru/htdocs/www/includes/app.php:61) at require_once('/home/host1475397/vtormaster.ru/htdocs/www/includes/app.php') (/home/host1475397/vtormaster.ru/htdocs/www/index.php:32) |
[1/2]
Error
|
---|
Error: Class "JSFactory" not found at /home/host1475397/vtormaster.ru/htdocs/www/components/com_jshopping/Helper/Helper.php:1560 at Joomla\Component\Jshopping\Site\Helper\Helper::initLoadJoomshoppingLanguageFile() (/home/host1475397/vtormaster.ru/htdocs/www/components/com_jshopping/Service/Router.php:180) at Joomla\Component\Jshopping\Site\Service\Router->parse(array('vedro-polipropilenovoe-30-litrov-b-u')) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Router/SiteRouter.php:287) at Joomla\CMS\Router\SiteRouter->parseSefRoute(object(SiteRouter), object(Uri)) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Router/Router.php:382) at Joomla\CMS\Router\Router->processParseRules(object(Uri)) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Router/Router.php:145) at Joomla\CMS\Router\Router->parse(object(Uri), true) (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Application/SiteApplication.php:736) at Joomla\CMS\Application\SiteApplication->route() (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Application/SiteApplication.php:224) at Joomla\CMS\Application\SiteApplication->doExecute() (/home/host1475397/vtormaster.ru/htdocs/www/libraries/src/Application/CMSApplication.php:294) at Joomla\CMS\Application\CMSApplication->execute() (/home/host1475397/vtormaster.ru/htdocs/www/includes/app.php:61) at require_once('/home/host1475397/vtormaster.ru/htdocs/www/includes/app.php') (/home/host1475397/vtormaster.ru/htdocs/www/index.php:32) |