Используя ответ @ ArneRie:
В views / helpers / Icon.php я написал следующий класс:
class Zend_View_Helper_Icon extends Zend_View_Helper_Abstract
{
//$icon is the name of an icon without the ".png" at the end because all icons
//are .png
public function icon($icon)
{
$baseUrl = Zend_Controller_Front::getInstance()->getBaseUrl();
return sprintf('<img src="%s/images/icons/%s.png">', $baseUrl, $icon);
}
}
В моем файле view в views / scripts / index / index.phtml я затем вызываю метод объекта Icon следующим образом:
<?php echo $this->icon('plus-circle');?>