elseif (!$res) {
return false;
}
-
$this->id = $res['id'];
- $fecha =& new Date ($res['fecha'].' 00:00:00');
- $this->fecha = $fecha;
+ $this->fecha = $res['fecha'];
$this->script = $res['script'];
$this->id_sistema = $res['id_sistema'];
$this->nombre_sistema = $res['nombre_sistema'];
*/
function guardar($db = null, $nuevo = true)
{
+
+ //@TODO PASAR ESTO A UNA CLASE SERVIDOR
//Busco el servidor
$res = $db->query('SELECT id, escala * procesos AS ponderacion
FROM yatta.servidores
$this->nota = null;
$this->icono = null;
}
+
+ /**
+ * Devuelve un array asociativo con los valores del proceso.
+ *
+ * @return array
+ * @access public
+ */
+ function obtenerDatos() {
+ return array (
+ 'script' => $this->script,
+ 'id_sistema' => $this->id_sistema,
+ 'descripcion' => $this->descripcion,
+ 'owner' => $this->owner,
+ 'destinos' => $this->destinos,
+ 'prioridad' => $this->prioridad,
+ 'scheduling' => $this->scheduling,
+ 'notificar' => $this->notificar,
+ );
+ }
}
?>
\ No newline at end of file