Class yii\i18n\MissingTranslationEvent
继承 | yii\i18n\MissingTranslationEvent » yii\base\Event » yii\base\BaseObject |
---|---|
实现 | yii\base\Configurable |
可用版本自 | 2.0 |
源码 | https://github.com/yiichina/yii2/blob/api/framework/i18n/MissingTranslationEvent.php |
MissingTranslationEvent 表示 yii\i18n\MessageSource::EVENT_MISSING_TRANSLATION 事件的参数。
公共属性
属性 | 类型 | 描述 | 被定义在 |
---|---|---|---|
$category | string | 消息所属的类别 | yii\i18n\MissingTranslationEvent |
$data | mixed | The data that is passed to yii\base\Component::on() when attaching an event handler. | yii\base\Event |
$handled | boolean | Whether the event is handled. | yii\base\Event |
$language | string | 要将消息翻译成的语言 ID(例如 en-US) | yii\i18n\MissingTranslationEvent |
$message | string | 要翻译的信息。事件处理程序可以使用它来提供一个回退转换, 并在可能的情况下设置 $translatedMessage。 | yii\i18n\MissingTranslationEvent |
$name | string | The event name. | yii\base\Event |
$sender | object | The sender of this event. | yii\base\Event |
$translatedMessage | string | 翻译好的消息。事件处理程序可以使用 $message 的翻译版本覆盖此属性。 如果未设置(null),则表示消息未被翻译。 | yii\i18n\MissingTranslationEvent |
公共方法
方法 | 描述 | 被定义在 |
---|---|---|
__call() | Calls the named method which is not a class method. | yii\base\BaseObject |
__construct() | Constructor. | yii\base\BaseObject |
__get() | Returns the value of an object property. | yii\base\BaseObject |
__isset() | Checks if a property is set, i.e. defined and not null. | yii\base\BaseObject |
__set() | Sets value of an object property. | yii\base\BaseObject |
__unset() | Sets an object property to null. | yii\base\BaseObject |
canGetProperty() | Returns a value indicating whether a property can be read. | yii\base\BaseObject |
canSetProperty() | Returns a value indicating whether a property can be set. | yii\base\BaseObject |
className() | Returns the fully qualified name of this class. | yii\base\BaseObject |
hasHandlers() | Returns a value indicating whether there is any handler attached to the specified class-level event. | yii\base\Event |
hasMethod() | Returns a value indicating whether a method is defined. | yii\base\BaseObject |
hasProperty() | Returns a value indicating whether a property is defined. | yii\base\BaseObject |
init() | Initializes the object. | yii\base\BaseObject |
off() | 从类级事件中卸载事件处理程序。 | yii\base\Event |
offAll() | 卸载所有已注册的类级事件处理程序。 | yii\base\Event |
on() | Attaches an event handler to a class-level event. | yii\base\Event |
trigger() | 触发类级事件。 This method will cause invocation of event handlers that are attached to the named event for the specified class and all its parent classes. | yii\base\Event |
属性详情
消息所属的类别
要将消息翻译成的语言 ID(例如 en-US)
要翻译的信息。事件处理程序可以使用它来提供一个回退转换, 并在可能的情况下设置 $translatedMessage。
翻译好的消息。事件处理程序可以使用 $message 的翻译版本覆盖此属性。 如果未设置(null),则表示消息未被翻译。