protected function EntityTranslationDefaultHandler::notifyChildren in Entity Translation 7
Proxies the specified method invocation to a child translation handler.
5 calls to EntityTranslationDefaultHandler::notifyChildren()
- EntityTranslationDefaultHandler::setFormLanguage in includes/
translation.handler.inc - Sets the active form language.
- EntityTranslationDefaultHandler::setOriginalLanguage in includes/
translation.handler.inc - EntityTranslationDefaultHandler::setOutdated in includes/
translation.handler.inc - EntityTranslationDefaultHandler::setSourceLanguage in includes/
translation.handler.inc - EntityTranslationDefaultHandler::setTranslation in includes/
translation.handler.inc
File
- includes/
translation.handler.inc, line 551 - Default translation handler for the translation module.
Class
- EntityTranslationDefaultHandler
- Class implementing the default entity translation behaviours.
Code
protected function notifyChildren($method, $args) {
foreach ($this->children as $handler) {
call_user_func_array(array(
$handler,
$method,
), $args);
}
}