Hello,

I'm try output data from helper:

<?php

class Zend_View_Helper_SiteHeader
{

    protected $_view;

    public function setView($view)
    {
        $this->_view = $view;
    }

    public function SiteHeader()
    {
        $output = $this->_view->doctype('XHTML1_STRICT');
        $output.= ' test';
        return $output;
    }


Helper return this:

Object id #29 test

When i'm output more methods from Zend_View, helper return object not data?

Reply via email to