X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/b12475b5fb8b24cade1c6f469ca9017871487789..6a5d60ab6ce03a168256c9b77ad1fd3166d50c14:/lib/MECON/Dependencia.php diff --git a/lib/MECON/Dependencia.php b/lib/MECON/Dependencia.php index 020f102..2bcffa4 100644 --- a/lib/MECON/Dependencia.php +++ b/lib/MECON/Dependencia.php @@ -30,7 +30,6 @@ require_once 'DB.php'; // +X2C Class 145 :Dependencia /** - * @package * @access protected */ class Dependencia { @@ -40,6 +39,18 @@ class Dependencia { */ var $codep; + /** + * @var int $nombre + * @access public + */ + var $nombre; + + /** + * @var int $nombre_breve + * @access public + */ + var $nombre_breve; + // ~X2C // +X2C Operation 147 @@ -52,6 +63,22 @@ class Dependencia { function dependencia($codep) // ~X2C { $this->codep = $codep; + $dns = 'mysql://intranet:intranet@intranet-db/novedades'; + $db = DB::connect($dsn); + if (DB::isError($db)) die ($db->getMessage("No pudo conectarse a la base")); + $sql = "SELECT nombre, nombre_breve + FROM Dependencias + WHERE codigo_actual = '$this->codep' AND + dependencia_esta_activa = 1"; + $result = $db->query($sql); + if(DB::isError($result)) + die($result->getMessage("query mal hecho")); + if($result->numRows() > 0) + { + $row = $result->fetchRow(DB_FETCHMODE_ASSOC); + $this->nombre = $row['nombre']; + $this->nombre_breve = $row['nombre_breve']; + } } // -X2C @@ -115,5 +142,27 @@ class Dependencia { } // -X2C + // +X2C Operation 165 + /** + * @return void + * @access public + */ + function getNombre() // ~X2C + { + return $this->nombre; + } + // -X2C + + // +X2C Operation 166 + /** + * @return void + * @access public + */ + function getNombreBreve() // ~X2C + { + return $this->nombre_breve; + } + // -X2C + } // -X2C Class :Dependencia ?> \ No newline at end of file