mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
128 lines
3.6 KiB
PHP
128 lines
3.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Extension for the SiteTree object to add subsites support
|
|
*/
|
|
class SiteTreeSubsites extends DataObjectDecorator {
|
|
static $template_variables = array(
|
|
'((Company Name))' => 'Title'
|
|
);
|
|
|
|
protected static $template_fields = array(
|
|
"URLSegment",
|
|
"Title",
|
|
"MenuTitle",
|
|
"Content",
|
|
"MetaTitle",
|
|
"MetaDescription",
|
|
"MetaKeywords",
|
|
);
|
|
|
|
/**
|
|
* Set the fields that will be copied from the template.
|
|
* Note that ParentID and Sort are implied.
|
|
*/
|
|
static function set_template_fields($fieldList) {
|
|
self::$template_fields = $fieldList;
|
|
}
|
|
|
|
|
|
function extraDBFields() {
|
|
// This is hard-coded to be applied to SiteTree, unfortunately
|
|
if($this->owner->class == 'SiteTree') {
|
|
return array(
|
|
'has_one' => array(
|
|
'Subsite' => 'Subsite', // The subsite that this page belongs to
|
|
'MasterPage' => 'SiteTree', // Optional; the page that is the content master
|
|
'CustomContent' => 'Boolean', // On a page that has a content master, set this to true to
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update any requests to limit the results to the current site
|
|
*/
|
|
function augmentSQL(SQLQuery &$query) {
|
|
// If you're querying by ID, ignore the sub-site - this is a bit ugly...
|
|
if(strpos($query->where[0], ".`ID` = ") === false && strpos($query->where[0], ".ID = ") === false) {
|
|
|
|
if($context = DataObject::context_obj()) $subsiteID = (int)$context->SubsiteID;
|
|
else $subsiteID = (int)Subsite::currentSubsiteID();
|
|
|
|
// The foreach is an ugly way of getting the first key :-)
|
|
foreach($query->from as $tableName => $info) {
|
|
$query->where[] = "`$tableName`.SubsiteID IN (0, $subsiteID)";
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
function augmentBeforeWrite() {
|
|
if(!is_numeric($this->owner->ID) && !$this->owner->SubsiteID) $this->owner->SubsiteID = Subsite::currentSubsiteID();
|
|
|
|
// If the content has been changed, then the page should be marked as 'custom content'
|
|
if(!$this->owner->CustomContent) {
|
|
foreach(self::$template_fields as $field) {
|
|
if($this->owner->original[$field] != $this->owner->record[$field]) {
|
|
$this->owner->CustomContent = true;
|
|
FormResponse::add("$('Form_EditForm_CustomContent').checked = true;");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function updateCMSFields(&$fields) {
|
|
if($this->owner->MasterPageID) {
|
|
$fields->insertFirst(new HeaderField('This page\'s content is copied from a master page: ' . $this->owner->MasterPage()->Title, 2));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create a duplicate of this page and save it to another subsite
|
|
*/
|
|
public function duplicateToSubsite($subsiteID = null, $stage = 'Live') {
|
|
if(is_object($subsiteID)) {
|
|
$subsite = $subsiteID;
|
|
$subsiteID = $subsite->ID;
|
|
} else {
|
|
$subsite = DataObject::get_by_id('Subsite', $subsiteID);
|
|
}
|
|
|
|
$page = $this->owner->duplicate(false);
|
|
|
|
$page->CheckedPublicationDifferences = $page->AddedToStage = true;
|
|
$subsiteID = ($subsiteID ? $subsiteID : Subsite::currentSubsiteID());
|
|
$page->SubsiteID = $subsiteID;
|
|
$page->MasterPageID = $this->owner->ID;
|
|
|
|
foreach(self::$template_fields as $field) {
|
|
foreach(self::$template_variables as $variable => $intranetField) {
|
|
$page->$field = str_ireplace($variable, $subsite->$intranetField, $page->$field);
|
|
}
|
|
}
|
|
|
|
$page->write();
|
|
|
|
return $page;
|
|
}
|
|
|
|
/**
|
|
* Called by ContentController::init();
|
|
*/
|
|
static function contentcontrollerInit($controller) {
|
|
// Need to set the SubsiteID to null incase we've been in the CMS
|
|
Session::set('SubsiteID', null);
|
|
}
|
|
|
|
/**
|
|
* Called by ModelAsController::init();
|
|
*/
|
|
static function modelascontrollerInit($controller) {
|
|
// Need to set the SubsiteID to null incase we've been in the CMS
|
|
Session::set('SubsiteID', null);
|
|
}
|
|
}
|
|
|
|
?>
|