View source
<?php
namespace Drupal\Core\Field\Plugin\Field\FieldWidget;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Form\FormStateInterface;
class StringTextareaWidget extends WidgetBase {
public static function defaultSettings() {
return array(
'rows' => '5',
'placeholder' => '',
) + parent::defaultSettings();
}
public function settingsForm(array $form, FormStateInterface $form_state) {
$element['rows'] = array(
'#type' => 'number',
'#title' => t('Rows'),
'#default_value' => $this
->getSetting('rows'),
'#required' => TRUE,
'#min' => 1,
);
$element['placeholder'] = array(
'#type' => 'textfield',
'#title' => t('Placeholder'),
'#default_value' => $this
->getSetting('placeholder'),
'#description' => t('Text that will be shown inside the field until a value is entered. This hint is usually a sample value or a brief description of the expected format.'),
);
return $element;
}
public function settingsSummary() {
$summary = array();
$summary[] = t('Number of rows: @rows', array(
'@rows' => $this
->getSetting('rows'),
));
$placeholder = $this
->getSetting('placeholder');
if (!empty($placeholder)) {
$summary[] = t('Placeholder: @placeholder', array(
'@placeholder' => $placeholder,
));
}
return $summary;
}
public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
$element['value'] = $element + array(
'#type' => 'textarea',
'#default_value' => $items[$delta]->value,
'#rows' => $this
->getSetting('rows'),
'#placeholder' => $this
->getSetting('placeholder'),
'#attributes' => array(
'class' => array(
'js-text-full',
'text-full',
),
),
);
return $element;
}
}