Why do you need to access the view object? Exactly what do you want to
do?
Do a print_r($this); from a helper function to see what objects are
accessible (the view and the controller aren't directly accessible)

If you really need to access the view, create a function within the
helper like

function init(&$view)
{
    $this->view =& $view;
}

Then in your view, call $myhelper->init($this);


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to