Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/11/2009, 07:03
rodrigo_00
 
Fecha de Ingreso: noviembre-2007
Ubicación: Lanus, Buenos Aires
Mensajes: 178
Antigüedad: 17 años, 1 mes
Puntos: 14
Respuesta: ActionStack y Layout

Yo generalmente cuando tengo que hacer algo asi uso ViewHelpers para las distintas columnas, crear un controlador para armar ese tipo de cosas no me gusta mucho, y el view helper me resulta mas limpio, ademas se evita el uso del actionStack que no es taaan bueno en cuanto a rendimiento

Código PHP:
<?php echo $this->doctype(); ?>
<html xmlns="" xml:lang="es" lang="es"> 
<head>
    <?php echo $this->HeadMeta(); ?> 
    <?php echo $this->headTitle(); ?> 
    <?php echo $this->headLink()->prependStylesheet($this->baseUrl().'/css/estilo.css'); ?> 
</head>
<body>

    <div id="header">
    <?php echo $this->siteHeader(); ?>    
    </div>

    <div id="content">
        <div id="sidebarLeft">
        <?php echo $this->sidebarLeft(); ?>
        </div>
                 
        <div id="sidebarRight">    
        <?php echo $this->sidebarRight(); ?>        
         </div>
     </div>
     
    <div id="footer">    
    <?php echo $this->siteFooter(); ?>
    </div>

</body>
</html>

Personalmente, mi layout quedaria asi, con 4 view helpers (siteHeader, sidebarLeft, sidebarRight, siteFooter)

y es mucho mas simple y limpio que andar haciendo todo lo anterior