mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Eliminada carpeta backend en themes, añadidos breadcrumbs
This commit is contained in:
@ -13,20 +13,27 @@ class Ajustes extends BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'settings';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/settings/';
|
||||
protected static $viewPath = 'themes/vuexy/form/settings/';
|
||||
|
||||
protected static string $formViewName = 'settingsForm';
|
||||
|
||||
protected static $singularObjectName = 'settings';
|
||||
protected static $singularObjectNameCc = 'settings';
|
||||
|
||||
protected $indexRoute = 'settingForm';
|
||||
protected $indexRoute = 'ajustesList';
|
||||
|
||||
|
||||
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||
{
|
||||
$this->viewData['pageTitle'] = lang('Provincias.moduleTitle');
|
||||
$this->viewData['usingSweetAlert'] = true;
|
||||
|
||||
// Breadcrumbs (IMN)
|
||||
$this->viewData['breadcrumb'] = [
|
||||
['title' => lang("App.menu_configuration"), 'route' => "javascript:void(0);", 'active' => false],
|
||||
['title' => lang("App.menu_settings"), 'route' => route_to('ajustesList'), 'active' => true]
|
||||
];
|
||||
|
||||
parent::initController($request, $response, $logger);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user