2 /* This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
3 and is published under the AGPL license. */
5 class Syj_View_Helper_Anchor extends Zend_View_Helper_HtmlElement
7 public function Anchor($href, $text = null, array $attribs=array(), $escape = true) {
8 $attribs = array_merge(array('href' => $href), $attribs);
12 $content = $escape ? $this->view->escape($text) : $text;
13 $html = '<a' . $this->_htmlAttribs($attribs) . '>' . $content . '</a>';