Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/09/2011, 03:57
mnieto
 
Fecha de Ingreso: noviembre-2007
Mensajes: 32
Antigüedad: 17 años
Puntos: 2
Respuesta: Ordenar foreach de manera inversa

Muy buenas;

Este es el código completo de la página, no se si será esto a lo que te refieres

Código PHP:
<div id="informacion">
<div id="slider1" class="nivoSlider">
    <img src="<?php echo image_path'/uploads/eventos/' $evento->getImagen3() ); ?>" alt="<?php echo $evento->getTitulo()  ?>" />
</div><!--cerramos slider-->
<div id="contenido_submenus">
    <ul class="tabs">
        <?php if ( trimstrip_tags$evento->getResultados() ) ) != '' && $evento->getEstadoEventoId() == ): ?><li id="resultados_ajax"><a href="#resultados" title="<?php echo __('Resultados'); ?>" class="botonera_zona_eventos"><?php echo __('Resultados'); ?></a></li><?php endif; ?>
        <?php if ( trimstrip_tags$evento->getFechasHorarios() ) ) != '' ): ?><li id="fecha_horarios_eventos_ajax"><a href="#fecha_horarios" title="<?php echo __('Fecha y horarios'); ?>" class="botonera_zona_eventos"><?php echo __('Fecha y horarios'); ?></a></li><?php endif; ?>
        <?php if ( $evento->countNoticiass() != ): ?><li id="noticias_eventos_ajax"><a href="#noticias_eventos" title="<?php echo __('Noticias'); ?>" class="botonera_zona_eventos"><?php echo __('Noticias'); ?></a></li><?php endif; ?>
        <?php if ( trimstrip_tags$evento->getInformacion() ) ) != '' ): ?><li id="mas_info_ajax"><a href="#mas_info" title="<?php echo __('+ Información'); ?>" class="botonera_zona_eventos"><?php echo __('+ Información'); ?></a></li><?php endif; ?>
        <?php if ( trimstrip_tags$evento->getVentaEntradas() ) ) != '' && $evento->getEstadoEventoId() == ): ?><li id="entradas_ajax"><a href="#entradas" title="<?php echo __('Venta de entradas'); ?>" class="botonera_zona_eventos"><?php echo __('+ Información'); ?></a></li><?php endif; ?>
    </ul>

<div class="tab_container">
    
    <?php if ( trimstrip_tags$evento->getResultados() ) ) != '' && $evento->getEstadoEventoId() == ): ?>
        <div id="resultados" class="tab_content"><?php echo $evento->getResultados() ?></div>
    <?php endif; ?>

    <?php if ( trimstrip_tags$evento->getFechasHorarios() ) ) != '' ): ?>
    <div id="fecha_horarios" class="tab_content"><?php echo $evento->getFechasHorarios() ?></div>
    <?php endif; ?>

    <?php if ( $evento->countNoticiass() != ): ?>
            <div id="noticias_eventos" class="tab_content">
                <p class="rojo_contacto_titulo_seccion"><?php echo __('Noticias'); ?></p>
                <?php foreach( $evento->getNoticiass() as $noticia ): ?>
                    <?php include_partial'noticias/breveNoticia', array( 'noticia' => $noticia'class' => '' ) ); ?>
                <?php endforeach; ?>
            </div><!--cerramos noticias-->
    <?php endif; ?>

    <?php if ( trimstrip_tags$evento->getInformacion() ) ) != '' ): ?>    
        <div id="mas_info" class="tab_content"><?php echo $evento->getInformacion() ?></div>
    <?php endif; ?>

    <?php if ( trimstrip_tags$evento->getVentaEntradas() ) ) != '' && $evento->getEstadoEventoId() == ): ?>    
        <div id="entradas" class="tab_content"><?php echo $evento->getVentaEntradas() ?></div>
    <?php endif; ?>
    
</div><!--cerramos tab_container-->


</div><!--cerramos contenido submenus-->
<?php include_partial'default/patrocinadores', array( 'class' => 'patrocinadores2' ) ) ?>
</div><!--cerramos informacion-->