summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/asistentes/includes/capturaacciones.php
blob: 3c24bce0176fc9c11560f13fad9e277f9b9a66ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// *************************************************************************************************************************************************
// Aplicación WEB: ogAdmWebCon
// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creación: Año 2009-2010
// Fecha Última modificación: Abril-2010
// Nombre del fichero: opcionesacciones.php
// Descripción : 
//		Captura de parámetros comunes para la ejecución de comandos
// *************************************************************************************************************************************************
//________________________________________________________________________________________________________
// Captura parámetros
//________________________________________________________________________________________________________
$idcomando=0;
$ambito=0;
$idambito=0;
$nombreambito="";
$funcion="";
$atributos="";
$gestor="";

if (isset($_POST["idcomando"])) $idcomando=$_POST["idcomando"]; 
if (isset($_POST["descricomando"])) $descricomando=$_POST["descricomando"]; 
if (isset($_POST["ambito"])) $ambito=$_POST["ambito"]; 
if (isset($_POST["idambito"])) $idambito=$_POST["idambito"]; 
if (isset($_POST["nombreambito"])) $nombreambito=$_POST["nombreambito"]; 
if (isset($_POST["funcion"])) $funcion=$_POST["funcion"]; 
if (isset($_POST["atributos"])) $atributos=$_POST["atributos"]; 
if (isset($_POST["gestor"])) $gestor=$_POST["gestor"];