X-Git-Url: https://git.llucax.com/mecon/yatta.git/blobdiff_plain/04fbfb4dc44bc6be937345880455d63478f1e62d..be82111e27a9d9b492bdde542a283624c752b3fc:/lib/YATTA/Proceso.php diff --git a/lib/YATTA/Proceso.php b/lib/YATTA/Proceso.php index 2c1e2fe..2838fd3 100644 --- a/lib/YATTA/Proceso.php +++ b/lib/YATTA/Proceso.php @@ -209,10 +209,8 @@ class YATTA_Proceso extends MECON_DBO { 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']; @@ -386,6 +384,8 @@ class YATTA_Proceso extends MECON_DBO { */ 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 @@ -484,5 +484,24 @@ class YATTA_Proceso extends MECON_DBO { $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