public function EntityTranslationDefaultHandler::setPathScheme in Entity Translation 7
Overrides EntityTranslationHandlerInterface::setPathScheme
See also
EntityTranslationHandlerInterface::setPathScheme()
1 call to EntityTranslationDefaultHandler::setPathScheme()
File
- includes/
translation.handler.inc, line 1097 - Default translation handler for the translation module.
Class
- EntityTranslationDefaultHandler
- Class implementing the default entity translation behaviours.
Code
public function setPathScheme($scheme) {
if ($scheme != $this->pathScheme) {
$this->pathScheme = $scheme;
$this
->initPathVariables();
}
}