Hierarchy: Head Functions

From Dreamwidth Notes
Revision as of 06:12, 8 May 2009 by Seperis (Talk | contribs)

Jump to: navigation, search

Documentation here.

print_head function

Associated Classes

class Page
Functions
function print_head [fixed];
Print server side supplied head content. This is a fixed function, so you can't override it. See [method[Page.print_custom_head()]] if you want to supply custom head content.
Structure
 

function Page::print_head() {

   print $.head_content;
   $this->print_custom_head();
}
function Page::print_custom_head() 

{

   # blank
}