mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
c822f240af
Fixes: Multiple HeaderFields in UserForm creates WCAG Duplicate ID issue #1290 https://github.com/silverstripe/silverstripe-userforms/issues/1290
123 lines
3.1 KiB
PHP
123 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\UserForms\Model\EditableFormField;
|
|
|
|
use SilverStripe\Forms\CheckboxField;
|
|
use SilverStripe\Forms\DropdownField;
|
|
use SilverStripe\Forms\FieldList;
|
|
use SilverStripe\Forms\HeaderField;
|
|
use SilverStripe\UserForms\Model\EditableFormField;
|
|
|
|
/**
|
|
* Allows an editor to insert a generic heading into a field
|
|
*
|
|
* @package userforms
|
|
* @property int $Level
|
|
* @property int $HideFromReports
|
|
*/
|
|
class EditableFormHeading extends EditableFormField
|
|
{
|
|
private static $singular_name = 'Heading';
|
|
|
|
private static $plural_name = 'Headings';
|
|
|
|
private static $literal = true;
|
|
|
|
private static $db = [
|
|
'Level' => 'Int(3)', // From CustomSettings
|
|
'HideFromReports' => 'Boolean(0)' // from CustomSettings
|
|
];
|
|
|
|
private static $defaults = [
|
|
'Level' => 3,
|
|
'HideFromReports' => false
|
|
];
|
|
|
|
private static $table_name = 'EditableFormHeading';
|
|
|
|
/**
|
|
* @return FieldList
|
|
*/
|
|
public function getCMSFields()
|
|
{
|
|
$this->beforeUpdateCMSFields(function (FieldList $fields) {
|
|
$fields->removeByName(['Default', 'Validation', 'RightTitle']);
|
|
|
|
$levels = [
|
|
'1' => '1',
|
|
'2' => '2',
|
|
'3' => '3',
|
|
'4' => '4',
|
|
'5' => '5',
|
|
'6' => '6'
|
|
];
|
|
|
|
$fields->addFieldsToTab('Root.Main', [
|
|
DropdownField::create(
|
|
'Level',
|
|
_t(__CLASS__.'.LEVEL', 'Select Heading Level'),
|
|
$levels
|
|
),
|
|
CheckboxField::create(
|
|
'HideFromReports',
|
|
_t('SilverStripe\\UserForms\\Model\\EditableFormField\\EditableLiteralField.HIDEFROMREPORT', 'Hide from reports?')
|
|
)
|
|
]);
|
|
});
|
|
|
|
return parent::getCMSFields();
|
|
}
|
|
|
|
public function getFormField()
|
|
{
|
|
$labelField = HeaderField::create('userforms-header-' . $this->ID, $this->Title ?: false)
|
|
->setHeadingLevel($this->Level);
|
|
$labelField->addExtraClass('FormHeading');
|
|
$labelField->setAttribute('data-id', $this->Name);
|
|
$this->doUpdateFormField($labelField);
|
|
return $labelField;
|
|
}
|
|
|
|
protected function updateFormField($field)
|
|
{
|
|
// set the right title on this field
|
|
if ($this->RightTitle) {
|
|
$field->setRightTitle($this->RightTitle);
|
|
}
|
|
|
|
// if this field has an extra class
|
|
if ($this->ExtraClass) {
|
|
$field->addExtraClass($this->ExtraClass);
|
|
}
|
|
|
|
if (!$this->ShowOnLoad) {
|
|
$field->addExtraClass($this->ShowOnLoadNice());
|
|
}
|
|
}
|
|
|
|
public function showInReports()
|
|
{
|
|
return !$this->HideFromReports;
|
|
}
|
|
|
|
public function getFieldValidationOptions()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function getSelectorHolder()
|
|
{
|
|
return "$(\":header[data-id='{$this->Name}']\")";
|
|
}
|
|
|
|
public function getSelectorOnly()
|
|
{
|
|
return "[data-id={$this->Name}]";
|
|
}
|
|
|
|
public function getLevel()
|
|
{
|
|
return $this->getField('Level') ?: 3;
|
|
}
|
|
}
|