rocketship_core-8.x-2.0-alpha11/src/Plugin/Field/FieldType/TitleDescriptionField.php
src/Plugin/Field/FieldType/TitleDescriptionField.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 = "title_description_field",
* label = @Translation("Title:description field"),
* description = @Translation("This field exposes two inputs; one for the
* title, one for the description"),
* default_widget = "title_description_widget",
* default_formatter = "title_description_formatter"
* )
*/
class TitleDescriptionField extends FieldItemBase {
/**
* {@inheritdoc}
*/
public static function mainPropertyName() {
return 'title';
}
/**
* {@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['title'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Title'))
->setRequired(TRUE);
$properties['description'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Description'))
->setRequired(TRUE);
return $properties;
}
/**
* {@inheritdoc}
*/
public static function schema(FieldStorageDefinitionInterface $field_definition) {
$schema = [
'columns' => [
'description' => [
'type' => 'text',
'size' => 'big',
],
'title' => [
'type' => $field_definition->getSetting('is_ascii') === TRUE ? 'varchar_ascii' : 'varchar',
'length' => (int) $field_definition->getSetting('max_length'),
],
],
];
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', [
'title' => [
'Length' => [
'max' => $max_length,
'maxMessage' => t('%name title: 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['description'] = $random->paragraphs(1);
$values['title'] = $random->word(mt_rand(1, $field_definition->getSetting('max_length')));
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('title')->getValue();
$label = $this->get('description')->getValue();
return empty($value) || empty($label);
}
}
