Example #1
0
    // Para sobreescribir
    function masWhere()
    {
        return "";
    }
}
//// OFICIAL /////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/** @class_definition pcrednet_articulos */
//////////////////////////////////////////////////////////////////
//// PC REDNET /////////////////////////////////////////////////////
class pcrednet_articulos extends oficial_articulos
{
    function masWhere()
    {
        $masWhere = " AND obsoleto = false";
        return $masWhere;
    }
}
//// PC REDNET /////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/** @main_class_definition oficial_articulos */
class articulos extends pcrednet_articulos
{
}
$iface_articulos = new articulos();
$iface_articulos->contenidos();
?>

<?php 
include "../includes/right_bottom.php";