X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/f2ed326c69eef8b30b23256b53f40271ec66bc30..4d96a4e9e14558cb4b0d546041300ae0fa499d65:/sistema/local_lib/Sistema.php diff --git a/sistema/local_lib/Sistema.php b/sistema/local_lib/Sistema.php index 746be87..2d2f63a 100644 --- a/sistema/local_lib/Sistema.php +++ b/sistema/local_lib/Sistema.php @@ -31,6 +31,8 @@ require_once 'AIError.php'; // +X2C Class 416 :Sistema /** + * Sistema. + * * @access public */ class Sistema { @@ -61,10 +63,10 @@ class Sistema { /** * Enlace a la ayuda del sistema. * - * @var string $linkAyuda + * @var string $link_ayuda * @access public */ - var $linkAyuda = ''; + var $link_ayuda = ''; /** * Indica si esta habilitado. @@ -83,7 +85,7 @@ class Sistema { * @return void * @access public */ - function Sistema($sistema = 0)// ~X2C + function Sistema($sistema = 0) // ~X2C { $this->sistema = $sistema; } @@ -96,7 +98,7 @@ class Sistema { * @return PEAR_Error * @access public */ - function cargar($db)// ~X2C + function cargar($db) // ~X2C { $sistema = intval($this->sistema); if (is_a($db, 'db_result')) { @@ -123,7 +125,7 @@ class Sistema { $this->sistema = $sistema; $this->icono = $icono; # FIXME - new HTML_Icono (o no?) $this->link = $link; - $this->linkAyuda = $link_ayuda; + $this->link_ayuda = $link_ayuda; $this->habilitado = $habilitado; return true; } @@ -136,14 +138,14 @@ class Sistema { * @return PEAR_Error * @access public */ - function guardar($db)// ~X2C + function guardar($db) // ~X2C { $sistema = intval($this->sistema); $where = ''; $datos = array( 'icono' => $this->icono, 'link' => $this->link, - 'link_ayuda' => $this->linkAyuda, + 'link_ayuda' => $this->link_ayuda, 'habilitado' => $this->habilitado ? 1 : 0, ); if ($sistema) { @@ -174,7 +176,7 @@ class Sistema { * @return PEAR_Error * @access public */ - function borrar($db)// ~X2C + function borrar($db) // ~X2C { $sistema = intval($this->sistema); if ($sistema) { @@ -194,7 +196,7 @@ class Sistema { * @return Sistema * @access public */ - function __clone()// ~X2C + function __clone() // ~X2C { return $this; } @@ -202,4 +204,4 @@ class Sistema { } // -X2C Class :Sistema -?> +?> \ No newline at end of file