protected function RulesLinkI18nController::translatableProperties in Rules Link 7
Same name and namespace in other branches
- 7.2 rules_link_i18n.module \RulesLinkI18nController::translatableProperties()
Overrides EntityDefaultI18nStringController::translatableProperties() to define our custom ones.
Overrides EntityDefaultI18nStringController::translatableProperties
File
- ./
rules_link_i18n.module, line 35 - Rules link i18n integration module via entity API i18n support.
Class
- RulesLinkI18nController
- Customized i18n string integration controller.
Code
protected function translatableProperties() {
$properties = array();
$properties['text'] = t('Link text');
$properties['confirm_question'] = t('Confirm question');
$properties['confirm_description'] = t('Confirm description');
return $properties;
}