View of /mambo/branches/4.6/includes/frontend.php
Parent Directory
|
Revision Log
Revision 964 -
(download)
(annotate)
Tue Feb 6 06:05:27 2007 UTC (6 years, 3 months ago) by elpie
File size: 1244 byte(s)
Tue Feb 6 06:05:27 2007 UTC (6 years, 3 months ago) by elpie
File size: 1244 byte(s)
Removed Miro notice from files and placed into copyright file.
<?php /** * @package Mambo * @copyright Refer to copyright.php * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @author Mambo Foundation Inc see README.php */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * Displays the capture output of the main element */ function mosMainBody() { $handler =& mosComponentHandler::getInstance(); $handler->mosMainBody(); } /** * Utility functions and classes */ function mosLoadComponent( $name ) { // set up some global variables for use by the frontend component global $mainframe, $database; include( $mainframe->getCfg( 'absolute_path' )."/components/com_$name/$name.php" ); } /** * @param string THe template position */ function mosCountModules( $position='left' ) { $handler =& mosModuleHandler::getInstance(); return $handler->mosCountModules($position); } /** * @param string The position * @param int The style. 0=normal, 1=horiz, -1=no wrapper */ function mosLoadModules( $position='left', $style=0 ) { $handler =& mosModuleHandler::getInstance(); return $handler->mosLoadModules($position, $style); } /** * Assembles head tags */ function mosShowHead() { $mainframe =& mosMainFrame::getInstance(); $mainframe->mosShowHead(); } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

