diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2020-01-30 12:22:55 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-06-02 12:32:36 +0200 |
commit | 77c09c6b7d6f4d613c7d550d727466d2d11ff3bd (patch) | |
tree | e5837ca361e46ae69bfaa6c0d12646125a689ceb /admin/WebConsole/gestores | |
parent | 5a9ed93cd193065c4476c2af566d21f146f9397d (diff) |
#942 add create/delete schedule api to web (web)
Web updates for #942 Add support for scheduled tasks and commands
Diffstat (limited to 'admin/WebConsole/gestores')
-rw-r--r-- | admin/WebConsole/gestores/gestor_programaciones.php | 51 |
1 files changed, 21 insertions, 30 deletions
diff --git a/admin/WebConsole/gestores/gestor_programaciones.php b/admin/WebConsole/gestores/gestor_programaciones.php index 599427e5..4df4d2ce 100644 --- a/admin/WebConsole/gestores/gestor_programaciones.php +++ b/admin/WebConsole/gestores/gestor_programaciones.php @@ -12,6 +12,7 @@ include_once("../includes/ctrlacc.php"); include_once("../includes/CreaComando.php"); include_once("../clases/AdoPhp.php"); include_once("../includes/comunes.php"); +include_once("../includes/restfunctions.php"); //________________________________________________________________________________________________________ $op_alta=1; $op_modificacion=2; @@ -76,40 +77,30 @@ if($wsw_sus=='true') else $psw_sus=0 ; -$cmd=CreaComando($cadenaconexion); // Crea objeto comando -$resul=false; -if ($cmd){ - $resul=Gestiona(); - $cmd->Conexion->Cerrar(); -} if($pswop!=$op_suspension){ - if (!$resul){ // Ha ocurrido algún error - $reporerr=$cmd->UltimoError(); - $repordes=$cmd->DescripUltimoError(); - echo "error_programacion()"; - } - else{ // programacion registrada correctamente - switch($pswop){ - case $op_modificacion : - $idr=$pidprogramacion; // Identificador de la programacion modificada - $swop=$op_modificacion; - break; - case $op_alta: - $idr=$pidprogramacion; // Identificador de la programacion nueva - $swop=$op_alta; - break; - case $op_eliminacion : - $idr=$pidprogramacion; // Identificador de la programacion eliminada - $swop=$op_eliminacion; - break; - default: - break; - } - echo 'registro_programacion('.$idr.',"'.$pnombrebloque.'",'.$swop.')'; + $result; + $idr=$pidprogramacion; + switch($pswop){ + case $op_modificacion : + $swop=$op_modificacion; + break; + case $op_alta: + $result = create_schedule($pidentificador, + $pnombrebloque, $pannos, $pmeses, $pdiario, + $phoras, $pampm, $pminutos); + $swop=$op_alta; + break; + case $op_eliminacion : + $result = delete_schedule($pidprogramacion); + $swop=$op_eliminacion; + break; + default: + break; } + echo 'registro_programacion('.$idr.',"'.$pnombrebloque.'",'.$swop.')'; } else{ - if (!$resul){ // Ha ocurrido algún error + if ($resul) { // Ha ocurrido algún error $reporerr=0; $repordes="Error al suspender la programación"; echo 'error_programacion()'; |