source: admin/WebConsole/asistentes/includes/capturaacciones.php @ 560358b

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacion
Last change on this file since 560358b was b6ec162, checked in by Ramón M. Gómez <ramongomez@…>, 6 years ago

#834: Remove all redundant PHP closing tags.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1<?php
2// *************************************************************************************************************************************************
3// Aplicación WEB: ogAdmWebCon
4// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
5// Fecha Creación: Año 2009-2010
6// Fecha Última modificación: Abril-2010
7// Nombre del fichero: opcionesacciones.php
8// Descripción :
9//              Captura de parámetros comunes para la ejecución de comandos
10// *************************************************************************************************************************************************
11//________________________________________________________________________________________________________
12// Captura parámetros
13//________________________________________________________________________________________________________
14$idcomando=0;
15$ambito=0;
16$idambito=0;
17$nombreambito="";
18$funcion="";
19$atributos="";
20$gestor="";
21
22if (isset($_POST["idcomando"])) $idcomando=$_POST["idcomando"];
23if (isset($_POST["descricomando"])) $descricomando=$_POST["descricomando"];
24if (isset($_POST["ambito"])) $ambito=$_POST["ambito"];
25if (isset($_POST["idambito"])) $idambito=$_POST["idambito"];
26if (isset($_POST["nombreambito"])) $nombreambito=$_POST["nombreambito"];
27if (isset($_POST["funcion"])) $funcion=$_POST["funcion"];
28if (isset($_POST["atributos"])) $atributos=$_POST["atributos"];
29if (isset($_POST["gestor"])) $gestor=$_POST["gestor"];
30
31
Note: See TracBrowser for help on using the repository browser.