rocketship_core-8.x-2.0-alpha11/src/Plugin/Field/FieldType/LabelValueField.php
src/Plugin/Field/FieldType/LabelValueField.php
<?php
namespace Drupal\rocketship_core\Plugin\Field\FieldType;
use Drupal\Component\Utility\Random;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemBase;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\TypedData\DataDefinition;
/**
* Plugin implementation of the 'label_value_field' field type.
*
* @FieldType(
* id = "label_value_field",
* label = @Translation("Label:value field"),
* description = @Translation("This field exposes two inputs; one for the label, one for the value"),
* default_widget = "label_value_widget",
* default_formatter = "label_value_formatter"
* )
*/
class LabelValueField extends FieldItemBase {
/**
* {@inheritdoc}
*/
public static function defaultStorageSettings() {
return [
'max_length' => 512,
'is_ascii' => FALSE,
] + parent::defaultStorageSettings();
}
/**
* {@inheritdoc}
*/
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
// Prevent early t() calls by using the TranslatableMarkup.
$properties['label'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Label'))
->setRequired(TRUE);
$properties['value'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Value'))
->setRequired(TRUE);
$properties['promoted'] = DataDefinition::create('boolean')
->setLabel(t('Visible on teasers'));
return $properties;
}
/**
* {@inheritdoc}
*/
public static function schema(FieldStorageDefinitionInterface $field_definition) {
$schema = [
'columns' => [
'label' => [
'type' => $field_definition->getSetting('is_ascii') === TRUE ? 'varchar_ascii' : 'varchar',
'length' => (int) $field_definition->getSetting('max_length'),
],
'value' => [
'type' => $field_definition->getSetting('is_ascii') === TRUE ? 'varchar_ascii' : 'varchar',
'length' => (int) $field_definition->getSetting('max_length'),
],
'promoted' => [
'type' => 'int',
'size' => 'tiny',
],
],
];
return $schema;
}
/**
* {@inheritdoc}
*/
public function getConstraints() {
$constraints = parent::getConstraints();
if ($max_length = $this->getSetting('max_length')) {
$constraint_manager = \Drupal::typedDataManager()
->getValidationConstraintManager();
$constraints[] = $constraint_manager->create('ComplexData', [
'value' => [
'Length' => [
'max' => $max_length,
'maxMessage' => t('%name value: may not be longer than @max characters.', [
'%name' => $this->getFieldDefinition()->getLabel(),
'@max' => $max_length,
]),
],
],
]);
$constraints[] = $constraint_manager->create('ComplexData', [
'label' => [
'Length' => [
'max' => $max_length,
'maxMessage' => t('%name label: may not be longer than @max characters.', [
'%name' => $this->getFieldDefinition()->getLabel(),
'@max' => $max_length,
]),
],
],
]);
}
return $constraints;
}
/**
* {@inheritdoc}
*/
public static function generateSampleValue(FieldDefinitionInterface $field_definition) {
$random = new Random();
$values['label'] = $random->word(mt_rand(1, $field_definition->getSetting('max_length')));
$values['value'] = $random->word(mt_rand(1, $field_definition->getSetting('max_length')));
$values['promoted'] = mt_rand(0, 1);
return $values;
}
/**
* {@inheritdoc}
*/
public function storageSettingsForm(array &$form, FormStateInterface $form_state, $has_data) {
$elements = [];
$elements['max_length'] = [
'#type' => 'number',
'#title' => t('Maximum length'),
'#default_value' => $this->getSetting('max_length'),
'#required' => TRUE,
'#description' => t('The maximum length of the field in characters.'),
'#min' => 1,
'#disabled' => $has_data,
];
return $elements;
}
/**
* {@inheritdoc}
*/
public function isEmpty() {
$value = $this->get('value')->getValue();
$label = $this->get('label')->getValue();
return empty($value) || empty($label);
}
}
