From: Martín Marrese Date: Mon, 25 Aug 2003 21:13:35 +0000 (+0000) Subject: Se agrega una pantalla de acceso no autororizado X-Git-Tag: svn_import~290 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/4cf359b26dbb47d985591feb13d4b5a4d6904065 Se agrega una pantalla de acceso no autororizado --- diff --git a/doc/umlOut.xmi b/doc/umlOut.xmi index c7d53f7..4f21810 100644 --- a/doc/umlOut.xmi +++ b/doc/umlOut.xmi @@ -55,8 +55,8 @@ they doesn't exists they are added if they exists they are updated " name="addContents" static="0" scope="200" > - - + + - + @@ -124,14 +123,14 @@ Called when visiting a hidden element " name="finishGroup" static="0" scope="200" > - + - + - - + + @@ -737,7 +736,7 @@ El intervalo actual queda con el intervalo posterior al intervalo de corte - + @@ -748,15 +747,15 @@ El intervalo actual queda con el intervalo posterior al intervalo de corte - + - + - + - + - + @@ -862,7 +861,7 @@ El intervalo actual queda con el intervalo posterior al intervalo de corte - + diff --git a/lib/MECON/HTML/Arbol.php b/lib/MECON/HTML/Arbol.php index cd47b0b..e33e65d 100644 --- a/lib/MECON/HTML/Arbol.php +++ b/lib/MECON/HTML/Arbol.php @@ -28,10 +28,36 @@ $Id$ require_once 'HTML/Table.php'; require_once 'MECON/HTML/Image.php'; +/** + * DESC + * + * @access public + */ class MECON_HTML_Arbol extends HTML_Table { + + /** + * DESC + * + * @var TIPO $datos + * @access public + */ var $datos; + + /** + * DESC + * + * @var TIPO $titulo + * @access public + */ var $titulo; + + /** + * DESC + * + * @var string $link_append + * @access public + */ var $link_append; /** @@ -39,7 +65,10 @@ class MECON_HTML_Arbol extends HTML_Table * * @param array $datos Datos con los cuales construir el árbol. * @param string $titulo Título. - * @param int $raiz Nodo raíz (de donde empezar a dibujar el árbol). + * @param string $link_append DESC. + * + * @return void + * @access public */ function MECON_HTML_Arbol($datos, $titulo, $link_append = '') { @@ -54,10 +83,26 @@ class MECON_HTML_Arbol extends HTML_Table $this->link_append = $link_append; } + /** + * Devuelve el path del stylesheet de esta clase + * + * @retur string + * @access public + */ function getCSS() { return '/MECON/css/arbol'; } + /** + * DESC + * + * @param TIPO $dat DESC + * @param TIPO $n DESC + * @param TIPO &$tabla DESC + * + * @return TIPO + * @access public + */ function expandir($dat, $n, &$tabla) { $bullets = array( @@ -107,6 +152,12 @@ class MECON_HTML_Arbol extends HTML_Table } } + /** + * Devuelve el html a imprimir + * + * @return string + * @access public + */ function toHTML() { $this->setRowCount(0); @@ -133,6 +184,16 @@ class MECON_HTML_Arbol extends HTML_Table return parent::toHTML(); } + /** + * DESC + * + * @param TIPO $dat DESC + * @param TIPO $n DESC + * @param TIPO $filtarActivos DESC + * + * @return array + * @access public + */ function expandirArray($dat, $n, $filtrarActivos) { $array = array(); @@ -150,11 +211,29 @@ class MECON_HTML_Arbol extends HTML_Table return $array; } + /** + * DESC + * + * @param bool $filtrarActivos DESC + * + * @return array + * @access public + */ function toArray($filtrarActivos = true) { return $this->expandirArray($this->datos, 0, $filtrarActivos); } + /** + * DESC + * + * @param TIPO $dat DESC + * @param TIPO $n DESC + * @param TIPO $filtarActivos DESC + * + * @return string + * @access public + */ function expandirString($dat, $n, $filtrarActivos) { $str = ''; @@ -180,6 +259,14 @@ class MECON_HTML_Arbol extends HTML_Table return $str; } + /** + * DESC + * + * @param bool $filtrarActivos DESC + * + * @return string + * @access public + */ function toString($filtrarActivos = true) { return $this->expandirString($this->datos, 0, $filtrarActivos); @@ -192,6 +279,7 @@ class MECON_HTML_Arbol extends HTML_Table * @param bool $activo Nuevo valor, true si está activo, false si no. * * @return bool True si se pudo modificar. + * @access public */ function setActivo($id, $activo = 1) { return $this->modificarNodo($this->datos, $id, 'activo', $activo); @@ -206,6 +294,7 @@ class MECON_HTML_Arbol extends HTML_Table * @param mixed $val Nuevo valor. * * @return bool True si se pudo modificar. + * @access public */ function modificarNodo(&$datos, $id, $key, $val) { foreach (array_keys($datos) as $k) { diff --git a/lib/MECON/HTML/ArbolDB.php b/lib/MECON/HTML/ArbolDB.php index fc0ca68..a931a2c 100644 --- a/lib/MECON/HTML/ArbolDB.php +++ b/lib/MECON/HTML/ArbolDB.php @@ -28,19 +28,104 @@ $Id$ require_once 'MECON/HTML/Arbol.php'; require_once 'DB.php'; +/** + * DESC + * + * @access public + */ class MECON_HTML_ArbolDB extends MECON_HTML_Arbol { + + /** + * DESC + * + * @var string $padre + * @access public + */ var $padre = ''; + + /** + * DESC + * + * @var TIPO $tabla + * @access public + */ var $tabla; + + /** + * DESC + * + * @var string $nombre + * @access public + */ var $nombre; + + /** + * DESC + * + * @var TIPO $id + * @access public + */ var $id; + + /** + * DESC + * + * @var TIPO $id_activo + * @access public + */ var $id_activo; + + /** + * DESC + * + * @var string $link + * @access public + */ var $link = ''; + + /** + * DESC + * + * @var string $link_append + * @access public + */ var $link_append = ''; + + /** + * DESC + * + * @var string $where + * @access public + */ var $where = ''; + + /** + * DESC + * + * @var string $order + * @access public + */ var $order = ''; + + /** + * DESC + * + * @var DB $db + * @access public + */ var $db; + /** + * Constructor + * + * @param TIPO $dbdata DESC + * @param TIPO $titulo DESC + * @param string $link_append DESC + * + * @return void + * @access public + */ function MECON_HTML_ArbolDB($dbdata, $titulo, $link_append = '') { if(isset($dbdata['id_padre'])) @@ -62,7 +147,15 @@ class MECON_HTML_ArbolDB extends MECON_HTML_Arbol parent::MECON_HTML_Arbol(array(), $titulo, $link_append); $this->datos = $this->BuscarHijos(0); } - + + /** + * DESC + * + * @param TIPO $id DESC + * + * @return TIPO + * @access public + */ function BuscarHijos($id) { $sql = "SELECT $this->nombre, $this->id "; diff --git a/lib/MECON/HTML/Image.php b/lib/MECON/HTML/Image.php index 8ba131f..2340507 100644 --- a/lib/MECON/HTML/Image.php +++ b/lib/MECON/HTML/Image.php @@ -19,7 +19,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ------------------------------------------------------------------------------- Creado: Thu Aug 21 15:09:10 2003 -Autor: @@author <@@email> +Author: Leandro Lucarella ------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ diff --git a/lib/MECON/Marco/Seccion.php b/lib/MECON/Marco/Seccion.php index 8a2433c..3fdfaec 100644 --- a/lib/MECON/Marco/Seccion.php +++ b/lib/MECON/Marco/Seccion.php @@ -116,6 +116,7 @@ class MECON_Marco_Seccion { $imgSelect = @strval($seccion['imagenSelect']); $this->_tipoMenu = @strval($seccion['tipoMenu']); $this->_link = @strval($seccion['link']); + $this->_imagen = new MECON_Marco_ImagenAnimada( $imgComun, $imgMouseOn, $imgSelect, diff --git a/lib/MECON/includes/no_autorizado.html b/lib/MECON/includes/no_autorizado.html new file mode 100644 index 0000000..0264ea3 --- /dev/null +++ b/lib/MECON/includes/no_autorizado.html @@ -0,0 +1,33 @@ + + +ERROR + + + + + + + + + + + + + + + + + + + +
+
+
+
ACCESO + NO AUTORIZADO
+
+ diff --git a/www/images/general_no_autorizado.gif b/www/images/general_no_autorizado.gif new file mode 100644 index 0000000..4e930dd Binary files /dev/null and b/www/images/general_no_autorizado.gif differ