[xoops-cvslog 3655] CVS update: xoops2jp/html/kernel

Back to archive index

Minahito minah****@users*****
2006年 7月 20日 (木) 17:18:55 JST


Index: xoops2jp/html/kernel/XCube_LanguageManager.class.php
diff -u /dev/null xoops2jp/html/kernel/XCube_LanguageManager.class.php:1.1.2.1
--- /dev/null	Thu Jul 20 17:18:55 2006
+++ xoops2jp/html/kernel/XCube_LanguageManager.class.php	Thu Jul 20 17:18:55 2006
@@ -0,0 +1,169 @@
+<?php
+/**
+ * @package XCube
+ * @version $Id: XCube_LanguageManager.class.php,v 1.1.2.1 2006/07/20 08:18:55 minahito Exp $
+ */
+
+/**
+ * This class manages resources of each languages. By requests of other
+ * components, this class loads files, or checks the existence of the specified
+ * resource, or composes filepath to access real files. And, it manages some
+ * locale informations.
+ * 
+ * Rules about language are different at each bases. So it's important that a 
+ * base defines the sub class of this class if it can't use this class directly.
+ * 
+ * And, XCube or bases have to make each languages possible to have its sub
+ * class. By that, languages become able to implement their logic to solve
+ * problems.
+ * 
+ * This class calls sub directories of each languages 'section'. 'section' is
+ * used to load image files and etc.
+ */
+class XCube_LanguageManager
+{
+	/**
+	 * @access protected
+	 * @var string
+	 */
+	var $mLanguageName;
+	
+	/**
+	 * @access protected
+	 * @var string
+	 */
+	var $mLocalName;
+	
+	function XCube_LanguageManager()
+	{
+		$this->mLanguageName = $this->getFallbackLanguage();
+		$this->mLocalName = $this->getFallbackLocale();
+	}
+
+	/**
+	 * Normally, this member function is called soon, after constructor.
+	 * To follow the base, initialize.
+	 */	
+	function prepare()
+	{
+	}
+	
+	/**
+	 * Set locale name.
+	 * 
+	 * @param string $local locale name
+	 */
+	function setLocale($locale)
+	{
+		$this->mLanguageName = $locale;
+	}
+	
+	/**
+	 * Set language name.
+	 * 
+	 * @param string $language language name
+	 */
+	function setLanguage($language)
+	{
+		$this->mLanguageName = $language;
+	}
+	
+	/**
+	 * Load the global message catalog which is defined in the base module.
+	 */
+	function loadGlobalMessageCatalog()
+	{
+	}
+	
+	/**
+	 * Load the module message catalog which is defined in the specified
+	 * module.
+	 * 
+	 * @param string $moduleName A name of module.
+	 */
+	function loadModuleMessageCatalog($moduleName)
+	{
+	}
+	
+	/**
+	 * Load the theme message catalog which is defined in the specified module.
+	 * 
+	 * @param string $themeName A name of theme.
+	 */
+	function loadThemeMessageCatalog($themeName)
+	{
+	}
+	
+	/**
+	 * check the exstence of the specified file in the specified section.
+	 * 
+	 * @access public
+	 * @param string $section  A name of section.
+	 * @param string $filename A name of file
+	 * @return bool
+	 */	
+	function existFile($section, $filename)
+	{
+	}
+	
+	/**
+	 * Return the file path by the specified section and the specified file.
+	 * 
+	 * @access public
+	 * @param string $section  A name of section.
+	 * @param string $filename A name of file
+	 * @return string
+	 */	
+	function getFilepath($section, $filename)
+	{
+	}
+
+	/**
+	 * Get file contents and return it.
+	 * 
+	 * @access public
+	 * @param string $section  A name of section.
+	 * @param string $filename A name of file
+	 * @return string
+	 */	
+	function loadTextFile($section, $filename)
+	{
+	}
+
+	/**
+	 * Return translated message.
+	 * 
+	 * @param  string $word
+	 * @return string
+	 * 
+	 * @note This member function is test.
+	 */	
+	function translate($word)
+	{
+		return $word;
+	}
+
+	/**
+	 * Return default language name.
+	 * 
+	 * @access protected
+	 * @return string
+	 */
+	function getFallbackLanguage()
+	{
+		return "eng";
+	}
+
+	/**
+	 * Return default locale name.
+	 * 
+	 * @access protected
+	 * @return string
+	 */
+	function getFallbackLocale()
+	{
+		return "EG";
+	}
+}
+
+?>
\ No newline at end of file


xoops-cvslog メーリングリストの案内
Back to archive index