Error ClassNotFoundError

HTTP 500 Whoops, looks like something went wrong.

Attempted to load class "JRequest" from the global namespace.
Did you forget a "use" statement?

Exceptions 2

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1.      * Function to test whether we are in an article view.
  2.      *
  3.      * returns boolean True if current view is an article
  4.      */
  5.     public static function isArticle() {
  6.         $option JRequest::getCmd('option');
  7.         $view JRequest::getCmd('view');
  8.         $id    JRequest::getInt('id');
  9.         // return True if this is an article
  10.         return ($option == 'com_content' && $view == 'article' && $id);
  11.     }
modFJRelatedPlusHelper::isArticle() in /home/prvaetap/public_html/modules/mod_fj_related_plus/helper.php (line 32)
  1.     public static function getList($params)
  2.     {
  3.         $includeMenuTypes $params->get('fj_menu_item_types''article');
  4.         // only do this if this is an article or if we are showing this module for any menu item type
  5.         if (self::isArticle() || ($includeMenuTypes == 'any')) //only show for article pages
  6.         {
  7.             $db    JFactory::getDBO();
  8.             $user JFactory::getUser();
  9.             $userGroups implode(','$user->getAuthorisedViewLevels());
  1. defined('_JEXEC') or die;
  2. // Include the syndicate functions only once
  3. require_once (dirname(__FILE__) . '/helper.php');
  4. $list modFJRelatedPlusHelper::getList($params); // get return results from the helper
  5. $articleView modFJRelatedPlusHelper::isArticle(); // is this an article?
  6. $subtitle '';
  7. if (!count($list)) {  // no articles to list. check whether we want to show some text
include('/home/prvaetap/public_html/modules/mod_fj_related_plus/mod_fj_related_plus.php') in /home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php (line 52)
  1.                 unset($displayData);
  2.             } else {
  3.                 extract($displayData);
  4.             }
  5.             include $path;
  6.         };
  7.         $loader($path$this->getLayoutData());
  8.     }
  9. }
ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}() in /home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php (line 55)
  1.             }
  2.             include $path;
  3.         };
  4.         $loader($path$this->getLayoutData());
  5.     }
  6. }
  1.         $dispatcher $app->bootModule($module->module$app->getName())->getDispatcher($module$app);
  2.         // Check if we have a dispatcher
  3.         if ($dispatcher) {
  4.             ob_start();
  5.             $dispatcher->dispatch();
  6.             $module->content ob_get_clean();
  7.         }
  8.         // Add the flag that the module content has been rendered
  9.         $module->contentRendered true;
