I want to add icons to my application. I've put the icons in public_html/images/icons/ and I want a DRY way to put them in my view-scripts. So I'd preferably not repeat..
<img src="<?php echo $this->baseUrl();?>/images/icons/plus-circle.png"</a>
..for every icon. I'd prefer a simple object+function call. What is a best practice for this?
I suspect I should use a view helper, but I don't understand those fully yet.
Thanks!