GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Sunday, April 10, 2011

Zend - Zend Helper

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();?>
Share/Bookmark

No comments:

Post a Comment