| 12 |
* Displays the capture output of the main element |
* Displays the capture output of the main element |
| 13 |
*/ |
*/ |
| 14 |
function mosMainBody() { |
function mosMainBody() { |
| 15 |
$handler = mosComponentHandler::getInstance(); |
$handler =& mosComponentHandler::getInstance(); |
| 16 |
$handler->mosMainBody(); |
$handler->mosMainBody(); |
| 17 |
} |
} |
| 18 |
|
|
| 20 |
* @param string THe template position |
* @param string THe template position |
| 21 |
*/ |
*/ |
| 22 |
function mosCountModules( $position='left' ) { |
function mosCountModules( $position='left' ) { |
| 23 |
$handler = mosModuleHandler::getInstance(); |
$handler =& mosModuleHandler::getInstance(); |
| 24 |
return $handler->mosCountModules($position); |
return $handler->mosCountModules($position); |
| 25 |
} |
} |
| 26 |
|
|
| 29 |
* @param int The style. 0=normal, 1=horiz, -1=no wrapper |
* @param int The style. 0=normal, 1=horiz, -1=no wrapper |
| 30 |
*/ |
*/ |
| 31 |
function mosLoadModules( $position='left', $style=0 ) { |
function mosLoadModules( $position='left', $style=0 ) { |
| 32 |
$handler = mosModuleHandler::getInstance(); |
$handler =& mosModuleHandler::getInstance(); |
| 33 |
return $handler->mosLoadModules($position, $style); |
return $handler->mosLoadModules($position, $style); |
| 34 |
} |
} |
| 35 |
/** |
/** |
| 36 |
* Assembles head tags |
* Assembles head tags |
| 37 |
*/ |
*/ |
| 38 |
function mosShowHead() { |
function mosShowHead() { |
| 39 |
$mainframe = mosMainFrame::getInstance(); |
$mainframe =& mosMainFrame::getInstance(); |
| 40 |
$mainframe->mosShowHead(); |
$mainframe->mosShowHead(); |
| 41 |
} |
} |
| 42 |
?> |
?> |