Actualizacion automatica: 2024-04-29 22:44:40

This commit is contained in:
imnavajas
2024-04-29 22:44:41 +02:00
parent 16a5120e2b
commit 7e63a3317a
5 changed files with 77 additions and 3 deletions

2
.idea/php.xml generated
View File

@ -10,7 +10,7 @@
<option name="highlightLevel" value="WARNING" />
<option name="transferred" value="true" />
</component>
<component name="PhpProjectSharedConfiguration" php_language_level="7.3">
<component name="PhpProjectSharedConfiguration" php_language_level="8.1">
<option name="suggestChangeDefaultLanguageLevel" value="false" />
</component>
<component name="PhpStanOptionsConfiguration">

View File

@ -87,7 +87,7 @@ class Routing extends BaseRouting
*
* If FALSE, will stop searching and do NO automatic routing.
*/
public bool $autoRoute = false;
public bool $autoRoute = true;
/**
* If TRUE, will enable the use of the 'prioritize' option

View File

@ -0,0 +1,74 @@
<?php
namespace App\Config;
use CodeIgniter\Config\BaseConfig;
class Safekat extends BaseConfig
{
public $appName = 'ERP Safekat 2.0';
public $i18n = 'es-ES';
public $vista_impresion = 'impresion';
public $vista_maquetacion = 'maquetacion';
public $vista_digitalizacion = 'digitalizacion';
public $languages = [
'en' => 'English',
'es' => 'Spanish',
];
public $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' => '#',
],
];
}

View File

@ -5,7 +5,7 @@
"homepage": "https://codeigniter.com",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.1",
"codeigniter4/shield": "^1.0",
"codeigniter4/framework": "^4",
"phpoffice/phpspreadsheet": "^1.18",

BIN
composer.phar Normal file

Binary file not shown.