mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
41 lines
836 B
PHP
41 lines
836 B
PHP
<?php
|
|
|
|
const SK_ROLES = [
|
|
'admin' => [
|
|
'title' => 'Administrador',
|
|
'description' => 'Describeme',
|
|
],
|
|
'cliente' => [
|
|
'title' => 'Cliente',
|
|
'description' => '',
|
|
],
|
|
'comercial' => [
|
|
'title' => 'Comercial',
|
|
'description' => '',
|
|
],
|
|
'produccion' => [
|
|
'title' => 'Producción',
|
|
'description' => '',
|
|
],
|
|
'maquina' => [
|
|
'title' => 'Máquina',
|
|
'description' => '',
|
|
],
|
|
'maquetador' => [
|
|
'title' => 'Maquetador',
|
|
'description' => '',
|
|
],
|
|
'director' => [
|
|
'title' => 'Director',
|
|
'description' => '',
|
|
],
|
|
'contabilidad' => [
|
|
'title' => 'Contabilidad',
|
|
'description' => '',
|
|
],
|
|
'editor' => [
|
|
'title' => 'Editor',
|
|
'description' => '',
|
|
],
|
|
];
|