PhpMessageSource.php 2.29 KB
Newer Older
Qiang Xue committed
1 2 3
<?php
/**
 * @link http://www.yiiframework.com/
Qiang Xue committed
4
 * @copyright Copyright (c) 2008 Yii Software LLC
Qiang Xue committed
5 6 7 8 9
 * @license http://www.yiiframework.com/license/
 */

namespace yii\i18n;

Qiang Xue committed
10 11
use Yii;

Qiang Xue committed
12 13 14
/**
 * PhpMessageSource represents a message source that stores translated messages in PHP scripts.
 *
Qiang Xue committed
15 16 17 18 19 20 21 22
 * 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:
 *
 * ~~~
Alexander Makarov committed
23
 * return [
Qiang Xue committed
24 25
 *     'original message 1' => 'translated message 1',
 *     'original message 2' => 'translated message 2',
Alexander Makarov committed
26
 * ];
Qiang Xue committed
27
 * ~~~
Qiang Xue committed
28
 *
29 30
 * You may use [[fileMap]] to customize the association between category names and the file names.
 *
Qiang Xue committed
31 32 33 34 35 36 37 38 39
 * @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").
	 */
Qiang Xue committed
40
	public $basePath = '@app/messages';
41 42 43 44 45
	/**
	 * @var array mapping between message categories and the corresponding message file paths.
	 * The file paths are relative to [[basePath]]. For example,
	 *
	 * ~~~
Alexander Makarov committed
46
	 * [
47 48
	 *     'core' => 'core.php',
	 *     'ext' => 'extensions.php',
Alexander Makarov committed
49
	 * ]
50 51 52
	 * ~~~
	 */
	public $fileMap;
Qiang Xue committed
53 54 55 56 57 58 59

	/**
	 * 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
	 */
Qiang Xue committed
60
	protected function loadMessages($category, $language)
Qiang Xue committed
61
	{
62 63 64 65
		$messageFile = Yii::getAlias($this->basePath) . "/$language/";
		if (isset($this->fileMap[$category])) {
			$messageFile .= $this->fileMap[$category];
		} else {
66
			$messageFile .= str_replace('\\', '/', $category) . '.php';
67
		}
Qiang Xue committed
68 69 70
		if (is_file($messageFile)) {
			$messages = include($messageFile);
			if (!is_array($messages)) {
Alexander Makarov committed
71
				$messages = [];
Qiang Xue committed
72 73
			}
			return $messages;
Qiang Xue committed
74
		} else {
75
			Yii::error("The message file for category '$category' does not exist: $messageFile", __METHOD__);
Alexander Makarov committed
76
			return [];
Qiang Xue committed
77
		}
Qiang Xue committed
78
	}
Zander Baldwin committed
79
}