mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
b74178e7fd
Had the pjax "CurrentForm" marker set to the <form> tag, which makes sense, but excludes the tabs. On refresh, the tabset wasn't reinitialized, showing all form elements on one page. Its easier to simply refresh the whole content area.
76 lines
2.1 KiB
PHP
76 lines
2.1 KiB
PHP
<?php
|
|
class CMSSettingsController extends LeftAndMain {
|
|
|
|
static $url_segment = 'settings';
|
|
static $url_rule = '/$Action/$ID/$OtherID';
|
|
static $menu_priority = -1;
|
|
static $menu_title = 'Settings';
|
|
|
|
public function getResponseNegotiator() {
|
|
$neg = parent::getResponseNegotiator();
|
|
$controller = $this;
|
|
$neg->setCallback('CurrentForm', function() use(&$controller) {
|
|
return $controller->renderWith($controller->getTemplatesWithSuffix('_Content'));
|
|
});
|
|
return $neg;
|
|
}
|
|
|
|
/**
|
|
* @return Form
|
|
*/
|
|
function getEditForm($id = null, $fields = null) {
|
|
$siteConfig = SiteConfig::current_site_config();
|
|
$fields = $siteConfig->getCMSFields();
|
|
|
|
$actions = $siteConfig->getCMSActions();
|
|
$form = new Form($this, 'EditForm', $fields, $actions);
|
|
$form->addExtraClass('root-form');
|
|
$form->addExtraClass('cms-edit-form cms-panel-padded center');
|
|
// don't add data-pjax-fragment=CurrentForm, its added in the content template instead
|
|
|
|
if($form->Fields()->hasTabset()) $form->Fields()->findOrMakeTab('Root')->setTemplate('CMSTabSet');
|
|
$form->setHTMLID('Form_EditForm');
|
|
$form->loadDataFrom($siteConfig);
|
|
$form->setTemplate($this->getTemplatesWithSuffix('_EditForm'));
|
|
|
|
// Use <button> to allow full jQuery UI styling
|
|
$actions = $actions->dataFields();
|
|
if($actions) foreach($actions as $action) $action->setUseButtonTag(true);
|
|
|
|
$this->extend('updateEditForm', $form);
|
|
|
|
return $form;
|
|
}
|
|
|
|
|
|
/**
|
|
* Save the current sites {@link SiteConfig} into the database
|
|
*
|
|
* @param array $data
|
|
* @param Form $form
|
|
* @return String
|
|
*/
|
|
function save_siteconfig($data, $form) {
|
|
$siteConfig = SiteConfig::current_site_config();
|
|
$form->saveInto($siteConfig);
|
|
$siteConfig->write();
|
|
|
|
$this->response->addHeader('X-Status', rawurlencode(_t('LeftAndMain.SAVEDUP', 'Saved.')));
|
|
return $this->getResponseNegotiator()->respond($this->request);
|
|
}
|
|
|
|
function LinkPreview() {
|
|
return false;
|
|
}
|
|
|
|
function Breadcrumbs($unlinked = false) {
|
|
return new ArrayList(array(
|
|
new ArrayData(array(
|
|
'Title' => $this->SectionTitle(),
|
|
'Link' => false
|
|
))
|
|
));
|
|
}
|
|
|
|
}
|