Error ClassNotFoundError

HTTP 500 Whoops, looks like something went wrong.

Attempted to load class "Company" from namespace "\Joomla\CMS\Table".
Did you forget a "use" statement for another namespace?

Exceptions 2

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1.         if (Factory::getContainer()->has($tableClass)) {
  2.             return Factory::getContainer()->get($tableClass);
  3.         }
  4.         // Instantiate a new table class and return it.
  5.         return new $tableClass($db);
  6.     }
  7.     /**
  8.      * Add a filesystem path where Table should search for table class files.
  9.      *
  1. class modJBusinessMapsHelper {
  2.     public static function getList($params) {
  3.         $appSettings JBusinessUtil::getApplicationSettings();
  4.         
  5.         JTable::addIncludePath(JPATH_ROOT.'/administrator/components/com_jbusinessdirectory/tables');
  6.         $companiesTable JTable::getInstance('Company''JTable');
  7.         $appSettings JBusinessUtil::getApplicationSettings();
  8.         $searchDetails = array();
  9.         
  10.         $searchDetails["enablePackages"] = $appSettings->enable_packages;
  11.         $searchDetails["showPendingApproval"] = $appSettings->show_pending_approval==1;
  1. $cache JFactory::getCache('mod_jbusiness_maps''');
  2. $key 'mod_jbusiness_maps'.$module->id;
  3. if ($cache->contains($key)){
  4.     $companies $cache->get($key);
  5. }else{
  6.    $companies modJBusinessMapsHelper::getList($params);
  7.    $cache->store($companies$key);
  8. }
  9.  
  10. $appSettings JBusinessUtil::getApplicationSettings();
  11. $moduleclass_sfx htmlspecialchars($params->get('moduleclass_sfx'));
include('/home/miketur/public_html/modules/mod_jbusiness_maps/mod_jbusiness_maps.php') in /home/miketur/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/miketur/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/miketur/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.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.     public function block_particle($context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  4.         // line 4
  5.         echo "    ";
  6.         echo twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["gantry"] ?? null), "platform", [], "any"falsefalsefalse4), "displayModules", [=> twig_get_attribute($this->env$this->source, ($context["particle"] ?? null), "key", [], "any"falsefalsefalse4), => ["style" => ((twig_get_attribute($this->env$this->source, ($context["particle"] ?? null), "chrome", [], "any"truetruefalse4)) ? (_twig_default_filter(twig_get_attribute($this->env$this->source, ($context["particle"] ?? null), "chrome", [], "any"falsefalsefalse4), "gantry")) : ("gantry"))]], "method"falsefalsefalse4);
  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.     protected function doDisplay(array $context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  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 === twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "attributes", [], "any"falsefalsefalse8), "enabled", [], "any"falsefalsefalse8)) || twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "attributes", [], "any"falsefalsefalse8), "enabled", [], "any"falsefalsefalse8)))) {
  3.                 // line 9
  4.                 echo "            ";
  5.                 $this->loadTemplate([=> (("particles/" . ((twig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "subtype", [], "any"truetruefalse9)) ? (_twig_default_filter(twig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "subtype", [], "any"falsefalsefalse9), "position")) : ("position"))) . ".html.twig"), => (("@particles/" . ((twig_get_attribute($this->env$this->source,                 // line 10
  6. ($context["segment"] ?? null), "subtype", [], "any"truetruefalse10)) ? (_twig_default_filter(twig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "subtype", [], "any"falsefalsefalse10), "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/" twig_get_attribute($this->env$this->source$context["segment"], "type", [], "any"falsefalsefalse13)) . ".html.twig"), => (("@nucleus/layout/" twig_get_attribute($this->env$this->source$context["segment"], "type", [], "any"falsefalsefalse13)) . ".html.twig")], "@nucleus/layout/block.html.twig"13)->display(twig_array_merge($context, ["segments" => twig_get_attribute($this->env$this->source$context["segment"], "children", [], "any"falsefalsefalse13)]));
  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/" twig_get_attribute($this->env$this->source$context["segment"], "type", [], "any"falsefalsefalse7)) . ".html.twig"), "@nucleus/layout/grid.html.twig"7)->display(twig_array_merge($context, ["segments" => twig_get_attribute($this->env$this->source$context["segment"], "children", [], "any"falsefalsefalse7)]));
  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/" twig_get_attribute($this->env$this->source$context["segment"], "type", [], "any"falsefalsefalse14)) . ".html.twig"), "@nucleus/layout/section.html.twig"14)->display(twig_array_merge($context, ["segments" => twig_get_attribute($this->env$this->source$context["segment"], "children", [], "any"falsefalsefalse14)]));
  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.             // line 34
  2.             echo "        ";
  3.             if ((twig_get_attribute($this->env$this->source$context["segment"], "type", [], "any"falsefalsefalse34) != "offcanvas")) {
  4.                 // line 35
  5.                 echo "            ";
  6.                 $this->loadTemplate((("@nucleus/layout/" twig_get_attribute($this->env$this->source$context["segment"], "type", [], "any"falsefalsefalse35)) . ".html.twig"), "@nucleus/page.html.twig"35)->display(twig_array_merge($context, ["segments" => twig_get_attribute($this->env$this->source$context["segment"], "children", [], "any"falsefalsefalse35)]));
  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)) ? (((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["offcanvas"] ?? null), "attributes", [], "any"falsetruefalse29), "position", [], "any"truetruefalse29)) ? (_twig_default_filter(twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["offcanvas"] ?? null), "attributes", [], "any"falsetruefalse29), "position", [], "any"falsefalsefalse29), "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.     protected function doDisplay(array $context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  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.     protected function doDisplay(array $context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  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 (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  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_get_args()[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/miketur/public_html/templates/rt_akuatik/error.php') in /home/miketur/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.     /**
HtmlDocument->_fetchTemplate() in /home/miketur/public_html/libraries/src/Document/HtmlDocument.php (line 622)
  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/miketur/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/miketur/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/miketur/public_html/includes/app.php') in /home/miketur/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

Class "\Joomla\CMS\Table\CompanyAttributes" not found

  1.         if (Factory::getContainer()->has($tableClass)) {
  2.             return Factory::getContainer()->get($tableClass);
  3.         }
  4.         // Instantiate a new table class and return it.
  5.         return new $tableClass($db);
  6.     }
  7.     /**
  8.      * Add a filesystem path where Table should search for table class files.
  9.      *
  1.         
  2.         foreach ($companies as $company) {
  3.             if (!empty($company->features)) {
  4.                 $company->packageFeatures explode(","$company->features);
  5.             }
  6.             $attributesTable =  JTable::getInstance('CompanyAttributes''JTable');
  7.             $company->customAttributes $attributesTable->getCompanyAttributes($company->id);
  8.             $company->link JBusinessUtil::getCompanyLink($companytrue);
  9.             //$company->mainCategoryLink = JBusinessUtil::getCategoryLink($company->mainCategoryId, $company->mainCategoryAlias);
  10.         }
  11.         
  1. $cache JFactory::getCache('mod_jbusiness_maps''');
  2. $key 'mod_jbusiness_maps'.$module->id;
  3. if ($cache->contains($key)){
  4.     $companies $cache->get($key);
  5. }else{
  6.    $companies modJBusinessMapsHelper::getList($params);
  7.    $cache->store($companies$key);
  8. }
  9.  
  10. $appSettings JBusinessUtil::getApplicationSettings();
  11. $moduleclass_sfx htmlspecialchars($params->get('moduleclass_sfx'));
include('/home/miketur/public_html/modules/mod_jbusiness_maps/mod_jbusiness_maps.php') in /home/miketur/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/miketur/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/miketur/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.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.     public function block_particle($context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  4.         // line 4
  5.         echo "    ";
  6.         echo twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["gantry"] ?? null), "platform", [], "any"falsefalsefalse4), "displayModules", [=> twig_get_attribute($this->env$this->source, ($context["particle"] ?? null), "key", [], "any"falsefalsefalse4), => ["style" => ((twig_get_attribute($this->env$this->source, ($context["particle"] ?? null), "chrome", [], "any"truetruefalse4)) ? (_twig_default_filter(twig_get_attribute($this->env$this->source, ($context["particle"] ?? null), "chrome", [], "any"falsefalsefalse4), "gantry")) : ("gantry"))]], "method"falsefalsefalse4);
  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.     protected function doDisplay(array $context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  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 === twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "attributes", [], "any"falsefalsefalse8), "enabled", [], "any"falsefalsefalse8)) || twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "attributes", [], "any"falsefalsefalse8), "enabled", [], "any"falsefalsefalse8)))) {
  3.                 // line 9
  4.                 echo "            ";
  5.                 $this->loadTemplate([=> (("particles/" . ((twig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "subtype", [], "any"truetruefalse9)) ? (_twig_default_filter(twig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "subtype", [], "any"falsefalsefalse9), "position")) : ("position"))) . ".html.twig"), => (("@particles/" . ((twig_get_attribute($this->env$this->source,                 // line 10
  6. ($context["segment"] ?? null), "subtype", [], "any"truetruefalse10)) ? (_twig_default_filter(twig_get_attribute($this->env$this->source, ($context["segment"] ?? null), "subtype", [], "any"falsefalsefalse10), "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 (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  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_get_args()[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.             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.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.         // line 2
  2.         twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["gantry"] ?? null), "theme", [], "any"falsefalsefalse2), "setLayout", [], "method"falsefalsefalse2);
  3.         // line 3
  4.         twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["gantry"] ?? null), "theme", [], "any"falsefalsefalse3), "loadAtoms", [], "method"falsefalsefalse3);
  5.         // line 4
  6.         $context["segments"] = twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["gantry"] ?? null), "theme", [], "any"falsefalsefalse4), "segments", [], "method"falsefalsefalse4);
  7.         // line 6
  8.         ob_start(function () { return ''; });
  9.         // line 7
  10.         echo "    ";
  11.         if (twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["gantry"] ?? null), "theme", [], "any"falsefalsefalse7), "hasContent", [], "method"falsefalsefalse7)) {
  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.     protected function doDisplay(array $context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  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.     protected function doDisplay(array $context, array $blocks = [])
  2.     {
  3.         $macros $this->macros;
  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 (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  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_get_args()[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/miketur/public_html/templates/rt_akuatik/index.php') in /home/miketur/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.     /**
HtmlDocument->_fetchTemplate() in /home/miketur/public_html/libraries/src/Document/HtmlDocument.php (line 622)
  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/miketur/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/miketur/public_html/includes/app.php') in /home/miketur/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 "Company" from namespace "\Joomla\CMS\Table".
Did you forget a "use" statement for another namespace?

  at /home/miketur/public_html/libraries/src/Table/Table.php:344
  at Joomla\CMS\Table\Table::getInstance()
     (/home/miketur/public_html/modules/mod_jbusiness_maps/helper.php:16)
  at modJBusinessMapsHelper::getList()
     (/home/miketur/public_html/modules/mod_jbusiness_maps/mod_jbusiness_maps.php:50)
  at include('/home/miketur/public_html/modules/mod_jbusiness_maps/mod_jbusiness_maps.php')
     (/home/miketur/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:52)
  at Joomla\CMS\Dispatcher\ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}()
     (/home/miketur/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:55)
  at Joomla\CMS\Dispatcher\ModuleDispatcher->dispatch()
     (/home/miketur/public_html/libraries/src/Helper/ModuleHelper.php:291)
  at Joomla\CMS\Helper\ModuleHelper::renderRawModule()
     (/home/miketur/public_html/libraries/src/Helper/ModuleHelper.php:162)
  at Joomla\CMS\Helper\ModuleHelper::renderModule()
     (/home/miketur/public_html/libraries/src/Document/Renderer/Html/ModuleRenderer.php:99)
  at Joomla\CMS\Document\Renderer\Html\ModuleRenderer->render()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:294)
  at Gantry\Framework\Platform->displayModule()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:342)
  at Gantry\Framework\Platform->displayModules()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Extension/CoreExtension.php:1570)
  at twig_get_attribute()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/ff/ff2833cd625829a1b2a767aa5c35b5e2.php:51)
  at __TwigTemplate_cea4d49c7415c0dfdccbdf69ea85302f->block_particle()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/72/72b4d73c1f0d14e2ecc2d8d1dc48f9e9.php:80)
  at __TwigTemplate_bcb364539622a568143c9bf17ec99be1->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/ff/ff2833cd625829a1b2a767aa5c35b5e2.php:42)
  at __TwigTemplate_cea4d49c7415c0dfdccbdf69ea85302f->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/9f/9fc618b8c0151fd5160ca0d90b7cb072.php:60)
  at __TwigTemplate_8c3e8aa0f9e3dd1d9855921b8ef2839e->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/a5/a50a08cecf33b3c6eca19623097f9e64.php:82)
  at __TwigTemplate_caa42b16e4ccb8376a29d8b71c8b7f9d->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/cf/cfc0c482d49ee84ff3b33bf0fd9e52e3.php:65)
  at __TwigTemplate_532e0987c9ad5f41e22f26d753adecf2->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/60/6094c3e37b17c9a21293dae5c0f3b4ef.php:78)
  at __TwigTemplate_2d15acf056355b4485ea7791fa8d4872->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/ec/ec69b471c1feefbc50266567e08e9838.php:222)
  at __TwigTemplate_5030718abb0a6eceae471ee2bc86a677->block_page_layout()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/ec/ec69b471c1feefbc50266567e08e9838.php:97)
  at __TwigTemplate_5030718abb0a6eceae471ee2bc86a677->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/de/deb20aa922d5ae2458f7a5e3d3cb4006.php:42)
  at __TwigTemplate_e784455f8bbe6d038131cda589062c6f->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/95/952cbcc34d66f59d4556ae4609eecb70.php:43)
  at __TwigTemplate_f90174a5f2060ae72cbcb6d0c32640d4->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/home/miketur/public_html/templates/rt_akuatik/error.php:41)
  at require('/home/miketur/public_html/templates/rt_akuatik/error.php')
     (/home/miketur/public_html/libraries/src/Document/HtmlDocument.php:731)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate()
     (/home/miketur/public_html/libraries/src/Document/HtmlDocument.php:785)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate()
     (/home/miketur/public_html/libraries/src/Document/HtmlDocument.php:622)
  at Joomla\CMS\Document\HtmlDocument->parse()
     (/home/miketur/public_html/libraries/src/Document/HtmlDocument.php:640)
  at Joomla\CMS\Document\HtmlDocument->render()
     (/home/miketur/public_html/libraries/src/Document/ErrorDocument.php:139)
  at Joomla\CMS\Document\ErrorDocument->render()
     (/home/miketur/public_html/libraries/src/Error/Renderer/HtmlRenderer.php:70)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render()
     (/home/miketur/public_html/libraries/src/Exception/ExceptionHandler.php:136)
  at Joomla\CMS\Exception\ExceptionHandler::render()
     (/home/miketur/public_html/libraries/src/Exception/ExceptionHandler.php:73)
  at Joomla\CMS\Exception\ExceptionHandler::handleException()
     (/home/miketur/public_html/libraries/src/Application/CMSApplication.php:336)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/miketur/public_html/includes/app.php:58)
  at require_once('/home/miketur/public_html/includes/app.php')
     (/home/miketur/public_html/index.php:32)                
[1/2] Error
Error:
Class "\Joomla\CMS\Table\CompanyAttributes" not found

  at /home/miketur/public_html/libraries/src/Table/Table.php:344
  at Joomla\CMS\Table\Table::getInstance()
     (/home/miketur/public_html/modules/mod_jbusiness_maps/helper.php:43)
  at modJBusinessMapsHelper::getList()
     (/home/miketur/public_html/modules/mod_jbusiness_maps/mod_jbusiness_maps.php:50)
  at include('/home/miketur/public_html/modules/mod_jbusiness_maps/mod_jbusiness_maps.php')
     (/home/miketur/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:52)
  at Joomla\CMS\Dispatcher\ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}()
     (/home/miketur/public_html/libraries/src/Dispatcher/ModuleDispatcher.php:55)
  at Joomla\CMS\Dispatcher\ModuleDispatcher->dispatch()
     (/home/miketur/public_html/libraries/src/Helper/ModuleHelper.php:291)
  at Joomla\CMS\Helper\ModuleHelper::renderRawModule()
     (/home/miketur/public_html/libraries/src/Helper/ModuleHelper.php:162)
  at Joomla\CMS\Helper\ModuleHelper::renderModule()
     (/home/miketur/public_html/libraries/src/Document/Renderer/Html/ModuleRenderer.php:99)
  at Joomla\CMS\Document\Renderer\Html\ModuleRenderer->render()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:294)
  at Gantry\Framework\Platform->displayModule()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:342)
  at Gantry\Framework\Platform->displayModules()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Extension/CoreExtension.php:1570)
  at twig_get_attribute()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/ff/ff2833cd625829a1b2a767aa5c35b5e2.php:51)
  at __TwigTemplate_cea4d49c7415c0dfdccbdf69ea85302f->block_particle()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/72/72b4d73c1f0d14e2ecc2d8d1dc48f9e9.php:80)
  at __TwigTemplate_bcb364539622a568143c9bf17ec99be1->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/ff/ff2833cd625829a1b2a767aa5c35b5e2.php:42)
  at __TwigTemplate_cea4d49c7415c0dfdccbdf69ea85302f->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/9f/9fc618b8c0151fd5160ca0d90b7cb072.php:60)
  at __TwigTemplate_8c3e8aa0f9e3dd1d9855921b8ef2839e->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:825)
  at Gantry\Framework\Theme->getContent()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:718)
  at Gantry\Framework\Theme->renderContent()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:643)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:468)
  at Gantry\Framework\Theme->segments()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Extension/CoreExtension.php:1570)
  at twig_get_attribute()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/ec/ec69b471c1feefbc50266567e08e9838.php:54)
  at __TwigTemplate_5030718abb0a6eceae471ee2bc86a677->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/de/deb20aa922d5ae2458f7a5e3d3cb4006.php:42)
  at __TwigTemplate_e784455f8bbe6d038131cda589062c6f->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/cache/gantry5/rt_akuatik/twig/b9/b9ff842fa5f442fd66ba0fbcfadb725b.php:42)
  at __TwigTemplate_f45e1220a6dfc9d4159c9025400d09ca->doDisplay()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (/home/miketur/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (/home/miketur/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/home/miketur/public_html/templates/rt_akuatik/index.php:30)
  at require('/home/miketur/public_html/templates/rt_akuatik/index.php')
     (/home/miketur/public_html/libraries/src/Document/HtmlDocument.php:731)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate()
     (/home/miketur/public_html/libraries/src/Document/HtmlDocument.php:785)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate()
     (/home/miketur/public_html/libraries/src/Document/HtmlDocument.php:622)
  at Joomla\CMS\Document\HtmlDocument->parse()
     (/home/miketur/public_html/libraries/src/Application/CMSApplication.php:1057)
  at Joomla\CMS\Application\CMSApplication->render()
     (/home/miketur/public_html/libraries/src/Application/SiteApplication.php:732)
  at Joomla\CMS\Application\SiteApplication->render()
     (/home/miketur/public_html/libraries/src/Application/CMSApplication.php:311)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/miketur/public_html/includes/app.php:58)
  at require_once('/home/miketur/public_html/includes/app.php')
     (/home/miketur/public_html/index.php:32)