2017-08-04 16:28:16 +02:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright ( C ) DevCode s . r . l .
2020-09-07 15:04:06 +02:00
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
2017-08-04 16:28:16 +02:00
include_once __DIR__ . '/../../core.php' ;
2018-02-23 16:04:50 +01:00
?> <form action="" method="post" id="add-form">
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " op " value = " add " >
2022-11-24 15:49:50 +01:00
< input type = " hidden " name = " backto " value = " record-list " >
2017-08-04 16:28:16 +02:00
< div class = " row " >
2024-01-18 22:39:15 +01:00
< div class = " col-md-6 " >
2023-08-04 14:54:28 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Nome gruppo'); ?> " , " name " : " nome " , " required " : 1 , " validation " : " gruppo " , " help " : " <?php echo tr('Compilando questo campo verrà creato un nuovo gruppo di utenti.'); ?> " ]}
2017-08-04 16:28:16 +02:00
</ div >
2024-01-18 22:39:15 +01:00
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " <?php echo tr('Tema'); ?> " , " name " : " theme " , " values " : " list= \" \" : \" <?php echo tr('Predefinito'); ?> \" , \" black \" : \" <?php echo tr('Nero'); ?> \" , \" red \" : \" <?php echo tr('Rosso'); ?> \" , \" blue \" : \" <?php echo tr('Blu'); ?> \" , \" green \" : \" <?php echo tr('Verde'); ?> \" , \" yellow \" : \" <?php echo tr('Giallo'); ?> \" , \" purple \" : \" <?php echo tr('Viola'); ?> \" " , " value " : " $theme $ " ]}
</ div >
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " <?php echo tr('Modulo iniziale'); ?> " , " name " : " id_module_start " , " ajax-source " : " moduli_gruppo " , " placeholder " : " <?php tr('Modulo iniziale'); ?> " ]}
</ div >
2017-08-04 16:28:16 +02:00
</ div >
<!-- PULSANTI -->
< div class = " row " >
< div class = " col-md-12 text-right " >
2022-11-24 15:49:50 +01:00
< button type = " button " onclick = " submitCheck() " class = " btn btn-primary " >< i class = " fa fa-plus " ></ i > < ? php echo tr ( 'Aggiungi' ); ?> </button>
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ form >
2022-11-24 15:49:50 +01:00
< script >
function submitCheck () {
var nome = parseInt ( $ ( " #nome " ) . attr ( " valid " ));
if ( nome ) {
$ ( " #add-form " ) . submit ();
} else {
$ ( " input[name=nome] " ) . focus ();
2024-01-18 22:39:15 +01:00
swal ( " <?php echo tr('Impossibile procedere'); ?> " , " <?php echo tr('Nome gruppo già utilizzato'); ?>. " , " error " );
2022-11-24 15:49:50 +01:00
}
}
</ script >