A good way to have a component in a view:
class ImageComponent extends Object
{
function startup(&$controller) {
$this->controller =& $controller;
$this->controller->set('image', $this);
}
function hello() { return "hi!"; }
}
it will be available in views: echo $image->hello();
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---