2012-07-17 22 views

Respuesta

12

En la secuencia de comandos de la vista de bloque agregué lo siguiente que agregó un enlace a /wishlist/.

<a href="<?php echo $this->getUrl('wishlist') ?>">Wishlist</a> 
0

Es posible que desee echar un vistazo a la clase 'Mage_Page_Block_Template_Links'. En esta clase se puede ver el siguiente método:

public function addLink($label, $url='', $title='', $prepare=false, $urlParams=array(), 
    $position=null, $liParams=null, $aParams=null, $beforeText='', $afterText='') 
{ 
    if (is_null($label) || false===$label) { 
     return $this; 
    } 
    $link = new Varien_Object(array(
     'label'   => $label, 
     'url'   => ($prepare ? $this->getUrl($url, (is_array($urlParams) ? $urlParams : array())) : $url), 
     'title'   => $title, 
     'li_params'  => $this->_prepareParams($liParams), 
     'a_params'  => $this->_prepareParams($aParams), 
     'before_text' => $beforeText, 
     'after_text' => $afterText, 
    )); 

    $this->_links[$this->_getNewPosition($position)] = $link; 
    if (intval($position) > 0) { 
     ksort($this->_links); 
    } 

    return $this; 
} 

esta es la función para añadir un enlace a la variable de $ _link protegida; más adelante, este enlace será escrito por su plantilla con un bucle foreach.

Puede recuperar el valor de esta variable con:

public function getLinks() 
    { 
     return $this->_links; 
    } 

por ejemplo en el archivo ; página/plantilla/links.phtml

<?php $_links = $this->getLinks(); ?> 
<?php if(count($_links)>0): ?> 
<ul class="links"<?php if($this->getName()): ?> id="<?php echo $this->getName() ?>"<?php endif;?>> 
    <?php foreach($_links as $_link): ?> 
     <?php if ($_link instanceof Mage_Core_Block_Abstract):?> 
      <?php echo $_link->toHtml() ?> 
     <?php else: ?> 
      <li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo $_link->getLabel() ?></a><?php echo $_link->getAfterText() ?></li> 
     <?php endif;?> 
    <?php endforeach; ?> 
</ul> 
<?php endif; ?> 

A continuación, puede crear una nueva función para su bloque personalizado, o puede extender este bloque y usar las funciones removeLinkByUrl y addLink.

+0

Ya he eliminado el enlace de la lista de deseos. Quiero agregarlo en otro bloque –

Cuestiones relacionadas