mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
75 lines
1.7 KiB
PHP
Executable File
75 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class Safekat extends BaseConfig
|
|
{
|
|
|
|
public string $appName = 'ERP Safekat 2.0';
|
|
public string $i18n = 'es-ES';
|
|
|
|
|
|
public $vista_impresion = 'impresion';
|
|
public $vista_maquetacion = 'maquetacion';
|
|
public $vista_digitalizacion = 'digitalizacion';
|
|
|
|
public array $languages = [
|
|
'en' => 'English',
|
|
'es' => 'Spanish',
|
|
];
|
|
|
|
|
|
public array $languageFlags = [
|
|
'en' => 'us',
|
|
'es' => 'es',
|
|
];
|
|
|
|
|
|
public $authImplemented = false;
|
|
|
|
|
|
public $theme = [
|
|
'name' => 'vuexy',
|
|
'body-sm' => false,
|
|
'navbar' => [
|
|
'bg' => 'gray',
|
|
'type' => 'dark',
|
|
'border' => true,
|
|
'user' => [
|
|
'visible' => true,
|
|
'shadow' => 0,
|
|
],
|
|
],
|
|
'sidebar' => [
|
|
'type' => 'dark',
|
|
'shadow' => 4,
|
|
'border' => false,
|
|
'compact' => true,
|
|
'links' => [
|
|
'bg' => 'black', // only works with AdminLTE theme
|
|
'shadow' => 1,
|
|
],
|
|
'brand' => [
|
|
'bg' => 'gray-dark',
|
|
'logo' => [
|
|
'icon' => 'favicon.ico', // path to image | this example icon on public root folder.
|
|
'text' => 'sk_test',
|
|
'shadow' => 2,
|
|
],
|
|
],
|
|
'user' => [
|
|
'visible' => true,
|
|
'shadow' => 2,
|
|
],
|
|
],
|
|
'footer' => [
|
|
'fixed' => false,
|
|
'organization' => 'Safekat',
|
|
'orglink' => '#',
|
|
],
|
|
];
|
|
|
|
}
|