mirror of
https://github.com/silverstripe/silverstripe-translatable
synced 2024-10-22 11:05:59 +02:00
Merge pull request #109 from tractorcow/3.1-api-updaterelativelink
API Hook into SiteTreeExtension::updateRelativeLink
This commit is contained in:
commit
f7eee8596d
@ -1021,6 +1021,14 @@ class Translatable extends DataExtension implements PermissionProvider {
|
|||||||
$this->addTranslatableFields($fields);
|
$this->addTranslatableFields($fields);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function updateRelativeLink(&$base, &$action) {
|
||||||
|
// Prevent home pages for non-default locales having their urlsegments
|
||||||
|
// reduced to the site root.
|
||||||
|
if($base === null && $this->owner->Locale != self::default_locale()){
|
||||||
|
$base = $this->owner->URLSegment;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method can be called multiple times on the same FieldList
|
* This method can be called multiple times on the same FieldList
|
||||||
* because it checks which fields have already been added or modified.
|
* because it checks which fields have already been added or modified.
|
||||||
|
Loading…
Reference in New Issue
Block a user