mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
029a8b9586
API Substitute Zend_Locale with Locale / NumberFormatter API Substitute Zend_Date with IntlDateFormatter API Added DBTIme::Nice12, FormatFromSettings API Added Short() method to DBDate / DBTime / DBDatetime API Add Date::getTimestamp() API Added setSubmittedValue api for FormField API Add second arg to base FormField::setValue() API Major refactor of i18n into component data parts API Implement Resettable interface to reset objects between tests ENHANCEMENT Changed DBField::create_field return type to `static` to support better type hinting ENHANCEMENT i18nTextCollector supports __CLASS__
139 lines
2.7 KiB
PHP
139 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
use SilverStripe\View\ViewableData;
|
|
|
|
/**
|
|
* This field lets you put an arbitrary piece of HTML into your forms.
|
|
*
|
|
* <code>
|
|
* new LiteralField (
|
|
* $name = "literalfield",
|
|
* $content = '<b>some bold text</b> and <a href="http://silverstripe.com">a link</a>'
|
|
* )
|
|
* </code>
|
|
*/
|
|
class LiteralField extends DatalessField
|
|
{
|
|
|
|
private static $casting = [
|
|
'Value' => 'HTMLFragment',
|
|
];
|
|
|
|
/**
|
|
* @var string|FormField
|
|
*/
|
|
protected $content;
|
|
|
|
protected $schemaDataType = self::SCHEMA_DATA_TYPE_STRUCTURAL;
|
|
|
|
/**
|
|
* @skipUpgrade
|
|
* @var string
|
|
*/
|
|
protected $schemaComponent = 'LiteralField';
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param string|FormField $content
|
|
*/
|
|
public function __construct($name, $content)
|
|
{
|
|
$this->setContent($content);
|
|
|
|
parent::__construct($name);
|
|
}
|
|
|
|
/**
|
|
* @param array $properties
|
|
*
|
|
* @return string
|
|
*/
|
|
public function FieldHolder($properties = array())
|
|
{
|
|
if ($this->content instanceof ViewableData) {
|
|
$context = $this->content;
|
|
|
|
if ($properties) {
|
|
$context = $context->customise($properties);
|
|
}
|
|
|
|
return $context->forTemplate();
|
|
}
|
|
|
|
return $this->content;
|
|
}
|
|
|
|
/**
|
|
* @param array $properties
|
|
*
|
|
* @return string
|
|
*/
|
|
public function Field($properties = array())
|
|
{
|
|
return $this->FieldHolder($properties);
|
|
}
|
|
|
|
/**
|
|
* Sets the content of this field to a new value.
|
|
*
|
|
* @param string|FormField $content
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setContent($content)
|
|
{
|
|
$this->content = $content;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getContent()
|
|
{
|
|
return $this->content;
|
|
}
|
|
|
|
/**
|
|
* Synonym of {@link setContent()} so that LiteralField is more compatible with other field types.
|
|
*
|
|
* @param string|FormField $content
|
|
* @param mixed $data
|
|
* @return $this
|
|
*/
|
|
public function setValue($content, $data = null)
|
|
{
|
|
$this->setContent($content);
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return static
|
|
*/
|
|
public function performReadonlyTransformation()
|
|
{
|
|
$clone = clone $this;
|
|
|
|
$clone->setReadonly(true);
|
|
|
|
return $clone;
|
|
}
|
|
|
|
/**
|
|
* Header fields support dynamic titles via schema state
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getSchemaStateDefaults()
|
|
{
|
|
$state = parent::getSchemaStateDefaults();
|
|
$state['value'] = $this->FieldHolder();
|
|
|
|
return $state;
|
|
}
|
|
}
|