$mosmsg";
}
echo $GLOBALS['_MOS_OPTION']['buffer'];
if ($mosmsg && $popMessages) {
echo "\n";
}
}
/**
* 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" );
}
/**
* Cache some modules information
* @return array
*/
function &initModules() {
global $database, $my, $Itemid;
if (!isset( $GLOBALS['_MOS_MODULES'] )) {
$query = "SELECT id, title, module, position, content, showtitle, params"
."\nFROM #__modules AS m, #__modules_menu AS mm"
. "\nWHERE m.published='1' AND m.access <= '$my->gid' AND m.client_id='0'"
. "\nAND mm.moduleid=m.id"
. "\nAND (mm.menuid = '$Itemid' OR mm.menuid = '0')"
. "\nORDER BY ordering";
$database->setQuery( $query );
$modules = $database->loadObjectList();
foreach ($modules as $module) {
$GLOBALS['_MOS_MODULES'][$module->position][] = $module;
}
}
return $GLOBALS['_MOS_MODULES'];
}
/**
* @param string THe template position
*/
function mosCountModules( $position='left' ) {
global $database, $my, $Itemid;
$modules =& initModules();
if (isset( $GLOBALS['_MOS_MODULES'][$position] )) {
return count( $GLOBALS['_MOS_MODULES'][$position] );
} else {
return 0;
}
}
/**
* @param string The position
* @param int The style. 0=normal, 1=horiz, -1=no wrapper
*/
function mosLoadModules( $position='left', $style=0 ) {
global $mosConfig_gzip, $mosConfig_absolute_path, $database, $my, $Itemid, $mosConfig_caching;
$tp = mosGetParam( $_GET, 'tp', 0 );
if ($tp) {
echo '
';
echo $position;
echo '
';
return;
}
$style = intval( $style );
$cache =& mosCache::getCache( 'com_content' );
require_once( $mosConfig_absolute_path . '/includes/frontend.html.php' );
$allModules =& initModules();
if (isset( $GLOBALS['_MOS_MODULES'][$position] )) {
$modules = $GLOBALS['_MOS_MODULES'][$position];
} else {
$modules = array();
}
if (count( $modules ) < 1) {
$style = 0;
}
if ($style == 1) {
echo "\n";
echo "\n";
}
$prepend = ($style == 1) ? "| \n" : '';
$postpend = ($style == 1) ? " | \n" : '';
$count = 1;
foreach ($modules as $module) {
$params =& new mosParameters( $module->params );
echo $prepend;
if ((substr("$module->module",0,4))=="mod_") {
if ($params->get('cache') == 1 && $mosConfig_caching == 1) {
$cache->call('modules_html::module2', $module, $params, $Itemid, $style );
} else {
modules_html::module2( $module, $params, $Itemid, $style, $count );
}
} else {
if ($params->get('cache') == 1 && $mosConfig_caching == 1) {
$cache->call('modules_html::module', $module, $params, $Itemid, $style );
} else {
modules_html::module( $module, $params, $Itemid, $style );
}
}
echo $postpend;
$count++;
}
if ($style == 1) {
echo "
\n
\n";
}
}
/**
* Assembles head tags
*/
function mosShowHead() {
global $database, $option, $my, $mainframe, $_VERSION;
global $mosConfig_MetaDesc, $mosConfig_MetaKeys, $mosConfig_live_site, $mosConfig_sef, $mosConfig_absolute_path, $mosConfig_sitename, $mosConfig_favicon;
$task = mosGetParam( $_REQUEST, 'task', '' );
$mainframe->appendMetaTag( 'description', $mosConfig_MetaDesc );
$mainframe->appendMetaTag( 'keywords', $mosConfig_MetaKeys );
$mainframe->addMetaTag( 'Generator', $_VERSION->PRODUCT . " - " . $_VERSION->COPYRIGHT);
$mainframe->addMetaTag( 'robots', 'index, follow' );
echo $mainframe->getHead();
if ( isset($mosConfig_sef) && $mosConfig_sef ) {
echo "\r\n";
}
if ( $my->id ) {
?>
setQuery( $query );
$id = $database->loadResult();
// load the row from the db table
$row = new mosComponent( $database );
$row->load( $id );
// get params definitions
$params =& new mosParameters( $row->params, $mainframe->getPath( 'com_xml', $row->option ), 'component' );
$live_bookmark = $params->get( 'live_bookmark', 0 );
if ( $live_bookmark ) {
// custom bookmark file name
$bookmark_file = $params->get( 'bookmark_file', $live_bookmark );
$link_file = $mosConfig_live_site .'/cache/'. $bookmark_file;
$filename = $mosConfig_absolute_path .'/cache/'. $bookmark_file;
$cache = $params->get( 'cache', 1 );
$cache_time = $params->get( 'cache_time', 3600 );
$title = $params->def( 'title', $mosConfig_sitename );
// checks to see if cache file exists, to determine whether to create a new one
if ( !file_exists( $filename ) || ( ( time() - filemtime( $filename ) ) > $cache_time ) ) {
$tempTask = $task;
$task = 'live_bookmark';
// sets bookmark feed type
$_GET['feed'] = str_replace( '.xml', '', $live_bookmark );
// loads rss component to create bookmark file
require_once( $mosConfig_absolute_path .'/components/com_rss/rss.php' );
$task = $tempTask;
}
// outputs link tag for page
?>