Fine? What do u mean? :) If I have a theme and a plugin with head(), what should happen? Or, if it's a couple of plugins?
class qa_html_theme extends qa_html_theme_base
{
function head()
{
// head theme
}
}
class qa_html_theme_layer extends qa_html_theme_base
{
function head()
{
// head layer 1
}
}
class qa_html_theme_layer extends qa_html_theme_base
{
function head()
{
// head layer 2
}
}