look I have the head helper made by rossoft:
That's functionning, nothing more, no core change.
app_controller.php
class AppController extends Controller {
var $helpers = array('Javascript', 'Head');
}
layout/default.thtml :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title><?php echo $title_for_layout;?></title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<?php echo $html->charset('UTF-8');?>
<?php echo $html->css('default');?>
<?php if (isset($head)) echo $head->print_registered();?>
</head>
<body>
<?php echo $content_for_layout;?>
</body>
</html>
modfather wrote:
> Olivier, thanks for your persistance, but you could have an empty
> function with nothing returning, you still have the same result, the
> fact is if it works by adding the helper to helper array in the
> controller.php file, it should work by adding the helper to the helper
> array in the appcontroller, but it doesn't, somehwere along the line
> the class is not being registered - it might have something to do with
> the flow of logic of the chain of execution of classes.
>
>
> >
>
>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---