mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
103 lines
1.7 KiB
PHP
103 lines
1.7 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, $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;
|
|
}
|
|
}
|