silverstripe-userforms/code/model/editableformfields/EditableFieldGroup.php

93 lines
1.8 KiB
PHP
Raw Normal View History

2015-08-11 08:21:43 +02:00
<?php
/**
* Specifies that this ends a group of fields
*/
class EditableFieldGroup extends EditableFormField {
private static $has_one = array(
'End' => 'EditableFieldGroupEnd'
);
2015-08-11 08:21:43 +02:00
/**
* Disable selection of group class
*
* @config
* @var bool
*/
private static $hidden = true;
/**
* Non-data field type
*
* @var type
*/
private static $literal = true;
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields->removeByName(array('MergeField', 'Default', 'Validation', 'DisplayRules'));
return $fields;
}
public function getCMSTitle() {
2015-08-14 04:51:42 +02:00
$title = $this->getFieldNumber()
?: $this->Title
?: 'group';
2015-09-11 00:20:06 +02:00
return _t(
'EditableFieldGroupEnd.FIELD_GROUP_START',
2015-08-14 04:51:42 +02:00
'Group {group}',
array(
2015-08-14 04:51:42 +02:00
'group' => $title
)
);
}
public function getInlineClassnameField($column, $fieldClasses) {
return new LabelField($column, $this->CMSTitle);
}
public function showInReports() {
return false;
}
public function getFormField() {
$field = UserFormsGroupField::create()
->setTitle($this->EscapedTitle ?: false)
->setName($this->Name);
$this->doUpdateFormField($field);
return $field;
}
protected function updateFormField($field) {
// set the right title on this field
if($this->RightTitle) {
// Since this field expects raw html, safely escape the user data prior
$field->setRightTitle(Convert::raw2xml($this->RightTitle));
}
2015-09-11 00:20:06 +02:00
// if this field has an extra class
2015-08-14 04:51:42 +02:00
if($this->ExtraClass) {
$field->addExtraClass($this->ExtraClass);
}
}
protected function onBeforeDelete() {
parent::onBeforeDelete();
// Ensures EndID is lazy-loaded for onAfterDelete
$this->EndID;
}
protected function onAfterDelete() {
parent::onAfterDelete();
// Delete end
if(($end = $this->End()) && $end->exists()) {
$end->delete();
}
}
2015-09-11 00:20:06 +02:00
2015-08-11 08:21:43 +02:00
}