⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 class.mos_ui.inc.php

📁 eGroupWare is a multi-user, web-based groupware suite developed on a custom set of PHP-based APIs. C
💻 PHP
字号:
<?php	/**************************************************************************\	* eGroupWare SiteMgr - SiteMgr support for Mambo Open Source templates     *	* http://www.egroupware.org                                                *	* Written and copyright by RalfBecker@outdoor-training.de                  *	* --------------------------------------------                             *	*  This program is free software; you can redistribute it and/or modify it *	*  under the terms of the GNU General Public License as published by the   *	*  Free Software Foundation; either version 2 of the License, or (at your  *	*  option) any later version.                                              *	\**************************************************************************/	/* $Id: class.mos_ui.inc.php,v 1.8 2004/06/15 08:09:38 ralfbecker Exp $ */	function mosCountModules($contentarea)	{		global $objui,$mos_content_cache;		if (!isset($mos_content_cache[$contentarea]))		{			 $mos_content_cache[$contentarea] = $objui->t->process_blocks($contentarea);		}		return !empty($mos_content_cache[$contentarea]);	}	function mosLoadModules($contentarea)	{		global $objui,$mos_content_cache;		if (!isset($mos_content_cache[$contentarea]))		{			 $mos_content_cache[$contentarea] = $objui->t->process_blocks($contentarea);		}		echo $mos_content_cache[$contentarea];	}	function mosLoadComponent($component)	{		return '';	}	function initEditor()	{	}	function sefreltoabs($url)	{		echo $url;	}	// this is just to make some templates work, it does nothing actually atm.	class mos_database	{		function setQuery($query)		{		}		function loadObjectList()		{			return array();		}	}	class ui	{		var $t;		function ui()		{			$themesel = $GLOBALS['sitemgr_info']['themesel'];			$this->templateroot = $GLOBALS['sitemgr_info']['site_dir'] . SEP . 'templates' . SEP . $themesel;			$this->t = new Template3($this->templateroot);			$this->t->transformer_root = $this->mos_compat_dir = realpath(dirname(__FILE__).'/../mos-compat');		}		function displayPageByName($page_name)		{			global $objbo;			global $page;			$objbo->loadPage($GLOBALS['Common_BO']->pages->so->PageToID($page_name));			$this->generatePage();		}		function displayPage($page_id)		{			global $objbo;			$objbo->loadPage($page_id);			$this->generatePage();		}		function displayIndex()		{			global $objbo;			$objbo->loadIndex();			$this->generatePage();		}		function displayTOC($categoryid=false)		{			global $objbo;			$objbo->loadTOC($categoryid);			$this->generatePage();		}		function generatePage()		{			global $database;			$database = new mos_database;			// add a content-type header to overwrite an existing default charset in apache (AddDefaultCharset directiv)			header('Content-type: text/html; charset='.$GLOBALS['phpgw']->translation->charset());			// define global $mosConfig vars			global $mosConfig_sitename,$mosConfig_live_site,$modConfig_offset,$cur_template;			$mosConfig_sitename = $this->t->get_meta('sitename').': '.$this->t->get_meta('title');			$mosConfig_live_site = substr($GLOBALS['sitemgr_info']['site_url'],0,-1);			$mosConfig_offset = (int) $GLOBALS['phpgw_info']['user']['preferences']['common']['tz_offset'];			$cur_template = $GLOBALS['sitemgr_info']['themesel'];			define('_DATE_FORMAT_LC',str_replace(array('d','m','M','Y'),array('%d','%m','%b','%Y'),				$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']).				($GLOBALS['phpgw_info']['user']['preferences']['common']['timeformat']=='12'?' %I:%M %p' : ' %H:%M'));			define('_DATE_FORMAT',$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'].				($GLOBALS['phpgw_info']['user']['preferences']['common']['timeformat']=='12'?' h:i a' : ' H:i'));			define('_SEARCH_BOX',lang('Search').' ...');			define( '_ISO','charset='.$GLOBALS['phpgw']->translation->charset());			define( '_VALID_MOS',True );			ini_set('include_path',$this->mos_compat_dir.(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN' ? ';' : ':').ini_get('include_path'));			ob_start();		// else some modules like the redirect wont work			include($this->templateroot.'/index.php');			ob_end_flush();		}	}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -