File: application/views/helpers/HelloHelper.php
<?php
require_once 'Zend/View/Helper/Abstract.php';
class Zend_View_Helper_HelloHelper extends Zend_View_Helper_Abstract{
function helloHelper(){
return 'Hello Comes From Helper';
}
}
Then in the views file, call it using:
<?php echo $this->helloHelper();?>
No comments:
Post a Comment