Files
PrestaShop/controllers/admin/AdminNotFoundController.php
2012-01-11 08:58:12 +00:00

14 lines
301 B
PHP

<?php
class AdminNotFoundControllerCore extends AdminController
{
public function initContent()
{
$this->errors[] = Tools::displayError('Controller not found');
$tpl_vars['controller'] = Tools::getvalue('controller');
$this->context->smarty->assign($tpl_vars);
parent::initContent();
}
}