Looking further the problem seems to be function action_admin etc not being 
called. I've found they do get called from plugins. I don't have the skill 
to debug deeper why action_admin_header, action_admin_stylesheet etc aren't 
being called in admin or theme on a local XAMP or wamp server.

system/admin/theme.php  action_admin_header() NOT loading
system/themes  action_template_header() NOT loading
system/plugins/ both LOADING OK and stack css/js is output

Creating a dummy plugin I can get admin and theme back up
class Dummy extends Plugin
{
public function action_admin_header( $theme )
{
Stack::add( 'admin_stylesheet', 'admin-css' );
Stack::add( 'admin_header_javascript', 'jquery' );
Stack::add( 'admin_header_javascript', 'admin-js' );
}

public function action_template_header($theme)
{
Stack::add('template_stylesheet', $theme->get_url('/css/style.css'), 
'style');
}

}


-- 
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/habari-dev

Reply via email to