2 // vim: set binary noeol et sw=4 sts=4 :
5 // Lucarella, Schein, Arena
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
12 * XXX detailed description
25 var $campos = array('Fecha', 'Autor', 'Texto');
29 trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING);
30 return "NO IMPLEMENTADO";
33 // Carga en el objeto el próximo ítem disponible.
36 trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING);
40 // Devuelve cantidad total de ítems disponibles.
43 trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING);
47 // Obtiene cabeceras para el listador como un array.
48 function getHeaderArray()
53 // Devuelve los campos a listar del objeto actual como un array.
57 foreach ($this->campos as $campo) $arr[] = $this->$campo;