X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/1481a58e991e9ed54d6cba23e82184eaca48f9fe..765b3c57f081d3863ff59951a67da5874554db42:/src/lib/Item.php diff --git a/src/lib/Item.php b/src/lib/Item.php index 99a3e6f..3b18def 100644 --- a/src/lib/Item.php +++ b/src/lib/Item.php @@ -17,35 +17,68 @@ */ class Item { - // Attributes - /** - * XXX - * @access public - */ - var $autor; - /** - * XXX - * @access public - */ + var $autor; var $fecha; - - /** - * XXX - * @access public - */ var $texto; + // Campos a mostrar + var $campos = array('Fecha', 'Autor', 'Texto'); - // Associations - // Operations - /** - * XXX - * - * @access public - * @returns string - */ function toHTML() { + trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING); + return "NO IMPLEMENTADO"; + } + + /// Carga en el objeto el próximo ítem disponible. + function seek($pos) + { + trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING); + return false; + } + + /// Carga en el objeto el próximo ítem disponible. + function next() + { + trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING); + return false; + } + + /// Devuelve cantidad total de ítems disponibles. + function getTotal() + { + trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING); + return 0; + } + + /// Obtiene cabeceras para el listador como un array. + function getHeaderArray() + { + return $this->campos; + } + + /// Devuelve un nombre imprimible del objeto. + function getObjName() + { + return get_class($this); + } + + /// Devuelve un nombre imprimible del objeto en plural. + function getObjNamePl() + { + return get_class($this).'s'; + } + + /// Devuelve los campos a listar del objeto actual como un array. + function asArray() + { + $arr = array(); + foreach ($this->campos as $campo) + { + $campo = strtolower($campo); + $arr[] = $this->$campo; + } + return $arr; } }