Example #1
0
        $noticias = '';
        while ($row = $__BD->db_fetch_array($result)) {
            $id = $row[0];
            $this->procesarImagen($id);
            $titulo = $__LIB->traducir("noticias", "titulo", $id, $row["titulo"]);
            $menu .= '<a href="noticias.php#' . $id . '">' . $titulo . '</a><br/>';
            $noticias .= $this->mostrarNoticia($row, $titulo);
        }
        if (!$idNoticia) {
            echo $menu;
        }
        echo $noticias;
        if ($idNoticia) {
            echo '<p class="separador"><a class="botLista" href="noticias.php">' . _MAS_NOTICIAS . '</a>';
        }
        echo '</div>';
    }
}
//// OFICIAL /////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/** @main_class_definition oficial_noticias */
class noticias extends oficial_noticias
{
}
$iface_noticias = new noticias();
$iface_noticias->contenidos();
?>


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