diff options
author | alonso <alonso@us.es> | 2009-11-04 11:04:54 +0000 |
---|---|---|
committer | alonso <alonso@us.es> | 2009-11-04 11:04:54 +0000 |
commit | 7b3bc4abe41dff4402ee433a7eab47c2b36c47bc (patch) | |
tree | 8830f3b0fbec41b03f207273eb6f5ff90eaa09ce /admin/WebConsole/includes/HTMLCTEMULSELECT.php | |
parent | 3acdc93388ab0907242a9a074df54e1cc93b7908 (diff) |
git-svn-id: https://opengnsys.es/svn/trunk@481 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/includes/HTMLCTEMULSELECT.php')
-rw-r--r-- | admin/WebConsole/includes/HTMLCTEMULSELECT.php | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/admin/WebConsole/includes/HTMLCTEMULSELECT.php b/admin/WebConsole/includes/HTMLCTEMULSELECT.php deleted file mode 100644 index 049c9a59..00000000 --- a/admin/WebConsole/includes/HTMLCTEMULSELECT.php +++ /dev/null @@ -1,37 +0,0 @@ -<? -// ************************************************************************************************************************************************* -// Aplicación WEB: ogAdmWebCon. -// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla -// Fecha Creación:2003-2004 -// Fecha Última modificación: Febrero-2005 -// Nombre del fichero: HTMLCTEMULSELECT.php -// Descripción : -// Crea la etiqueta html <SELECT> multiselección, de valores constantes -// Parametros: -// - parametros: Una cadena con la forma valor=literal separada por un caracter INTRO -// - nombreid: Nombre del desplegable (atributo HTML name) -// - tbvalor: Array con los valores de las opciones que aparecerán seleccionadas -// - clase: Clase que define su estilo -// - eventochg: Nombre de la función que se ejecutará en respuesta al evento onchange( por defecto: ninguna) -// - ancho: Anchura del desplegable -// - alto: Altura del desplegable -// ************************************************************************************************************************************************* -function HTMLCTEMULSELECT($parametros,$nombreid,$tbvalor,$clase,$eventochg,$ancho,$alto){ - if (!empty($eventochg)) $eventochg='onchange="'.$eventochg.'(this);"'; - if (empty($clase)) $clase='formulariodatos'; - $x=0; - $opciones=split(chr(13),$parametros); - $SelectHtml= '<SELECT '.$eventochg.' class="'.$clase.'" name="'.$nombreid.'" multiple size='.$alto.' style="WIDTH: '.$ancho.'">'; - for($i=0;$i<sizeof($opciones);$i++){ - $item=split("=",$opciones[$i]); - $SelectHtml.= '<OPTION value="'.$item[0].'"'; - if (isset($tbvalor[$x])){ - if($tbvalor[$x]==$item[0]) { - $SelectHtml.=" selected "; - $x++; - } - } - $SelectHtml.= '>'.$item[1].'</OPTION>'; - } - return($SelectHtml); -}
\ No newline at end of file |