// $Id$
//
-require_once 'AIError.php';
+require_once 'AI/Error.php';
-// +X2C Class 416 :Sistema
+// +X2C Class 416 :AI_Sistema
/**
* Sistema.
*
+ * @package AI
* @access public
*/
-class Sistema {
+class AI_Sistema {
/**
* ID del sistema (ID en SAMURAI).
*
* @return void
* @access public
*/
- function Sistema($sistema = 0) // ~X2C
+ function AI_Sistema($sistema = 0) // ~X2C
{
$this->sistema = $sistema;
}
// Obtengo la fila.
$row = $result->fetchRow(DB_FETCHMODE_ASSOC);
if (!$row) {
- return new AIError(AIERROR_NO_RESULTADOS,
+ return new AI_Error(AI_ERROR_NO_RESULTADOS,
"No hay más resultados en la DB [sistema=$sistema]");
}
// Asigno valores al objeto.
'link_ayuda' => $this->link_ayuda,
'habilitado' => $this->habilitado ? 1 : 0,
);
+ // FIXME - buscar otra forma de distinguir entre INSERT y UPDATE.
if ($sistema) {
$accion = DB_AUTOQUERY_UPDATE;
$where = "sistema = $sistema";
}
// -X2C
-} // -X2C Class :Sistema
+} // -X2C Class :AI_Sistema
-?>
\ No newline at end of file
+?>