ModuleHelper::renderRawModule() in /home/prvaetap/public_html/libraries/src/Helper/ModuleHelper.php (line 162)
  1.         // Get module parameters
  2.         $params = new Registry($module->params);
  3.         // Render the module content
  4.         static::renderRawModule($module$params$attribs);
  5.         // Return early if only the content is required
  6.         if (!empty($attribs['contentOnly'])) {
  7.             return $module->content;
  8.         }
  1.             $module->contentRendered true;
  2.             return $module->content;
  3.         }
  4.         return ModuleHelper::renderModule($module$attribs);
  5.     }
  6. }
  1.                 return '';
  2.             }
  3.             $renderer $document->loadRenderer('module');
  4.             $html trim($renderer->render($module$attribs));
  5.         } else {
  6.             $html trim($module->content);
  7.         }
  8.         // Add frontend editing feature as it has only been defined for module positions.
  1.             return '';
  2.         }
  3.         $html '';
  4.         foreach (ModuleHelper::getModules($position) as $module) {
  5.             $html .= $this->displayModule($module$attribs);
  6.         }
  7.         return $html;
  8.     }
  1.         // to call is not supported. If ignoreStrictCheck is true, we should return null.
  2.         try {
  3.             if (!$arguments) {
  4.                 $ret $object->$method();
  5.             } else {
  6.                 $ret \call_user_func_array([$object$method], $arguments);
  7.             }
  8.         } catch (\BadMethodCallException $e) {
  9.             if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
  10.                 return;
  11.             }
  1.     // line 3
  2.     public function block_particle($context, array $blocks = [])
  3.     {
  4.         // line 4
  5.         echo "    ";
  6.         echo $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "platform", []), "displayModules", [=> $this->getAttribute(($context["particle"] ?? null), "key", []), => ["style" => (($this->getAttribute(($context["particle"] ?? null), "chrome", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["particle"] ?? null), "chrome", []), "gantry")) : ("gantry"))]], "method");
  7.         echo "
  8. ";
  9.     }
  10.     public function getTemplateName()
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         echo "    ";
  2.         $this->displayBlock('javascript_footer'$context$blocks);
  3.         $content ob_get_clean();
  4.         $assetFunction($content$location$priority);
  5.         // line 14
  6.         $this->displayBlock('particle'$context$blocks);
  7.     }
  8.     // line 2
  9.     public function block_stylesheets($context, array $blocks = [])
  10.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("@nucleus/partials/particle.html.twig""@particles/position.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_particle($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             echo "        ";
  2.             if ((($context["enabled"] ?? null) && ((null === $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])) || $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])))) {
  3.                 // line 9
  4.                 echo "            ";
  5.                 $this->loadTemplate([=> (("particles/" . (($this->getAttribute(($context["segment"] ?? null), "subtype", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["segment"] ?? null), "subtype", []), "position")) : ("position"))) . ".html.twig"), => (("@particles/" . (($this->getAttribute(                // line 10
  6. ($context["segment"] ?? null), "subtype", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["segment"] ?? null), "subtype", []), "position")) : ("position"))) . ".html.twig")], "@nucleus/content/position.html.twig"9)->display($context);
  7.                 // line 11
  8.                 echo "        ";
  9.             }
  10.             // line 12
  11.             echo "    ";
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.                     echo "
  2.             ";
  3.                 } else {
  4.                     // line 13
  5.                     echo "                ";
  6.                     $this->loadTemplate([=> (("@nucleus/content/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), => (("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig")], "@nucleus/layout/block.html.twig"13)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                     // line 14
  8.                     echo "            ";
  9.                 }
  10.                 // line 15
  11.                 echo "        ";
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.                 $context['loop']['last'] = === $length;
  2.             }
  3.             foreach ($context['_seq'] as $context["_key"] => $context["segment"]) {
  4.                 // line 7
  5.                 echo "            ";
  6.                 $this->loadTemplate((("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), "@nucleus/layout/grid.html.twig"7)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                 // line 8
  8.                 echo "        ";
  9.                 ++$context['loop']['index0'];
  10.                 ++$context['loop']['index'];
  11.                 $context['loop']['first'] = false;
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.                 $context['loop']['last'] = === $length;
  2.             }
  3.             foreach ($context['_seq'] as $context["_key"] => $context["segment"]) {
  4.                 // line 14
  5.                 echo "            ";
  6.                 $this->loadTemplate((("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), "@nucleus/layout/section.html.twig"14)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                 // line 15
  8.                 echo "        ";
  9.                 ++$context['loop']['index0'];
  10.                 ++$context['loop']['index'];
  11.                 $context['loop']['first'] = false;
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.                     echo "
  2.             ";
  3.                 } else {
  4.                     // line 13
  5.                     echo "                ";
  6.                     $this->loadTemplate([=> (("@nucleus/content/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), => (("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig")], "@nucleus/layout/block.html.twig"13)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                     // line 14
  8.                     echo "            ";
  9.                 }
  10.                 // line 15
  11.                 echo "        ";
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.                 $context['loop']['last'] = === $length;
  2.             }
  3.             foreach ($context['_seq'] as $context["_key"] => $context["segment"]) {
  4.                 // line 7
  5.                 echo "            ";
  6.                 $this->loadTemplate((("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), "@nucleus/layout/grid.html.twig"7)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                 // line 8
  8.                 echo "        ";
  9.                 ++$context['loop']['index0'];
  10.                 ++$context['loop']['index'];
  11.                 $context['loop']['first'] = false;
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             $context['loop']['last'] = === $length;
  2.         }
  3.         foreach ($context['_seq'] as $context["_key"] => $context["segment"]) {
  4.             // line 3
  5.             echo "        ";
  6.             $this->loadTemplate((("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), "@nucleus/layout/container.html.twig"3)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.             // line 4
  8.             echo "    ";
  9.             ++$context['loop']['index0'];
  10.             ++$context['loop']['index'];
  11.             $context['loop']['first'] = false;
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.                     echo "
  2.             ";
  3.                 } else {
  4.                     // line 13
  5.                     echo "                ";
  6.                     $this->loadTemplate([=> (("@nucleus/content/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), => (("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig")], "@nucleus/layout/block.html.twig"13)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                     // line 14
  8.                     echo "            ";
  9.                 }
  10.                 // line 15
  11.                 echo "        ";
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.                 $context['loop']['last'] = === $length;
  2.             }
  3.             foreach ($context['_seq'] as $context["_key"] => $context["segment"]) {
  4.                 // line 7
  5.                 echo "            ";
  6.                 $this->loadTemplate((("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), "@nucleus/layout/grid.html.twig"7)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                 // line 8
  8.                 echo "        ";
  9.                 ++$context['loop']['index0'];
  10.                 ++$context['loop']['index'];
  11.                 $context['loop']['first'] = false;
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             $context['loop']['last'] = === $length;
  2.         }
  3.         foreach ($context['_seq'] as $context["_key"] => $context["segment"]) {
  4.             // line 3
  5.             echo "        ";
  6.             $this->loadTemplate((("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), "@nucleus/layout/container.html.twig"3)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.             // line 4
  8.             echo "    ";
  9.             ++$context['loop']['index0'];
  10.             ++$context['loop']['index'];
  11.             $context['loop']['first'] = false;
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             // line 34
  2.             echo "        ";
  3.             if (($this->getAttribute($context["segment"], "type", []) != "offcanvas")) {
  4.                 // line 35
  5.                 echo "            ";
  6.                 $this->loadTemplate((("@nucleus/layout/" $this->getAttribute($context["segment"], "type", [])) . ".html.twig"), "@nucleus/page.html.twig"35)->display(twig_array_merge($context, ["segments" => $this->getAttribute($context["segment"], "children", [])]));
  7.                 // line 36
  8.                 echo "        ";
  9.             }
  10.             // line 37
  11.             echo "    ";
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         $context["offcanvas_position"] = ((($context["page_offcanvas"] ?? null)) ? ((($this->getAttribute($this->getAttribute(($context["offcanvas"] ?? null), "attributes", [], "any"falsetrue), "position", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute($this->getAttribute(($context["offcanvas"] ?? null), "attributes", [], "any"falsetrue), "position", []), "g-offcanvas-left")) : ("g-offcanvas-left"))) : (""));
  2.         // line 31
  3.         ob_start(function () { return ''; });
  4.         // line 32
  5.         echo "    ";
  6.         $this->displayBlock('page_layout'$context$blocks);
  7.         $context["page_layout"] = ('' === $tmp ob_get_clean()) ? '' : new Markup($tmp$this->env->getCharset());
  8.         // line 41
  9.         ob_start(function () { return ''; });
  10.         // line 42
  11.         echo "    ";
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("@nucleus/page.html.twig""partials/page.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_page_footer($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("partials/page.html.twig""error.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_page_head($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Exception $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render($context = [])
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_num_args() > func_get_arg(1) : []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     public function render($file, array $context = [])
  2.     {
  3.         // Include Gantry specific things to the context.
  4.         $context $this->getContext($context);
  5.         return $this->renderer()->render($file$context);
  6.     }
  7.     /**
  8.      * Compile and render twig string.
  9.      *
  1. unset($gantry['configuration']);
  2. // Render the page.
  3. echo $theme
  4.     ->setLayout('_error'true)
  5.     ->render('error.html.twig'$context);
require('/home/prvaetap/public_html/templates/rt_zenith/error.php') in /home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php (line 731)
  1.             // Store the file path
  2.             $this->_file $directory '/' $filename;
  3.             // Get the file content
  4.             ob_start();
  5.             require $directory '/' $filename;
  6.             $contents ob_get_clean();
  7.         }
  8.         return $contents;
  9.     }
  1.         $this->baseurl  Uri::base(true);
  2.         $this->params   $params['params'] ?? new Registry();
  3.         $this->template $template;
  4.         // Load
  5.         $this->_template $this->_loadTemplate($baseDir$file);
  6.         return $this;
  7.     }
  8.     /**
  1.      *
  2.      * @since   1.7.0
  3.      */
  4.     public function parse($params = [])
  5.     {
  6.         return $this->_fetchTemplate($params)->_parseTemplate();
  7.     }
  8.     /**
  9.      * Outputs the template to the browser.
  10.      *
  1.     public function render($caching false$params = [])
  2.     {
  3.         $this->_caching $caching;
  4.         if (empty($this->_template)) {
  5.             $this->parse($params);
  6.         }
  7.         if (\array_key_exists('csp_nonce'$params) && $params['csp_nonce'] !== null) {
  8.             $this->cspNonce $params['csp_nonce'];
  9.         }
  1.         $this->debug $params['debug'] ?? false;
  2.         $this->error $this->_error;
  3.         $params['file'] = 'error.php';
  4.         return parent::render($cache$params);
  5.     }
  6.     /**
  7.      * Render the backtrace
  8.      *
  1.             ob_end_clean();
  2.         }
  3.         $this->getDocument()->setTitle(Text::_('Error') . ': ' $error->getCode());
  4.         return $this->getDocument()->render(
  5.             false,
  6.             [
  7.                 'template'         => $template->template,
  8.                 'directory'        => JPATH_THEMES,
  9.                 'debug'            => JDEBUG,
  1.                     'subject'  => $app,
  2.                     'document' => $renderer->getDocument(),
  3.                 ])
  4.             );
  5.             $data $renderer->render($error);
  6.             // If nothing was rendered, just use the message from the Exception
  7.             if (empty($data)) {
  8.                 $data $error->getMessage();
  9.             }
  1.      * @since   3.10.0
  2.      */
  3.     public static function handleException(\Throwable $error)
  4.     {
  5.         static::logException($error);
  6.         static::render($error);
  7.     }
  8.     /**
  9.      * Render the error page based on an exception.
  10.      *
ExceptionHandler::handleException() in /home/prvaetap/public_html/libraries/src/Application/CMSApplication.php (line 336)
  1.             );
  2.             // Trigger the onError event.
  3.             $this->dispatchEvent('onError'$event);
  4.             ExceptionHandler::handleException($event->getError());
  5.         }
  6.         // Trigger the onBeforeRespond event.
  7.         $this->dispatchEvent(
  8.             'onBeforeRespond',
CMSApplication->execute() in /home/prvaetap/public_html/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/home/prvaetap/public_html/includes/app.php') in /home/prvaetap/public_html/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Error

Failed opening required '/home/prvaetap/public_html/components/com_content/helpers/route.php' (include_path='.:/opt/alt/php82/usr/share/pear:/opt/alt/php82/usr/share/php:/usr/share/pear:/usr/share/php')

  1.  */
  2. // no direct access
  3. defined('_JEXEC') or die('Restricted access');
  4. require_once (JPATH_SITE .'/components/com_content/helpers/route.php');
  5. class modFJRelatedPlusHelper
  6. {
  7.     /**
  8.      * The keywords from the Main Article
  1. // no direct access
  2. defined('_JEXEC') or die;
  3. // Include the syndicate functions only once
  4. require_once (dirname(__FILE__) . '/helper.php');
  5. $list modFJRelatedPlusHelper::getList($params); // get return results from the helper
  6. $articleView modFJRelatedPlusHelper::isArticle(); // is this an article?
  7. $subtitle '';
include('/home/prvaetap/public_html/modules/mod_fj_related_plus/mod_fj_related_plus.php') in /home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php (line 52)
  1.                 unset($displayData);
  2.             } else {
  3.                 extract($displayData);
  4.             }
  5.             include $path;
  6.         };
  7.         $loader($path$this->getLayoutData());
  8.     }
  9. }
ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}() in /home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php (line 55)
  1.             }
  2.             include $path;
  3.         };
  4.         $loader($path$this->getLayoutData());
  5.     }
  6. }
  1.         $dispatcher $app->bootModule($module->module$app->getName())->getDispatcher($module$app);
  2.         // Check if we have a dispatcher
  3.         if ($dispatcher) {
  4.             ob_start();
  5.             $dispatcher->dispatch();
  6.             $module->content ob_get_clean();
  7.         }
  8.         // Add the flag that the module content has been rendered
  9.         $module->contentRendered true;
ModuleHelper::renderRawModule() in /home/prvaetap/public_html/libraries/src/Helper/ModuleHelper.php (line 162)
  1.         // Get module parameters
  2.         $params = new Registry($module->params);
  3.         // Render the module content
  4.         static::renderRawModule($module$params$attribs);
  5.         // Return early if only the content is required
  6.         if (!empty($attribs['contentOnly'])) {
  7.             return $module->content;
  8.         }
  1.             $module->contentRendered true;
  2.             return $module->content;
  3.         }
  4.         return ModuleHelper::renderModule($module$attribs);
  5.     }
  6. }
  1.                 return '';
  2.             }
  3.             $renderer $document->loadRenderer('module');
  4.             $html trim($renderer->render($module$attribs));
  5.         } else {
  6.             $html trim($module->content);
  7.         }
  8.         // Add frontend editing feature as it has only been defined for module positions.
  1.             return '';
  2.         }
  3.         $html '';
  4.         foreach (ModuleHelper::getModules($position) as $module) {
  5.             $html .= $this->displayModule($module$attribs);
  6.         }
  7.         return $html;
  8.     }
  1.         // to call is not supported. If ignoreStrictCheck is true, we should return null.
  2.         try {
  3.             if (!$arguments) {
  4.                 $ret $object->$method();
  5.             } else {
  6.                 $ret \call_user_func_array([$object$method], $arguments);
  7.             }
  8.         } catch (\BadMethodCallException $e) {
  9.             if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
  10.                 return;
  11.             }
  1.     // line 3
  2.     public function block_particle($context, array $blocks = [])
  3.     {
  4.         // line 4
  5.         echo "    ";
  6.         echo $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "platform", []), "displayModules", [=> $this->getAttribute(($context["particle"] ?? null), "key", []), => ["style" => (($this->getAttribute(($context["particle"] ?? null), "chrome", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["particle"] ?? null), "chrome", []), "gantry")) : ("gantry"))]], "method");
  7.         echo "
  8. ";
  9.     }
  10.     public function getTemplateName()
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         echo "    ";
  2.         $this->displayBlock('javascript_footer'$context$blocks);
  3.         $content ob_get_clean();
  4.         $assetFunction($content$location$priority);
  5.         // line 14
  6.         $this->displayBlock('particle'$context$blocks);
  7.     }
  8.     // line 2
  9.     public function block_stylesheets($context, array $blocks = [])
  10.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("@nucleus/partials/particle.html.twig""@particles/position.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_particle($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             echo "        ";
  2.             if ((($context["enabled"] ?? null) && ((null === $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])) || $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])))) {
  3.                 // line 9
  4.                 echo "            ";
  5.                 $this->loadTemplate([=> (("particles/" . (($this->getAttribute(($context["segment"] ?? null), "subtype", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["segment"] ?? null), "subtype", []), "position")) : ("position"))) . ".html.twig"), => (("@particles/" . (($this->getAttribute(                // line 10
  6. ($context["segment"] ?? null), "subtype", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["segment"] ?? null), "subtype", []), "position")) : ("position"))) . ".html.twig")], "@nucleus/content/position.html.twig"9)->display($context);
  7.                 // line 11
  8.                 echo "        ";
  9.             }
  10.             // line 12
  11.             echo "    ";
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Exception $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render($context = [])
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_num_args() > func_get_arg(1) : []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     public function render($file, array $context = [])
  2.     {
  3.         // Include Gantry specific things to the context.
  4.         $context $this->getContext($context);
  5.         return $this->renderer()->render($file$context);
  6.     }
  7.     /**
  8.      * Compile and render twig string.
  9.      *
  1.         $context $this->getContext(['segment' => $item'enabled' => 1'particle' => $particle] + $options);
  2.         /** @var Document $document */
  3.         $document $gantry['document'];
  4.         $document::push();
  5.         $html trim($this->render("@nucleus/content/{$item->type}.html.twig"$context));
  6.         $content $document::pop()->setContent($html);
  7.         if (isset($file)) {
  8.             // Save HTML and assets into the cache.
  9.             if (\GANTRY_DEBUGGER) {
  1.      */
  2.     public function renderContent($item$options = [])
  3.     {
  4.         $gantry = static::gantry();
  5.         $content $this->getContent($item$options);
  6.         /** @var Document $document */
  7.         $document $gantry['document'];
  8.         $document->addBlock($content);
  1.                 case 'spacer':
  2.                     if (\GANTRY_DEBUGGER) {
  3.                         Debugger::startTimer($item->id"Rendering {$item->id}");
  4.                     }
  5.                     $item->content $this->renderContent($item, ['prepare_layout' => true]);
  6.                     // Note that content can also be null (postpone rendering).
  7.                     if ($item->content === '') {
  8.                         unset($items[$i]);
  9.                     }
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.             if (\GANTRY_DEBUGGER) {
  2.                 Debugger::startTimer('segments''Preparing layout');
  3.             }
  4.             $this->prepareLayout($this->segments);
  5.             if (\GANTRY_DEBUGGER) {
  6.                 Debugger::stopTimer('segments');
  7.             }
  8.         }
  1.         // Some objects throw exceptions when they have __call, and the method we try
  2.         // to call is not supported. If ignoreStrictCheck is true, we should return null.
  3.         try {
  4.             if (!$arguments) {
  5.                 $ret $object->$method();
  6.             } else {
  7.                 $ret \call_user_func_array([$object$method], $arguments);
  8.             }
  9.         } catch (\BadMethodCallException $e) {
  10.             if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
  1.         // line 2
  2.         $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "setLayout", [], "method");
  3.         // line 3
  4.         $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "loadAtoms", [], "method");
  5.         // line 4
  6.         $context["segments"] = $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "segments", [], "method");
  7.         // line 6
  8.         ob_start(function () { return ''; });
  9.         // line 7
  10.         echo "    ";
  11.         if ($this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "hasContent", [], "method")) {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("@nucleus/page.html.twig""partials/page.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_page_footer($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("partials/page.html.twig""index.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_content($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Exception $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render($context = [])
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_num_args() > func_get_arg(1) : []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     public function render($file, array $context = [])
  2.     {
  3.         // Include Gantry specific things to the context.
  4.         $context $this->getContext($context);
  5.         return $this->renderer()->render($file$context);
  6.     }
  7.     /**
  8.      * Compile and render twig string.
  9.      *
  1. // All the custom twig variables can be defined in here:
  2. $context = array();
  3. // Render the page.
  4. echo $theme->render('index.html.twig'$context);
require('/home/prvaetap/public_html/templates/rt_zenith/index.php') in /home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php (line 731)
  1.             // Store the file path
  2.             $this->_file $directory '/' $filename;
  3.             // Get the file content
  4.             ob_start();
  5.             require $directory '/' $filename;
  6.             $contents ob_get_clean();
  7.         }
  8.         return $contents;
  9.     }
  1.         $this->baseurl  Uri::base(true);
  2.         $this->params   $params['params'] ?? new Registry();
  3.         $this->template $template;
  4.         // Load
  5.         $this->_template $this->_loadTemplate($baseDir$file);
  6.         return $this;
  7.     }
  8.     /**
  1.      *
  2.      * @since   1.7.0
  3.      */
  4.     public function parse($params = [])
  5.     {
  6.         return $this->_fetchTemplate($params)->_parseTemplate();
  7.     }
  8.     /**
  9.      * Outputs the template to the browser.
  10.      *
  1.             // Fall back to constants.
  2.             $this->docOptions['directory'] = \defined('JPATH_THEMES') ? JPATH_THEMES : (\defined('JPATH_BASE') ? JPATH_BASE __DIR__) . '/themes';
  3.         }
  4.         // Parse the document.
  5.         $this->document->parse($this->docOptions);
  6.         // Trigger the onBeforeRender event.
  7.         PluginHelper::importPlugin('system'nulltrue$this->getDispatcher());
  8.         $this->dispatchEvent(
  9.             'onBeforeRender',
  1.                 $this->set('themeInherits'$template->parent);
  2.                 break;
  3.         }
  4.         parent::render();
  5.     }
  6.     /**
  7.      * Route the application.
  8.      *
  1.             $this->doExecute();
  2.             // If we have an application document object, render it.
  3.             if ($this->document instanceof \Joomla\CMS\Document\Document) {
  4.                 // Render the application output.
  5.                 $this->render();
  6.             }
  7.             // If gzip compression is enabled in configuration and the server is compliant, compress the output.
  8.             if ($this->get('gzip') && !ini_get('zlib.output_compression') && ini_get('output_handler') !== 'ob_gzhandler') {
  9.                 $this->compress();
CMSApplication->execute() in /home/prvaetap/public_html/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/home/prvaetap/public_html/includes/app.php') in /home/prvaetap/public_html/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Traces 2

[2/2] ClassNotFoundError
Symfony\Component\ErrorHandler\Error\ClassNotFoundError:
Attempted to load class "JRequest" from the global namespace.
Did you forget a "use" statement?

  at /home/prvaetap/public_html/modules/mod_fj_related_plus/helper.php:504
  at modFJRelatedPlusHelper::isArticle()
     (/home/prvaetap/public_html/modules/mod_fj_related_plus/helper.php:32)
  at modFJRelatedPlusHelper::getList()
     (/home/prvaetap/public_html/modules/mod_fj_related_plus/mod_fj_related_plus.php:15)
  at include('/home/prvaetap/public_html/modules/mod_fj_related_plus/mod_fj_related_plus.php')
     (/home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:52)
  at Joomla\CMS\Dispatcher\ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}()
     (/home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:55)
  at Joomla\CMS\Dispatcher\ModuleDispatcher->dispatch()
     (/home/prvaetap/public_html/libraries/src/Helper/ModuleHelper.php:291)
  at Joomla\CMS\Helper\ModuleHelper::renderRawModule()
     (/home/prvaetap/public_html/libraries/src/Helper/ModuleHelper.php:162)
  at Joomla\CMS\Helper\ModuleHelper::renderModule()
     (/home/prvaetap/public_html/libraries/src/Document/Renderer/Html/ModuleRenderer.php:99)
  at Joomla\CMS\Document\Renderer\Html\ModuleRenderer->render()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:294)
  at Gantry\Framework\Platform->displayModule()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:342)
  at Gantry\Framework\Platform->displayModules()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:702)
  at Twig\Template->getAttribute()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/0d/0d4a6911e2752baa5265db7e0e6f5b9761d3d76b2a688ac5db7456e79b4cc692.php:43)
  at __TwigTemplate_01ad04febfea6f21eb13ff5713edca5c250f2bf84bbf9e00b7f86de4dafc7bdb->block_particle()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:214)
  at Twig\Template->displayBlock()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/fd/fde41d9ff88e267cde744b89f85e1f02f78a4e570fefd8709c544de2ba51ef34.php:73)
  at __TwigTemplate_edf085b983c7e9bdabe8bb64b69d05d69a20c0ab490255b746ebee25ccd76165->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/0d/0d4a6911e2752baa5265db7e0e6f5b9761d3d76b2a688ac5db7456e79b4cc692.php:35)
  at __TwigTemplate_01ad04febfea6f21eb13ff5713edca5c250f2bf84bbf9e00b7f86de4dafc7bdb->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/db/db8697f41cb556935ef44e676eb00bfb3fbac52fb01b30cf6a8ddbdfead46594.php:53)
  at __TwigTemplate_f3ec2eae9d9333e5c795fc543ded7e6a25946a67ebad9d6c2015b691201c5ed3->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/46/462f8efe826bc0c6baa9133e28d76300d370325369c888f74eeb29ac49f9febc.php:75)
  at __TwigTemplate_d05e67649a8e18651181297e9bedd28de7d84d890453b9ba707c736d392b637b->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/1c/1c1c41b00ea35da18a5830f3287729679d4bb0a817227ed06a1ee30102a2a5d5.php:58)
  at __TwigTemplate_6c65161be3d9b11a085c3c23275f13061b0d6641ffe993eddf7dc812815ca4b1->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/d4/d4598f6236843b6c82e0fcf6c27afe75e3e0a7deb5f63c28bd8d7e38a98ae3cb.php:71)
  at __TwigTemplate_9017fa921f6734ddf592bdb38cf67deb4fb96f54e13435927f65d54656f13ec1->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/46/462f8efe826bc0c6baa9133e28d76300d370325369c888f74eeb29ac49f9febc.php:75)
  at __TwigTemplate_d05e67649a8e18651181297e9bedd28de7d84d890453b9ba707c736d392b637b->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/1c/1c1c41b00ea35da18a5830f3287729679d4bb0a817227ed06a1ee30102a2a5d5.php:58)
  at __TwigTemplate_6c65161be3d9b11a085c3c23275f13061b0d6641ffe993eddf7dc812815ca4b1->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/30/308b5ca5bbb0d17bd791a2c2a18b6ebe5a3db13aeca69551a231020811a39e38.php:51)
  at __TwigTemplate_84bff1e4df55899be20f2029690aadd8d5e615d94321e0890cb1da0f98582b7b->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/46/462f8efe826bc0c6baa9133e28d76300d370325369c888f74eeb29ac49f9febc.php:75)
  at __TwigTemplate_d05e67649a8e18651181297e9bedd28de7d84d890453b9ba707c736d392b637b->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/1c/1c1c41b00ea35da18a5830f3287729679d4bb0a817227ed06a1ee30102a2a5d5.php:58)
  at __TwigTemplate_6c65161be3d9b11a085c3c23275f13061b0d6641ffe993eddf7dc812815ca4b1->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/30/308b5ca5bbb0d17bd791a2c2a18b6ebe5a3db13aeca69551a231020811a39e38.php:51)
  at __TwigTemplate_84bff1e4df55899be20f2029690aadd8d5e615d94321e0890cb1da0f98582b7b->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/ba/ba74266590772a4e71c473b243bb405d964e00d88942be0af53017629587dafc.php:212)
  at __TwigTemplate_e77a93e0117191f68b71745017324846af6bfef58b8d611e49b3068f374b3fcb->block_page_layout()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:214)
  at Twig\Template->displayBlock()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/ba/ba74266590772a4e71c473b243bb405d964e00d88942be0af53017629587dafc.php:90)
  at __TwigTemplate_e77a93e0117191f68b71745017324846af6bfef58b8d611e49b3068f374b3fcb->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/b8/b87eadc7cf32ef06f192d9c509853e449ba938324df61983fbee71ec77735330.php:35)
  at __TwigTemplate_ab3424eee1af98a2d8430b6e051b4ced3ba2f0da28c81c269a5dcca16b017132->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/61/6187c77438ac4e6dc605180ab3b039da5e827ab0a710caf5e2689998b69ad6b9.php:36)
  at __TwigTemplate_42f6a5be43b563add507cef5711ba71a7c4b39c205a5e22a3f9f96364d18744b->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/home/prvaetap/public_html/templates/rt_zenith/error.php:32)
  at require('/home/prvaetap/public_html/templates/rt_zenith/error.php')
     (/home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php:731)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate()
     (/home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php:785)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate()
     (/home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php:622)
  at Joomla\CMS\Document\HtmlDocument->parse()
     (/home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php:640)
  at Joomla\CMS\Document\HtmlDocument->render()
     (/home/prvaetap/public_html/libraries/src/Document/ErrorDocument.php:139)
  at Joomla\CMS\Document\ErrorDocument->render()
     (/home/prvaetap/public_html/libraries/src/Error/Renderer/HtmlRenderer.php:70)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render()
     (/home/prvaetap/public_html/libraries/src/Exception/ExceptionHandler.php:136)
  at Joomla\CMS\Exception\ExceptionHandler::render()
     (/home/prvaetap/public_html/libraries/src/Exception/ExceptionHandler.php:73)
  at Joomla\CMS\Exception\ExceptionHandler::handleException()
     (/home/prvaetap/public_html/libraries/src/Application/CMSApplication.php:336)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/prvaetap/public_html/includes/app.php:58)
  at require_once('/home/prvaetap/public_html/includes/app.php')
     (/home/prvaetap/public_html/index.php:32)                
[1/2] Error
Error:
Failed opening required '/home/prvaetap/public_html/components/com_content/helpers/route.php' (include_path='.:/opt/alt/php82/usr/share/pear:/opt/alt/php82/usr/share/php:/usr/share/pear:/usr/share/php')

  at /home/prvaetap/public_html/modules/mod_fj_related_plus/helper.php:12
  at require_once()
     (/home/prvaetap/public_html/modules/mod_fj_related_plus/mod_fj_related_plus.php:13)
  at include('/home/prvaetap/public_html/modules/mod_fj_related_plus/mod_fj_related_plus.php')
     (/home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:52)
  at Joomla\CMS\Dispatcher\ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}()
     (/home/prvaetap/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:55)
  at Joomla\CMS\Dispatcher\ModuleDispatcher->dispatch()
     (/home/prvaetap/public_html/libraries/src/Helper/ModuleHelper.php:291)
  at Joomla\CMS\Helper\ModuleHelper::renderRawModule()
     (/home/prvaetap/public_html/libraries/src/Helper/ModuleHelper.php:162)
  at Joomla\CMS\Helper\ModuleHelper::renderModule()
     (/home/prvaetap/public_html/libraries/src/Document/Renderer/Html/ModuleRenderer.php:99)
  at Joomla\CMS\Document\Renderer\Html\ModuleRenderer->render()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:294)
  at Gantry\Framework\Platform->displayModule()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:342)
  at Gantry\Framework\Platform->displayModules()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:702)
  at Twig\Template->getAttribute()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/0d/0d4a6911e2752baa5265db7e0e6f5b9761d3d76b2a688ac5db7456e79b4cc692.php:43)
  at __TwigTemplate_01ad04febfea6f21eb13ff5713edca5c250f2bf84bbf9e00b7f86de4dafc7bdb->block_particle()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:214)
  at Twig\Template->displayBlock()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/fd/fde41d9ff88e267cde744b89f85e1f02f78a4e570fefd8709c544de2ba51ef34.php:73)
  at __TwigTemplate_edf085b983c7e9bdabe8bb64b69d05d69a20c0ab490255b746ebee25ccd76165->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/0d/0d4a6911e2752baa5265db7e0e6f5b9761d3d76b2a688ac5db7456e79b4cc692.php:35)
  at __TwigTemplate_01ad04febfea6f21eb13ff5713edca5c250f2bf84bbf9e00b7f86de4dafc7bdb->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/db/db8697f41cb556935ef44e676eb00bfb3fbac52fb01b30cf6a8ddbdfead46594.php:53)
  at __TwigTemplate_f3ec2eae9d9333e5c795fc543ded7e6a25946a67ebad9d6c2015b691201c5ed3->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:825)
  at Gantry\Framework\Theme->getContent()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:718)
  at Gantry\Framework\Theme->renderContent()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:643)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:468)
  at Gantry\Framework\Theme->segments()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:700)
  at Twig\Template->getAttribute()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/ba/ba74266590772a4e71c473b243bb405d964e00d88942be0af53017629587dafc.php:47)
  at __TwigTemplate_e77a93e0117191f68b71745017324846af6bfef58b8d611e49b3068f374b3fcb->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/b8/b87eadc7cf32ef06f192d9c509853e449ba938324df61983fbee71ec77735330.php:35)
  at __TwigTemplate_ab3424eee1af98a2d8430b6e051b4ced3ba2f0da28c81c269a5dcca16b017132->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/cache/gantry5/rt_zenith/twig/66/6641642a41ea2c7d8fe493111006c9e2d989a02ef877759688b21f086796becf.php:35)
  at __TwigTemplate_4e84c7ff66875716934cfc537f5ad4096df5d910f42cc579ef05bebc60907762->doDisplay()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render()
     (/home/prvaetap/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render()
     (/home/prvaetap/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/home/prvaetap/public_html/templates/rt_zenith/index.php:23)
  at require('/home/prvaetap/public_html/templates/rt_zenith/index.php')
     (/home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php:731)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate()
     (/home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php:785)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate()
     (/home/prvaetap/public_html/libraries/src/Document/HtmlDocument.php:622)
  at Joomla\CMS\Document\HtmlDocument->parse()
     (/home/prvaetap/public_html/libraries/src/Application/CMSApplication.php:1057)
  at Joomla\CMS\Application\CMSApplication->render()
     (/home/prvaetap/public_html/libraries/src/Application/SiteApplication.php:732)
  at Joomla\CMS\Application\SiteApplication->render()
     (/home/prvaetap/public_html/libraries/src/Application/CMSApplication.php:311)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/prvaetap/public_html/includes/app.php:58)
  at require_once('/home/prvaetap/public_html/includes/app.php')
     (/home/prvaetap/public_html/index.php:32)