Okay, after a lot of searching around the code, I found what I needed
in the class registry.

My class:

class ConcisePrinterHelper extends Helper
{
    var $view = null;

    ...

    function __construct()
    {
        if (!isset($this->view))
        {
            if (ClassRegistry::isKeySet('view'))
            {
                $this->view =& ClassRegistry::getObject('view');
            }
        }
        ...
    }
    ...
}


Hope that helps someone else when they need it :)

Jeff


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to