2008-09-29 05:18:23 +02:00
|
|
|
<?php
|
2015-08-11 22:57:19 +02:00
|
|
|
|
|
|
|
use SilverStripe\Forms\SegmentField;
|
|
|
|
|
2008-09-29 05:18:23 +02:00
|
|
|
/**
|
2015-08-11 22:57:19 +02:00
|
|
|
* Represents the base class of a editable form field
|
|
|
|
* object like {@link EditableTextField}.
|
2009-04-17 04:26:40 +02:00
|
|
|
*
|
|
|
|
* @package userforms
|
2015-08-11 22:57:19 +02:00
|
|
|
*
|
2015-12-11 05:38:31 +01:00
|
|
|
* @property string $Name
|
|
|
|
* @property string $Title
|
|
|
|
* @property string $Default
|
|
|
|
* @property int $Sort
|
|
|
|
* @property bool $Required
|
|
|
|
* @property string $CustomErrorMessage
|
2017-04-28 00:22:15 +02:00
|
|
|
* @property boolean $ShowOnLoad
|
|
|
|
* @property string $DisplayRulesConjunction
|
2015-12-22 23:14:36 +01:00
|
|
|
* @method UserDefinedForm Parent() Parent page
|
2015-07-24 04:37:48 +02:00
|
|
|
* @method DataList DisplayRules() List of EditableCustomRule objects
|
2017-03-10 05:48:47 +01:00
|
|
|
* @mixin Versioned
|
2008-09-29 05:18:23 +02:00
|
|
|
*/
|
2016-07-21 07:53:59 +02:00
|
|
|
class EditableFormField extends DataObject
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set to true to hide from class selector
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $hidden = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define this field as abstract (not inherited)
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $abstract = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag this field type as non-data (e.g. literal, header, html)
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $literal = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default sort order
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private static $default_sort = '"Sort"';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of CSS classes that can be added
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public static $allowed_css = array();
|
|
|
|
|
2017-04-28 10:31:51 +02:00
|
|
|
/**
|
|
|
|
* Set this to true to enable placeholder field for any given class
|
|
|
|
* @config
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $has_placeholder = false;
|
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
/**
|
|
|
|
* @config
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $summary_fields = array(
|
|
|
|
'Title'
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @config
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $db = array(
|
|
|
|
"Name" => "Varchar",
|
|
|
|
"Title" => "Varchar(255)",
|
|
|
|
"Default" => "Varchar(255)",
|
|
|
|
"Sort" => "Int",
|
|
|
|
"Required" => "Boolean",
|
|
|
|
"CustomErrorMessage" => "Varchar(255)",
|
|
|
|
|
|
|
|
"CustomRules" => "Text", // @deprecated from 2.0
|
|
|
|
"CustomSettings" => "Text", // @deprecated from 2.0
|
|
|
|
"Migrated" => "Boolean", // set to true when migrated
|
|
|
|
|
|
|
|
"ExtraClass" => "Text", // from CustomSettings
|
|
|
|
"RightTitle" => "Varchar(255)", // from CustomSettings
|
|
|
|
"ShowOnLoad" => "Boolean(1)", // from CustomSettings
|
2017-01-30 11:24:00 +01:00
|
|
|
"ShowInSummary" => "Boolean",
|
2017-04-28 10:31:51 +02:00
|
|
|
"Placeholder" => "Varchar(255)",
|
2017-04-28 00:22:15 +02:00
|
|
|
'DisplayRulesConjunction' => 'Enum("And,Or","Or")',
|
2016-07-21 07:53:59 +02:00
|
|
|
);
|
2017-01-24 21:35:50 +01:00
|
|
|
|
2017-04-28 00:22:15 +02:00
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
private static $defaults = array(
|
|
|
|
'ShowOnLoad' => true,
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @config
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $has_one = array(
|
|
|
|
"Parent" => "UserDefinedForm",
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Built in extensions required
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $extensions = array(
|
|
|
|
"Versioned('Stage', 'Live')"
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @config
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $has_many = array(
|
|
|
|
"DisplayRules" => "EditableCustomRule.Parent" // from CustomRules
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
protected $readonly;
|
|
|
|
|
2017-04-28 00:22:15 +02:00
|
|
|
/**
|
|
|
|
* Property holds the JS event which gets fired for this type of element
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $jsEventHandler = 'change';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the jsEventHandler property for the current object. Bearing in mind it could've been overridden.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getJsEventHandler()
|
|
|
|
{
|
|
|
|
return $this->jsEventHandler;
|
|
|
|
}
|
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
/**
|
|
|
|
* Set the visibility of an individual form field
|
|
|
|
*
|
|
|
|
* @param bool
|
|
|
|
*/
|
|
|
|
public function setReadonly($readonly = true)
|
|
|
|
{
|
|
|
|
$this->readonly = $readonly;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether this field is readonly
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function isReadonly()
|
|
|
|
{
|
|
|
|
return $this->readonly;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return FieldList
|
|
|
|
*/
|
|
|
|
public function getCMSFields()
|
|
|
|
{
|
|
|
|
$fields = new FieldList(new TabSet('Root'));
|
|
|
|
|
|
|
|
// Main tab
|
|
|
|
$fields->addFieldsToTab(
|
|
|
|
'Root.Main',
|
|
|
|
array(
|
|
|
|
ReadonlyField::create(
|
|
|
|
'Type',
|
|
|
|
_t('EditableFormField.TYPE', 'Type'),
|
|
|
|
$this->i18n_singular_name()
|
|
|
|
),
|
2017-01-30 11:24:00 +01:00
|
|
|
CheckboxField::create('ShowInSummary', _t('EditableFormField.SHOWINSUMMARY', 'Show in summary gridfield')),
|
2016-07-21 07:53:59 +02:00
|
|
|
LiteralField::create(
|
|
|
|
'MergeField',
|
|
|
|
_t(
|
|
|
|
'EditableFormField.MERGEFIELDNAME',
|
|
|
|
'<div class="field readonly">' .
|
2017-04-10 22:15:29 +02:00
|
|
|
'<label class="left">' . _t('EditableFormField.MERGEFIELDNAME', 'Merge field') . '</label>' .
|
2016-07-21 07:53:59 +02:00
|
|
|
'<div class="middleColumn">' .
|
|
|
|
'<span class="readonly">$' . $this->Name . '</span>' .
|
|
|
|
'</div>' .
|
|
|
|
'</div>'
|
|
|
|
)
|
|
|
|
),
|
2017-04-10 22:15:29 +02:00
|
|
|
TextField::create('Title', _t('EditableFormField.TITLE', 'Title')),
|
2016-07-21 07:53:59 +02:00
|
|
|
TextField::create('Default', _t('EditableFormField.DEFAULT', 'Default value')),
|
|
|
|
TextField::create('RightTitle', _t('EditableFormField.RIGHTTITLE', 'Right title')),
|
2017-04-10 22:15:29 +02:00
|
|
|
SegmentField::create('Name', _t('EditableFormField.NAME', 'Name'))->setModifiers(array(
|
2016-07-21 07:53:59 +02:00
|
|
|
UnderscoreSegmentFieldModifier::create()->setDefault('FieldName'),
|
|
|
|
DisambiguationSegmentFieldModifier::create(),
|
|
|
|
))->setPreview($this->Name)
|
|
|
|
)
|
|
|
|
);
|
2017-04-10 22:15:29 +02:00
|
|
|
$fields->fieldByName('Root.Main')->setTitle(_t('SiteTree.TABMAIN', 'Main'));
|
2016-07-21 07:53:59 +02:00
|
|
|
|
|
|
|
// Custom settings
|
|
|
|
if (!empty(self::$allowed_css)) {
|
|
|
|
$cssList = array();
|
|
|
|
foreach (self::$allowed_css as $k => $v) {
|
|
|
|
if (!is_array($v)) {
|
|
|
|
$cssList[$k]=$v;
|
|
|
|
} elseif ($k === $this->ClassName) {
|
|
|
|
$cssList = array_merge($cssList, $v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields->addFieldToTab('Root.Main',
|
|
|
|
DropdownField::create(
|
|
|
|
'ExtraClass',
|
|
|
|
_t('EditableFormField.EXTRACLASS_TITLE', 'Extra Styling/Layout'),
|
|
|
|
$cssList
|
|
|
|
)->setDescription(_t(
|
|
|
|
'EditableFormField.EXTRACLASS_SELECT',
|
|
|
|
'Select from the list of allowed styles'
|
|
|
|
))
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$fields->addFieldToTab('Root.Main',
|
|
|
|
TextField::create(
|
|
|
|
'ExtraClass',
|
|
|
|
_t('EditableFormField.EXTRACLASS_Title', 'Extra CSS classes')
|
|
|
|
)->setDescription(_t(
|
|
|
|
'EditableFormField.EXTRACLASS_MULTIPLE',
|
|
|
|
'Separate each CSS class with a single space'
|
|
|
|
))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validation
|
|
|
|
$validationFields = $this->getFieldValidationOptions();
|
|
|
|
if ($validationFields && $validationFields->count()) {
|
|
|
|
$fields->addFieldsToTab('Root.Validation', $validationFields);
|
2017-04-10 22:15:29 +02:00
|
|
|
$fields->fieldByName('Root.Validation')->setTitle(_t('EditableFormField.VALIDATION', 'Validation'));
|
2016-07-21 07:53:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add display rule fields
|
|
|
|
$displayFields = $this->getDisplayRuleFields();
|
|
|
|
if ($displayFields && $displayFields->count()) {
|
|
|
|
$fields->addFieldsToTab('Root.DisplayRules', $displayFields);
|
|
|
|
}
|
|
|
|
|
2017-04-28 10:31:51 +02:00
|
|
|
// Placeholder
|
|
|
|
if ($this->config()->has_placeholder) {
|
|
|
|
$fields->addFieldToTab(
|
|
|
|
'Root.Main',
|
|
|
|
TextField::create(
|
|
|
|
'Placeholder',
|
|
|
|
_t('EditableFormField.PLACEHOLDER', 'Placeholder')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
$this->extend('updateCMSFields', $fields);
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return fields to display on the 'Display Rules' tab
|
|
|
|
*
|
|
|
|
* @return FieldList
|
|
|
|
*/
|
|
|
|
protected function getDisplayRuleFields()
|
|
|
|
{
|
|
|
|
// Check display rules
|
|
|
|
if ($this->Required) {
|
|
|
|
return new FieldList(
|
2017-04-28 00:22:15 +02:00
|
|
|
LabelField::create(
|
|
|
|
_t(
|
2016-07-21 07:53:59 +02:00
|
|
|
'EditableFormField.DISPLAY_RULES_DISABLED',
|
2017-04-28 00:22:15 +02:00
|
|
|
'Display rules are not enabled for required fields. Please uncheck "Is this field Required?" under "Validation" to re-enable.'))
|
|
|
|
->addExtraClass('message warning'));
|
2016-07-21 07:53:59 +02:00
|
|
|
}
|
|
|
|
$self = $this;
|
|
|
|
$allowedClasses = array_keys($this->getEditableFieldClasses(false));
|
|
|
|
$editableColumns = new GridFieldEditableColumns();
|
|
|
|
$editableColumns->setDisplayFields(array(
|
|
|
|
'ConditionFieldID' => function ($record, $column, $grid) use ($allowedClasses, $self) {
|
2017-04-28 00:22:15 +02:00
|
|
|
return DropdownField::create($column, '', EditableFormField::get()->filter(array(
|
2016-07-21 07:53:59 +02:00
|
|
|
'ParentID' => $self->ParentID,
|
2017-04-28 00:22:15 +02:00
|
|
|
'ClassName' => $allowedClasses,
|
|
|
|
))->exclude(array(
|
|
|
|
'ID' => $self->ID,
|
|
|
|
))->map('ID', 'Title'));
|
2016-07-21 07:53:59 +02:00
|
|
|
},
|
|
|
|
'ConditionOption' => function ($record, $column, $grid) {
|
|
|
|
$options = Config::inst()->get('EditableCustomRule', 'condition_options');
|
2017-05-01 07:44:39 +02:00
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
return DropdownField::create($column, '', $options);
|
|
|
|
},
|
|
|
|
'FieldValue' => function ($record, $column, $grid) {
|
|
|
|
return TextField::create($column);
|
2017-05-24 03:46:54 +02:00
|
|
|
}
|
2016-07-21 07:53:59 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
// Custom rules
|
|
|
|
$customRulesConfig = GridFieldConfig::create()
|
|
|
|
->addComponents(
|
|
|
|
$editableColumns,
|
|
|
|
new GridFieldButtonRow(),
|
|
|
|
new GridFieldToolbarHeader(),
|
|
|
|
new GridFieldAddNewInlineButton(),
|
|
|
|
new GridFieldDeleteAction()
|
|
|
|
);
|
|
|
|
|
|
|
|
return new FieldList(
|
2017-04-28 00:22:15 +02:00
|
|
|
DropdownField::create('ShowOnLoad',
|
|
|
|
_t('EditableFormField.INITIALVISIBILITY', 'Initial visibility'),
|
|
|
|
array(
|
|
|
|
1 => 'Show',
|
|
|
|
0 => 'Hide',
|
|
|
|
)
|
|
|
|
),
|
|
|
|
DropdownField::create('DisplayRulesConjunction',
|
|
|
|
_t('EditableFormField.DISPLAYIF', 'Toggle visibility when'),
|
|
|
|
array(
|
|
|
|
'Or' => _t('UserDefinedForm.SENDIFOR', 'Any conditions are true'),
|
|
|
|
'And' => _t('UserDefinedForm.SENDIFAND', 'All conditions are true'),
|
2017-04-10 22:15:29 +02:00
|
|
|
)
|
|
|
|
),
|
2016-07-21 07:53:59 +02:00
|
|
|
GridField::create(
|
|
|
|
'DisplayRules',
|
|
|
|
_t('EditableFormField.CUSTOMRULES', 'Custom Rules'),
|
|
|
|
$this->DisplayRules(),
|
|
|
|
$customRulesConfig
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onBeforeWrite()
|
|
|
|
{
|
|
|
|
parent::onBeforeWrite();
|
|
|
|
|
|
|
|
// Set a field name.
|
|
|
|
if (!$this->Name) {
|
|
|
|
// New random name
|
|
|
|
$this->Name = $this->generateName();
|
|
|
|
} elseif ($this->Name === 'Field') {
|
|
|
|
throw new ValidationException('Field name cannot be "Field"');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->Sort && $this->ParentID) {
|
|
|
|
$parentID = $this->ParentID;
|
|
|
|
$this->Sort = EditableFormField::get()
|
|
|
|
->filter('ParentID', $parentID)
|
|
|
|
->max('Sort') + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a new non-conflicting Name value
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function generateName()
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
// Generate a new random name after this class
|
|
|
|
$class = get_class($this);
|
|
|
|
$entropy = substr(sha1(uniqid()), 0, 5);
|
|
|
|
$name = "{$class}_{$entropy}";
|
|
|
|
|
|
|
|
// Check if it conflicts
|
|
|
|
$exists = EditableFormField::get()->filter('Name', $name)->count() > 0;
|
|
|
|
} while ($exists);
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag indicating that this field will set its own error message via data-msg='' attributes
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getSetsOwnError()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether a user can delete this form field
|
|
|
|
* based on whether they can edit the page
|
|
|
|
*
|
2015-12-22 23:14:36 +01:00
|
|
|
* @param Member $member
|
2016-07-21 07:53:59 +02:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canDelete($member = null)
|
|
|
|
{
|
|
|
|
return $this->canEdit($member);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether a user can edit this form field
|
|
|
|
* based on whether they can edit the page
|
|
|
|
*
|
2015-12-22 23:14:36 +01:00
|
|
|
* @param Member $member
|
2016-07-21 07:53:59 +02:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canEdit($member = null)
|
|
|
|
{
|
2015-12-22 23:14:36 +01:00
|
|
|
$parent = $this->Parent();
|
2016-07-21 07:53:59 +02:00
|
|
|
if ($parent && $parent->exists()) {
|
|
|
|
return $parent->canEdit($member) && !$this->isReadonly();
|
|
|
|
} elseif (!$this->exists() && Controller::has_curr()) {
|
2017-02-03 15:39:36 +01:00
|
|
|
// This is for GridFieldOrderableRows support as it checks edit permissions on
|
|
|
|
// singleton of the class. Allows editing of User Defined Form pages by
|
2016-07-21 07:53:59 +02:00
|
|
|
// 'Content Authors' and those with permission to edit the UDF page. (ie. CanEditType/EditorGroups)
|
|
|
|
// This is to restore User Forms 2.x backwards compatibility.
|
|
|
|
$controller = Controller::curr();
|
|
|
|
if ($controller && $controller instanceof CMSPageEditController) {
|
|
|
|
$parent = $controller->getRecord($controller->currentPageID());
|
|
|
|
// Only allow this behaviour on pages using UserFormFieldEditorExtension, such
|
|
|
|
// as UserDefinedForm page type.
|
|
|
|
if ($parent && $parent->hasExtension('UserFormFieldEditorExtension')) {
|
|
|
|
return $parent->canEdit($member);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-22 23:14:36 +01:00
|
|
|
|
|
|
|
// Fallback to secure admin permissions
|
2016-07-21 07:53:59 +02:00
|
|
|
return parent::canEdit($member);
|
|
|
|
}
|
2015-12-22 23:14:36 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether a user can view this form field
|
|
|
|
* based on whether they can view the page, regardless of the ReadOnly status of the field
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-07-21 07:53:59 +02:00
|
|
|
public function canView($member = null)
|
|
|
|
{
|
|
|
|
$parent = $this->Parent();
|
|
|
|
if ($parent && $parent->exists()) {
|
|
|
|
return $parent->canView($member);
|
|
|
|
}
|
2015-07-24 04:37:48 +02:00
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-08-11 22:57:19 +02:00
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
/**
|
|
|
|
* Return whether a user can create an object of this type
|
|
|
|
*
|
2015-12-22 23:14:36 +01:00
|
|
|
* @param Member $member
|
|
|
|
* @param array $context Virtual parameter to allow context to be passed in to check
|
2016-07-21 07:53:59 +02:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canCreate($member = null)
|
|
|
|
{
|
|
|
|
// Check parent page
|
2015-12-22 23:14:36 +01:00
|
|
|
$parent = $this->getCanCreateContext(func_get_args());
|
2016-07-21 07:53:59 +02:00
|
|
|
if ($parent) {
|
2015-12-22 23:14:36 +01:00
|
|
|
return $parent->canEdit($member);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fall back to secure admin permissions
|
|
|
|
return parent::canCreate($member);
|
2016-07-21 07:53:59 +02:00
|
|
|
}
|
2015-08-11 22:57:19 +02:00
|
|
|
|
2015-12-22 23:14:36 +01:00
|
|
|
/**
|
|
|
|
* Helper method to check the parent for this object
|
|
|
|
*
|
|
|
|
* @param array $args List of arguments passed to canCreate
|
|
|
|
* @return SiteTree Parent page instance
|
|
|
|
*/
|
2016-07-21 07:53:59 +02:00
|
|
|
protected function getCanCreateContext($args)
|
|
|
|
{
|
2015-12-22 23:14:36 +01:00
|
|
|
// Inspect second parameter to canCreate for a 'Parent' context
|
2016-07-21 07:53:59 +02:00
|
|
|
if (isset($args[1]['Parent'])) {
|
2015-12-22 23:14:36 +01:00
|
|
|
return $args[1]['Parent'];
|
|
|
|
}
|
|
|
|
// Hack in currently edited page if context is missing
|
2016-07-21 07:53:59 +02:00
|
|
|
if (Controller::has_curr() && Controller::curr() instanceof CMSMain) {
|
2015-12-22 23:14:36 +01:00
|
|
|
return Controller::curr()->currentPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
// No page being edited
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if can publish
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-07-21 07:53:59 +02:00
|
|
|
public function canPublish($member = null)
|
|
|
|
{
|
2015-12-22 23:14:36 +01:00
|
|
|
return $this->canEdit($member);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if can unpublish
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-07-21 07:53:59 +02:00
|
|
|
public function canUnpublish($member = null)
|
|
|
|
{
|
2015-12-22 23:14:36 +01:00
|
|
|
return $this->canDelete($member);
|
|
|
|
}
|
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
/**
|
|
|
|
* Publish this Form Field to the live site
|
|
|
|
*
|
|
|
|
* Wrapper for the {@link Versioned} publish function
|
2017-03-10 05:48:47 +01:00
|
|
|
*
|
|
|
|
* @param string $fromStage
|
|
|
|
* @param string $toStage
|
|
|
|
* @param bool $createNewVersion
|
2016-07-21 07:53:59 +02:00
|
|
|
*/
|
|
|
|
public function doPublish($fromStage, $toStage, $createNewVersion = false)
|
|
|
|
{
|
|
|
|
$this->publish($fromStage, $toStage, $createNewVersion);
|
2017-03-10 05:48:47 +01:00
|
|
|
$this->publishRules($fromStage, $toStage, $createNewVersion);
|
2017-05-01 07:44:39 +02:00
|
|
|
}
|
2016-07-21 07:53:59 +02:00
|
|
|
|
2017-03-10 05:48:47 +01:00
|
|
|
/**
|
|
|
|
* Publish all field rules
|
|
|
|
*
|
|
|
|
* @param string $fromStage
|
|
|
|
* @param string $toStage
|
|
|
|
* @param bool $createNewVersion
|
|
|
|
*/
|
|
|
|
protected function publishRules($fromStage, $toStage, $createNewVersion)
|
|
|
|
{
|
|
|
|
$seenRuleIDs = array();
|
2017-01-24 21:35:50 +01:00
|
|
|
|
2017-03-10 05:48:47 +01:00
|
|
|
// Don't forget to publish the related custom rules...
|
|
|
|
foreach ($this->DisplayRules() as $rule) {
|
|
|
|
$seenRuleIDs[] = $rule->ID;
|
|
|
|
$rule->doPublish($fromStage, $toStage, $createNewVersion);
|
|
|
|
$rule->destroy();
|
|
|
|
}
|
2017-01-24 21:35:50 +01:00
|
|
|
|
2017-03-10 05:48:47 +01:00
|
|
|
// remove any orphans from the "fromStage"
|
2017-01-24 21:35:50 +01:00
|
|
|
$rules = Versioned::get_by_stage('EditableCustomRule', $toStage)
|
|
|
|
->filter('ParentID', $this->ID);
|
|
|
|
|
2017-03-10 05:48:47 +01:00
|
|
|
if (!empty($seenRuleIDs)) {
|
|
|
|
$rules = $rules->exclude('ID', $seenRuleIDs);
|
2016-07-21 07:53:59 +02:00
|
|
|
}
|
2017-01-24 21:35:50 +01:00
|
|
|
|
2017-03-10 05:48:47 +01:00
|
|
|
foreach ($rules as $rule) {
|
|
|
|
$rule->deleteFromStage($toStage);
|
|
|
|
}
|
|
|
|
}
|
2016-07-21 07:53:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete this field from a given stage
|
|
|
|
*
|
|
|
|
* Wrapper for the {@link Versioned} deleteFromStage function
|
|
|
|
*/
|
|
|
|
public function doDeleteFromStage($stage)
|
|
|
|
{
|
|
|
|
// Remove custom rules in this stage
|
|
|
|
$rules = Versioned::get_by_stage('EditableCustomRule', $stage)
|
|
|
|
->filter('ParentID', $this->ID);
|
|
|
|
foreach ($rules as $rule) {
|
|
|
|
$rule->deleteFromStage($stage);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove record
|
|
|
|
$this->deleteFromStage($stage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 05:48:47 +01:00
|
|
|
* checks whether record is new, copied from SiteTree
|
2016-07-21 07:53:59 +02:00
|
|
|
*/
|
|
|
|
public function isNew()
|
|
|
|
{
|
|
|
|
if (empty($this->ID)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_numeric($this->ID)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return stripos($this->ID, 'new') === 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* checks if records is changed on stage
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function getIsModifiedOnStage()
|
|
|
|
{
|
|
|
|
// new unsaved fields could be never be published
|
|
|
|
if ($this->isNew()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$stageVersion = Versioned::get_versionnumber_by_stage('EditableFormField', 'Stage', $this->ID);
|
|
|
|
$liveVersion = Versioned::get_versionnumber_by_stage('EditableFormField', 'Live', $this->ID);
|
|
|
|
|
|
|
|
return ($stageVersion && $stageVersion != $liveVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated since version 4.0
|
|
|
|
*/
|
|
|
|
public function getSettings()
|
|
|
|
{
|
|
|
|
Deprecation::notice('4.0', 'getSettings is deprecated');
|
|
|
|
return (!empty($this->CustomSettings)) ? unserialize($this->CustomSettings) : array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated since version 4.0
|
|
|
|
*/
|
|
|
|
public function setSettings($settings = array())
|
|
|
|
{
|
|
|
|
Deprecation::notice('4.0', 'setSettings is deprecated');
|
|
|
|
$this->CustomSettings = serialize($settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated since version 4.0
|
|
|
|
*/
|
|
|
|
public function setSetting($key, $value)
|
|
|
|
{
|
|
|
|
Deprecation::notice('4.0', "setSetting({$key}) is deprecated");
|
|
|
|
$settings = $this->getSettings();
|
|
|
|
$settings[$key] = $value;
|
|
|
|
|
|
|
|
$this->setSettings($settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the allowed css classes for the extraClass custom setting
|
|
|
|
*
|
2017-03-10 05:48:47 +01:00
|
|
|
* @param array $allowed The permissible CSS classes to add
|
2016-07-21 07:53:59 +02:00
|
|
|
*/
|
|
|
|
public function setAllowedCss(array $allowed)
|
|
|
|
{
|
|
|
|
if (is_array($allowed)) {
|
|
|
|
foreach ($allowed as $k => $v) {
|
|
|
|
self::$allowed_css[$k] = (!is_null($v)) ? $v : $k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated since version 4.0
|
|
|
|
*/
|
|
|
|
public function getSetting($setting)
|
|
|
|
{
|
|
|
|
Deprecation::notice("4.0", "getSetting({$setting}) is deprecated");
|
|
|
|
|
|
|
|
$settings = $this->getSettings();
|
|
|
|
if (isset($settings) && count($settings) > 0) {
|
|
|
|
if (isset($settings[$setting])) {
|
|
|
|
return $settings[$setting];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the path to the icon for this field type, relative to the site root.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getIcon()
|
|
|
|
{
|
|
|
|
return USERFORMS_DIR . '/images/' . strtolower($this->class) . '.png';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether or not this field has addable options
|
|
|
|
* such as a dropdown field or radio set
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getHasAddableOptions()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether or not this field needs to show the extra
|
|
|
|
* options dropdown list
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function showExtraOptions()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the Title for rendering in the front-end (with XML values escaped)
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getEscapedTitle()
|
|
|
|
{
|
|
|
|
return Convert::raw2xml($this->Title);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the numeric indicator (1.1.2) that represents it's nesting value
|
|
|
|
*
|
|
|
|
* Only useful for fields attached to a current page, and that contain other fields such as pages
|
|
|
|
* or groups
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFieldNumber()
|
|
|
|
{
|
|
|
|
// Check if exists
|
|
|
|
if (!$this->exists()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// Check parent
|
|
|
|
$form = $this->Parent();
|
|
|
|
if (!$form || !$form->exists() || !($fields = $form->Fields())) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$prior = 0; // Number of prior group at this level
|
|
|
|
$stack = array(); // Current stack of nested groups, where the top level = the page
|
|
|
|
foreach ($fields->map('ID', 'ClassName') as $id => $className) {
|
|
|
|
if ($className === 'EditableFormStep') {
|
|
|
|
$priorPage = empty($stack) ? $prior : $stack[0];
|
|
|
|
$stack = array($priorPage + 1);
|
|
|
|
$prior = 0;
|
|
|
|
} elseif ($className === 'EditableFieldGroup') {
|
|
|
|
$stack[] = $prior + 1;
|
|
|
|
$prior = 0;
|
|
|
|
} elseif ($className === 'EditableFieldGroupEnd') {
|
|
|
|
$prior = array_pop($stack);
|
|
|
|
}
|
|
|
|
if ($id == $this->ID) {
|
|
|
|
return implode('.', $stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCMSTitle()
|
|
|
|
{
|
|
|
|
return $this->i18n_singular_name() . ' (' . $this->Title . ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated since version 4.0
|
|
|
|
*/
|
|
|
|
public function getFieldName($field = false)
|
|
|
|
{
|
|
|
|
Deprecation::notice('4.0', "getFieldName({$field}) is deprecated");
|
|
|
|
return ($field) ? "Fields[".$this->ID."][".$field."]" : "Fields[".$this->ID."]";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated since version 4.0
|
|
|
|
*/
|
|
|
|
public function getSettingName($field)
|
|
|
|
{
|
|
|
|
Deprecation::notice('4.0', "getSettingName({$field}) is deprecated");
|
|
|
|
$name = $this->getFieldName('CustomSettings');
|
|
|
|
|
|
|
|
return $name . '[' . $field .']';
|
|
|
|
}
|
2015-12-11 05:38:31 +01:00
|
|
|
|
2016-07-21 07:53:59 +02:00
|
|
|
/**
|
|
|
|
* Append custom validation fields to the default 'Validation'
|
|
|
|
* section in the editable options view
|
|
|
|
*
|
|
|
|
* @return FieldList
|
|
|
|
*/
|
|
|
|
public function getFieldValidationOptions()
|
|
|
|
{
|
|
|
|
$fields = new FieldList(
|
|
|
|
CheckboxField::create('Required', _t('EditableFormField.REQUIRED', 'Is this field Required?'))
|
|
|
|
->setDescription(_t('EditableFormField.REQUIRED_DESCRIPTION', 'Please note that conditional fields can\'t be required')),
|
|
|
|
TextField::create('CustomErrorMessage', _t('EditableFormField.CUSTOMERROR', 'Custom Error Message'))
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->extend('updateFieldValidationOptions', $fields);
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a FormField to appear on the front end. Implement on
|
|
|
|
* your subclass.
|
|
|
|
*
|
|
|
|
* @return FormField
|
|
|
|
*/
|
|
|
|
public function getFormField()
|
|
|
|
{
|
|
|
|
user_error("Please implement a getFormField() on your EditableFormClass ". $this->ClassName, E_USER_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates a formfield with extensions
|
|
|
|
*
|
|
|
|
* @param FormField $field
|
|
|
|
*/
|
|
|
|
public function doUpdateFormField($field)
|
|
|
|
{
|
|
|
|
$this->extend('beforeUpdateFormField', $field);
|
|
|
|
$this->updateFormField($field);
|
|
|
|
$this->extend('afterUpdateFormField', $field);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates a formfield with the additional metadata specified by this field
|
|
|
|
*
|
|
|
|
* @param FormField $field
|
|
|
|
*/
|
|
|
|
protected function updateFormField($field)
|
|
|
|
{
|
|
|
|
// set the error / formatting messages
|
|
|
|
$field->setCustomValidationMessage($this->getErrorMessage()->RAW());
|
|
|
|
|
|
|
|
// 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));
|
|
|
|
}
|
|
|
|
|
|
|
|
// if this field is required add some
|
|
|
|
if ($this->Required) {
|
|
|
|
// Required validation can conflict so add the Required validation messages as input attributes
|
|
|
|
$errorMessage = $this->getErrorMessage()->HTML();
|
|
|
|
$field->addExtraClass('requiredField');
|
|
|
|
$field->setAttribute('data-rule-required', 'true');
|
|
|
|
$field->setAttribute('data-msg-required', $errorMessage);
|
|
|
|
|
|
|
|
if ($identifier = UserDefinedForm::config()->required_identifier) {
|
|
|
|
$title = $field->Title() . " <span class='required-identifier'>". $identifier . "</span>";
|
|
|
|
$field->setTitle($title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if this field has an extra class
|
|
|
|
if ($this->ExtraClass) {
|
|
|
|
$field->addExtraClass($this->ExtraClass);
|
|
|
|
}
|
2017-04-28 10:31:51 +02:00
|
|
|
|
2017-05-07 23:08:31 +02:00
|
|
|
// if ShowOnLoad is false hide the field
|
|
|
|
if (!$this->ShowOnLoad) {
|
|
|
|
$field->addExtraClass($this->ShowOnLoadNice());
|
|
|
|
}
|
|
|
|
|
2017-04-28 10:31:51 +02:00
|
|
|
// if this field has a placeholder
|
|
|
|
if ($this->Placeholder) {
|
|
|
|
$field->setAttribute('placeholder', $this->Placeholder);
|
|
|
|
}
|
2016-07-21 07:53:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the instance of the submission field class
|
|
|
|
*
|
|
|
|
* @return SubmittedFormField
|
|
|
|
*/
|
|
|
|
public function getSubmittedFormField()
|
|
|
|
{
|
|
|
|
return new SubmittedFormField();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show this form field (and its related value) in the reports and in emails.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function showInReports()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the error message for this field. Either uses the custom
|
|
|
|
* one (if provided) or the default SilverStripe message
|
|
|
|
*
|
|
|
|
* @return Varchar
|
|
|
|
*/
|
|
|
|
public function getErrorMessage()
|
|
|
|
{
|
|
|
|
$title = strip_tags("'". ($this->Title ? $this->Title : $this->Name) . "'");
|
|
|
|
$standard = sprintf(_t('Form.FIELDISREQUIRED', '%s is required').'.', $title);
|
|
|
|
|
|
|
|
// only use CustomErrorMessage if it has a non empty value
|
|
|
|
$errorMessage = (!empty($this->CustomErrorMessage)) ? $this->CustomErrorMessage : $standard;
|
|
|
|
|
|
|
|
return DBField::create_field('Varchar', $errorMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoked by UserFormUpgradeService to migrate settings specific to this field from CustomSettings
|
|
|
|
* to the field proper
|
|
|
|
*
|
|
|
|
* @param array $data Unserialised data
|
|
|
|
*/
|
|
|
|
public function migrateSettings($data)
|
|
|
|
{
|
|
|
|
// Map 'Show' / 'Hide' to boolean
|
|
|
|
if (isset($data['ShowOnLoad'])) {
|
|
|
|
$this->ShowOnLoad = $data['ShowOnLoad'] === '' || ($data['ShowOnLoad'] && $data['ShowOnLoad'] !== 'Hide');
|
|
|
|
unset($data['ShowOnLoad']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Migrate all other settings
|
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
if ($this->hasField($key)) {
|
|
|
|
$this->setField($key, $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the formfield to use when editing this inline in gridfield
|
|
|
|
*
|
|
|
|
* @param string $column name of column
|
|
|
|
* @param array $fieldClasses List of allowed classnames if this formfield has a selectable class
|
|
|
|
* @return FormField
|
|
|
|
*/
|
|
|
|
public function getInlineClassnameField($column, $fieldClasses)
|
|
|
|
{
|
|
|
|
return DropdownField::create($column, false, $fieldClasses);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the formfield to use when editing the title inline
|
|
|
|
*
|
|
|
|
* @param string $column
|
|
|
|
* @return FormField
|
|
|
|
*/
|
|
|
|
public function getInlineTitleField($column)
|
|
|
|
{
|
|
|
|
return TextField::create($column, false)
|
|
|
|
->setAttribute('placeholder', _t('EditableFormField.TITLE', 'Title'))
|
|
|
|
->setAttribute('data-placeholder', _t('EditableFormField.TITLE', 'Title'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the JS expression for selecting the holder for this field
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSelectorHolder()
|
|
|
|
{
|
2017-04-28 00:22:15 +02:00
|
|
|
return sprintf('$("%s")', $this->getSelectorOnly());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns only the JS identifier of a string, less the $(), which can be inserted elsewhere, for example when you
|
|
|
|
* want to perform selections on multiple selectors
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSelectorOnly()
|
|
|
|
{
|
|
|
|
return "#{$this->Name}";
|
2016-07-21 07:53:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the JS expression for selecting the value for this field
|
|
|
|
*
|
|
|
|
* @param EditableCustomRule $rule Custom rule this selector will be used with
|
|
|
|
* @param bool $forOnLoad Set to true if this will be invoked on load
|
2017-04-28 00:22:15 +02:00
|
|
|
*
|
|
|
|
* @return string
|
2016-07-21 07:53:59 +02:00
|
|
|
*/
|
|
|
|
public function getSelectorField(EditableCustomRule $rule, $forOnLoad = false)
|
|
|
|
{
|
2017-04-28 00:22:15 +02:00
|
|
|
return sprintf("$(%s)", $this->getSelectorFieldOnly());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSelectorFieldOnly()
|
|
|
|
{
|
|
|
|
return "[name='{$this->Name}']";
|
2016-07-21 07:53:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the list of classes that can be selected and used as data-values
|
|
|
|
*
|
|
|
|
* @param $includeLiterals Set to false to exclude non-data fields
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getEditableFieldClasses($includeLiterals = true)
|
|
|
|
{
|
|
|
|
$classes = ClassInfo::getValidSubClasses('EditableFormField');
|
|
|
|
|
|
|
|
// Remove classes we don't want to display in the dropdown.
|
|
|
|
$editableFieldClasses = array();
|
|
|
|
foreach ($classes as $class) {
|
|
|
|
// Skip abstract / hidden classes
|
|
|
|
if (Config::inst()->get($class, 'abstract', Config::UNINHERITED) || Config::inst()->get($class, 'hidden')
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$includeLiterals && Config::inst()->get($class, 'literal')) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$singleton = singleton($class);
|
|
|
|
if (!$singleton->canCreate()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$editableFieldClasses[$class] = $singleton->i18n_singular_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
asort($editableFieldClasses);
|
|
|
|
return $editableFieldClasses;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return EditableFormFieldValidator
|
|
|
|
*/
|
|
|
|
public function getCMSValidator()
|
|
|
|
{
|
|
|
|
return EditableFormFieldValidator::create()
|
|
|
|
->setRecord($this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine effective display rules for this field.
|
|
|
|
*
|
|
|
|
* @return SS_List
|
|
|
|
*/
|
|
|
|
public function EffectiveDisplayRules()
|
|
|
|
{
|
|
|
|
if ($this->Required) {
|
|
|
|
return new ArrayList();
|
|
|
|
}
|
|
|
|
return $this->DisplayRules();
|
|
|
|
}
|
2017-04-28 00:22:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Extracts info from DisplayRules into array so UserDefinedForm->buildWatchJS can run through it.
|
|
|
|
* @return array|null
|
|
|
|
*/
|
|
|
|
public function formatDisplayRules()
|
|
|
|
{
|
|
|
|
$holderSelector = $this->getSelectorOnly();
|
|
|
|
$result = array(
|
|
|
|
'targetFieldID' => $holderSelector,
|
|
|
|
'conjunction' => $this->DisplayRulesConjunctionNice(),
|
|
|
|
'selectors' => array(),
|
|
|
|
'events' => array(),
|
|
|
|
'operations' => array(),
|
|
|
|
'initialState' => $this->ShowOnLoadNice(),
|
|
|
|
'view' => array(),
|
|
|
|
'opposite' => array(),
|
|
|
|
);
|
|
|
|
// Check for field dependencies / default
|
|
|
|
/** @var EditableCustomRule $rule */
|
|
|
|
foreach ($this->EffectiveDisplayRules() as $rule) {
|
|
|
|
// Get the field which is effected
|
|
|
|
/** @var EditableFormField $formFieldWatch */
|
2017-06-26 08:14:23 +02:00
|
|
|
$formFieldWatch = DataObject::get_by_id('EditableFormField', $rule->ConditionFieldID);
|
2017-04-28 00:22:15 +02:00
|
|
|
// Skip deleted fields
|
|
|
|
if (! $formFieldWatch) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$fieldToWatch = $formFieldWatch->getSelectorFieldOnly();
|
|
|
|
|
|
|
|
$expression = $rule->buildExpression();
|
|
|
|
if (! in_array($fieldToWatch, $result['selectors'])) {
|
|
|
|
$result['selectors'][] = $fieldToWatch;
|
|
|
|
}
|
|
|
|
if (! in_array($expression['event'], $result['events'])) {
|
|
|
|
$result['events'][] = $expression['event'];
|
|
|
|
}
|
|
|
|
$result['operations'][] = $expression['operation'];
|
|
|
|
|
2017-05-22 05:54:28 +02:00
|
|
|
// View/Show should read
|
|
|
|
$opposite = ($result['initialState'] === 'hide') ? 'show' : 'hide';
|
2017-04-28 00:22:15 +02:00
|
|
|
$result['view'] = $rule->toggleDisplayText($result['initialState']);
|
2017-05-22 05:54:28 +02:00
|
|
|
$result['opposite'] = $rule->toggleDisplayText($opposite);
|
2017-04-28 00:22:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (count($result['selectors'])) ? $result : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces the set DisplayRulesConjunction with their JS logical operators
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function DisplayRulesConjunctionNice()
|
|
|
|
{
|
|
|
|
return (strtolower($this->DisplayRulesConjunction) === 'or') ? '||' : '&&';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces boolean ShowOnLoad with its JS string equivalent
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function ShowOnLoadNice()
|
|
|
|
{
|
|
|
|
return ($this->ShowOnLoad) ? 'show' : 'hide';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether this is of type EditableCheckBoxField
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isCheckBoxField()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether this is of type EditableRadioField
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isRadioField()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determined is this is of type EditableCheckboxGroupField
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isCheckBoxGroupField()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2010-11-02 21:14:28 +01:00
|
|
|
}
|