silverstripe-framework/src/Forms/HeaderField.php
Dylan Wagstaff 25aa3af032 FIX HeaderField requires the optional Title field
FormField marks the Title constructor argument as optional, and DatalessField does not override the __construct method. HeaderField on the other hand goes against the grain of FormFields as a whole and requires the Title field, seemingly for no good reason (at least, not that the commit message for a68ba38478 indicates) - this seems like an accidental ommision. This commit looks to reinstate the optionality of this constructor argument for consistency's sake.

Plus it broke a module I was investigating.
2019-05-24 13:44:01 +12:00

111 lines
2.0 KiB
PHP

<?php
namespace SilverStripe\Forms;
/**
* Field that generates a heading tag.
*
* This can be used to add extra text in your forms.
*/
class HeaderField extends DatalessField
{
/**
* The level of the <h1> to <h6> HTML tag.
*
* @var int
*/
protected $headingLevel = 2;
protected $schemaDataType = self::SCHEMA_DATA_TYPE_STRUCTURAL;
/**
* @skipUpgrade
* @var string
*/
protected $schemaComponent = 'HeaderField';
/**
* @param string $name
* @param string $title
* @param int $headingLevel
*/
public function __construct($name, $title = null, $headingLevel = 2)
{
$this->setHeadingLevel($headingLevel);
parent::__construct($name, $title);
}
/**
* @return int
*/
public function getHeadingLevel()
{
return $this->headingLevel;
}
/**
* @param int $headingLevel
*
* @return $this
*/
public function setHeadingLevel($headingLevel)
{
$this->headingLevel = $headingLevel;
return $this;
}
/**
* {@inheritdoc}
*/
public function getAttributes()
{
return array_merge(
parent::getAttributes(),
array(
'id' => $this->ID(),
'class' => $this->extraClass(),
'type' => null,
'name' => null
)
);
}
/**
* @return null
*/
public function Type()
{
return null;
}
/**
* Header fields support dynamic titles via schema state
*
* @return array
*/
public function getSchemaStateDefaults()
{
$state = parent::getSchemaStateDefaults();
$state['data']['title'] = $this->Title();
return $state;
}
/**
* Header fields heading level to be set
*
* @return array
*/
public function getSchemaDataDefaults()
{
$data = parent::getSchemaDataDefaults();
$data['data']['headingLevel'] = $this->headingLevel;
return $data;
}
}