| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/boutiques/app/code/core/Mage/Page/Block/Template/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Page
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Simple links list block
*
* @category Mage
* @package Mage_Core
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Page_Block_Template_Links extends Mage_Core_Block_Template
{
/**
* All links
*
* @var array
*/
protected $_links = array();
/**
* Set default template
*
*/
protected function _construct()
{
$this->setTemplate('page/template/links.phtml');
}
/**
* Get all links
*
* @return array
*/
public function getLinks()
{
return $this->_links;
}
/**
* Add link to the list
*
* @param string $label
* @param string $url
* @param string $title
* @param boolean $prepare
* @param array $urlParams
* @param int $position
* @param string|array $liParams
* @param string|array $aParams
* @param string $beforeText
* @param string $afterText
* @return Mage_Page_Block_Template_Links
*/
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,
));
if (intval($position) > 0) {
while (isset($this->_links[$position])) {
$position++;
}
$this->_links[$position] = $link;
ksort($this->_links);
} else {
$position = 0;
foreach ($this->_links as $k=>$v) {
$position = $k;
}
$this->_links[$position+10] = $link;
}
return $this;
}
/**
* Removes link by url
*
* @param string $url
* @return Mage_Page_Block_Template_Links
*/
public function removeLinkByUrl($url)
{
foreach ($this->_links as $k => $v) {
if ($v->getUrl() == $url) {
unset($this->_links[$k]);
}
}
return $this;
}
/**
* Prepare tag attributes
*
* @param string|array $params
* @return string
*/
protected function _prepareParams($params)
{
if (is_string($params)) {
return $params;
} elseif (is_array($params)) {
$result = '';
foreach ($params as $key=>$value) {
$result .= ' ' . $key . '="' . addslashes($value) . '"';
}
return $result;
}
return '';
}
/**
* Set first/last
*
* @return Mage_Page_Block_Template_Links
*/
protected function _beforeToHtml()
{
if (!empty($this->_links)) {
reset($this->_links);
$this->_links[key($this->_links)]->setIsFirst(true);
end($this->_links);
$this->_links[key($this->_links)]->setIsLast(true);
}
return parent::_beforeToHtml();
}
}