Your file /data03/virt37694/domeenid/www.turuliider.ee/htdocs/cache/class_index.php is corrupted. Please remove this file, a new one will be regenerated automatically
at line 154 in file classes/Autoload.php
148. while (!$integrity_is_ok);
149.
150. if (!$integrity_is_ok)
151. {
152. file_put_contents($filename, '<?php return array(); ?>');
153. throw new PrestaShopException('Your file '.$filename.' is corrupted. Please remove this file, a new one will be regenerated automatically');
154. }
155. }
156.
157. $this->index = $classes;
158. }
81.
82. // regenerate the class index if the requested class is not found in the index or if the requested file doesn't exists
83. if (!isset($this->index[$classname])
84. || ($this->index[$classname] && !is_file($this->root_dir.$this->index[$classname]))
85. || (isset($this->index[$classname.'Core']) && $this->index[$classname.'Core'] && !is_file($this->root_dir.$this->index[$classname.'Core'])))
86. $this->generateIndex();
87.
88. // If $classname has not core suffix (E.g. Shop, Product)
89. if (substr($classname, -4) != 'Core')
90. {
91. // If requested class does not exist, load associated core class
Argument [0] Composer\Autoload\ClassLoader
20. if (null !== self::$loader) {
21. return self::$loader;
22. }
23.
24. spl_autoload_register(array('ComposerAutoloaderInit88235a4990da6afd2910584613ddd0ea', 'loadClassLoader'), true, false);
25. self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
26. spl_autoload_unregister(array('ComposerAutoloaderInit88235a4990da6afd2910584613ddd0ea', 'loadClassLoader'));
27.
28. $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
29. if ($useStaticLoader) {
30. require __DIR__ . '/autoload_static.php';
Argument [0] Composer\Autoload\ClassLoader
1.
2. // autoload.php @generated by Composer
3.
4. require_once __DIR__ . '/composer/autoload_real.php';
5.
6. return ComposerAutoloaderInit88235a4990da6afd2910584613ddd0ea::getLoader();
16. * @copyright 2021 Inbank
17. * @license Valid for 1 website (or project) for each purchase of license
18. *
19. */
20.
21. require_once(dirname(__FILE__) . '/vendor/autoload.php');
22.
23. if (!defined('_PS_VERSION_')) {
24. exit;
25. }
26.
Argument [0] /data03/virt37694/domeenid/www.turuliider.ee/htdocs/modules/inbank/vendor/autoload.php
856. die(Tools::displayError());
857. if (!isset(self::$_INSTANCE[$module_name]))
858. {
859. if (Tools::file_exists_cache(_PS_MODULE_DIR_.$module_name.'/'.$module_name.'.php'))
860. {
861. include_once(_PS_MODULE_DIR_.$module_name.'/'.$module_name.'.php');
862.
863. if (class_exists($module_name, false))
864. return self::$_INSTANCE[$module_name] = new $module_name;
865. }
866. return false;
Argument [0] /data03/virt37694/domeenid/www.turuliider.ee/htdocs/modules/inbank/inbank.php
389. foreach ($module_list as $array)
390. {
391. // Check errors
392. if ($id_module && $id_module != $array['id_module'])
393. continue;
394. if (!($moduleInstance = Module::getInstanceByName($array['module'])))
395. continue;
396.
397. // Check permissions
398. if ($check_exceptions)
399. {
Argument [0] inbank
435. // These hooks aren't used for the mobile theme.
436. // Needed hooks are called in the tpl files.
437. if (!isset($this->context->cart))
438. $this->context->cart = new Cart();
439. $this->context->smarty->assign(array(
440. 'HOOK_HEADER' => Hook::exec('displayHeader'),
441. 'HOOK_TOP' => Hook::exec('displayTop'),
442. 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''),
443. 'HOOK_RIGHT_COLUMN' => ($this->display_column_right ? Hook::exec('displayRightColumn', array('cart' => $this->context->cart)) : ''),
444. ));
445. }
Argument [0] displayHeader
285. * Assign template vars related to page content
286. * @see FrontController::initContent()
287. */
288. public function initContent()
289. {
290. parent::initContent();
291.
292. // SHOPPING CART
293. $this->_assignSummaryInformations();
294. // WRAPPING AND TOS
295. $this->_assignWrappingAndTOS();
161.
162. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className)))
163. $this->initHeader();
164.
165. if ($this->viewAccess())
166. $this->initContent();
167. else
168. $this->errors[] = Tools::displayError('Access denied.');
169.
170. if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className)))
171. $this->initFooter();
342. // Execute hook dispatcher
343. if (isset($params_hook_action_dispatcher))
344. Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
345.
346. // Running controller
347. $controller->run();
348. }
349. catch (PrestaShopException $e)
350. {
351. $e->displayMessage();
352. }
29.
30. ini_set("session.cookie_secure", 1);
31. ini_set('session.cookie_samesite', 'None');
32.
33. require(dirname(__FILE__).'/config/config.inc.php');
34. Dispatcher::getInstance()->dispatch();