You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					80 lines
				
				2.3 KiB
			
		
		
			
		
	
	
					80 lines
				
				2.3 KiB
			| 
											13 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
| 
											13 years ago
										 |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
| 
											13 years ago
										 |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | namespace yii\i18n;
 | ||
|  | 
 | ||
| 
											13 years ago
										 | use Yii;
 | ||
|  | 
 | ||
| 
											13 years ago
										 | /**
 | ||
|  |  * PhpMessageSource represents a message source that stores translated messages in PHP scripts.
 | ||
|  |  *
 | ||
| 
											13 years ago
										 |  * PhpMessageSource uses PHP arrays to keep message translations.
 | ||
|  |  *
 | ||
|  |  * - Each PHP script contains one array which stores the message translations in one particular
 | ||
|  |  *   language and for a single message category;
 | ||
|  |  * - Each PHP script is saved as a file named as `[[basePath]]/LanguageID/CategoryName.php`;
 | ||
|  |  * - Within each PHP script, the message translations are returned as an array like the following:
 | ||
|  |  *
 | ||
|  |  * ~~~
 | ||
| 
											13 years ago
										 |  * return array(
 | ||
|  |  *     'original message 1' => 'translated message 1',
 | ||
|  |  *     'original message 2' => 'translated message 2',
 | ||
|  |  * );
 | ||
| 
											13 years ago
										 |  * ~~~
 | ||
| 
											13 years ago
										 |  *
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
|  |  * @since 2.0
 | ||
|  |  */
 | ||
|  | class PhpMessageSource extends MessageSource
 | ||
|  | {
 | ||
|  | 	/**
 | ||
|  | 	 * @var string the base path for all translated messages. Defaults to null, meaning
 | ||
|  | 	 * the "messages" subdirectory of the application directory (e.g. "protected/messages").
 | ||
|  | 	 */
 | ||
| 
											13 years ago
										 | 	public $basePath = '@app/messages';
 | ||
| 
											13 years ago
										 | 	/**
 | ||
|  | 	 * @var array mapping between message categories and the corresponding message file paths.
 | ||
|  | 	 * The file paths are relative to [[basePath]]. For example,
 | ||
|  | 	 *
 | ||
|  | 	 * ~~~
 | ||
|  | 	 * array(
 | ||
|  | 	 *     'core' => 'core.php',
 | ||
|  | 	 *     'ext' => 'extensions.php',
 | ||
|  | 	 * )
 | ||
|  | 	 * ~~~
 | ||
|  | 	 */
 | ||
|  | 	public $fileMap;
 | ||
| 
											13 years ago
										 | 
 | ||
|  | 	/**
 | ||
|  | 	 * Loads the message translation for the specified language and category.
 | ||
|  | 	 * @param string $category the message category
 | ||
|  | 	 * @param string $language the target language
 | ||
|  | 	 * @return array the loaded messages
 | ||
|  | 	 */
 | ||
| 
											13 years ago
										 | 	protected function loadMessages($category, $language)
 | ||
| 
											13 years ago
										 | 	{
 | ||
| 
											13 years ago
										 | 		$messageFile = Yii::getAlias($this->basePath) . "/$language/";
 | ||
|  | 		if (isset($this->fileMap[$category])) {
 | ||
|  | 			$messageFile .= $this->fileMap[$category];
 | ||
|  | 		} elseif (($pos = strrpos($category, '\\')) !== false) {
 | ||
|  | 			$messageFile .= (substr($category, $pos) . '.php');
 | ||
|  | 		} else {
 | ||
|  | 			$messageFile .= "$category.php";
 | ||
|  | 		}
 | ||
| 
											13 years ago
										 | 		if (is_file($messageFile)) {
 | ||
|  | 			$messages = include($messageFile);
 | ||
|  | 			if (!is_array($messages)) {
 | ||
|  | 				$messages = array();
 | ||
| 
											13 years ago
										 | 			}
 | ||
|  | 			return $messages;
 | ||
| 
											13 years ago
										 | 		} else {
 | ||
| 
											13 years ago
										 | 			Yii::error("The message file for category '$category' does not exist: $messageFile", __METHOD__);
 | ||
| 
											13 years ago
										 | 			return array();
 | ||
| 
											13 years ago
										 | 		}
 | ||
| 
											13 years ago
										 | 	}
 | ||
| 
											13 years ago
										 | }
 |