mirror of
https://github.com/silverstripe/silverstripe-translatable
synced 2024-10-22 11:05:59 +02:00
Improve dev/build with obsolete class names
This commit is contained in:
parent
c741a0bdf9
commit
c0d302eb8e
@ -684,7 +684,7 @@ class Translatable extends DataExtension implements PermissionProvider {
|
|||||||
/**
|
/**
|
||||||
* @todo Find more appropriate place to hook into database building
|
* @todo Find more appropriate place to hook into database building
|
||||||
*/
|
*/
|
||||||
function requireDefaultRecords() {
|
public function requireDefaultRecords() {
|
||||||
// @todo This relies on the Locale attribute being on the base data class, and not any subclasses
|
// @todo This relies on the Locale attribute being on the base data class, and not any subclasses
|
||||||
if($this->owner->class != ClassInfo::baseDataClass($this->owner->class)) return false;
|
if($this->owner->class != ClassInfo::baseDataClass($this->owner->class)) return false;
|
||||||
|
|
||||||
@ -717,7 +717,7 @@ class Translatable extends DataExtension implements PermissionProvider {
|
|||||||
))->column();
|
))->column();
|
||||||
if(!$idsWithoutLocale) return;
|
if(!$idsWithoutLocale) return;
|
||||||
|
|
||||||
if(class_exists('SiteTree') && $this->owner->class == 'SiteTree') {
|
if(class_exists('SiteTree') && $this->owner->class == 'SiteTree') {
|
||||||
foreach(array('Stage', 'Live') as $stage) {
|
foreach(array('Stage', 'Live') as $stage) {
|
||||||
foreach($idsWithoutLocale as $id) {
|
foreach($idsWithoutLocale as $id) {
|
||||||
$obj = Versioned::get_one_by_stage(
|
$obj = Versioned::get_one_by_stage(
|
||||||
@ -725,7 +725,7 @@ class Translatable extends DataExtension implements PermissionProvider {
|
|||||||
$stage,
|
$stage,
|
||||||
sprintf('"SiteTree"."ID" = %d', $id)
|
sprintf('"SiteTree"."ID" = %d', $id)
|
||||||
);
|
);
|
||||||
if(!$obj) continue;
|
if(!$obj || $obj->ObsoleteClassName) continue;
|
||||||
|
|
||||||
$obj->Locale = Translatable::default_locale();
|
$obj->Locale = Translatable::default_locale();
|
||||||
$obj->writeToStage($stage);
|
$obj->writeToStage($stage);
|
||||||
@ -737,7 +737,7 @@ class Translatable extends DataExtension implements PermissionProvider {
|
|||||||
} else {
|
} else {
|
||||||
foreach($idsWithoutLocale as $id) {
|
foreach($idsWithoutLocale as $id) {
|
||||||
$obj = DataObject::get_by_id($this->owner->class, $id);
|
$obj = DataObject::get_by_id($this->owner->class, $id);
|
||||||
if(!$obj) continue;
|
if(!$obj || $obj->ObsoleteClassName) continue;
|
||||||
|
|
||||||
$obj->Locale = Translatable::default_locale();
|
$obj->Locale = Translatable::default_locale();
|
||||||
$obj->write();
|
$obj->write();
|
||||||
|
Loading…
Reference in New Issue
Block a user