class OfficeHoursItem in Office Hours 8
Plugin implementation of the 'office_hours' field type.
Plugin annotation
@FieldType(
id = "office_hours",
label = @Translation("Office hours"),
description = @Translation("This field stores weekly 'office hours' or 'opening hours' in the database."),
default_widget = "office_hours_default",
default_formatter = "office_hours",
list_class = "\Drupal\office_hours\Plugin\Field\FieldType\OfficeHoursItemList",
)
Hierarchy
- class \Drupal\Core\TypedData\TypedData implements PluginInspectionInterface, TypedDataInterface uses DependencySerializationTrait, StringTranslationTrait, TypedDataTrait
- class \Drupal\Core\TypedData\Plugin\DataType\Map implements \Drupal\Core\TypedData\Plugin\DataType\IteratorAggregate, ComplexDataInterface
- class \Drupal\Core\Field\FieldItemBase implements FieldItemInterface
- class \Drupal\office_hours\Plugin\Field\FieldType\OfficeHoursItem
- class \Drupal\Core\Field\FieldItemBase implements FieldItemInterface
- class \Drupal\Core\TypedData\Plugin\DataType\Map implements \Drupal\Core\TypedData\Plugin\DataType\IteratorAggregate, ComplexDataInterface
Expanded class hierarchy of OfficeHoursItem
File
- src/
Plugin/ Field/ FieldType/ OfficeHoursItem.php, line 25
Namespace
Drupal\office_hours\Plugin\Field\FieldTypeView source
class OfficeHoursItem extends FieldItemBase {
/**
* {@inheritdoc}
*/
public static function schema(FieldStorageDefinitionInterface $field_definition) {
return [
'columns' => [
'day' => [
'type' => 'int',
'not null' => FALSE,
],
'starthours' => [
'type' => 'int',
'not null' => FALSE,
],
'endhours' => [
'type' => 'int',
'not null' => FALSE,
],
'comment' => [
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
],
],
];
}
/**
* {@inheritdoc}
*/
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$properties['day'] = DataDefinition::create('integer')
->setLabel(t('Day'))
->setDescription("Stores the day of the week's numeric representation (0=Sun, 6=Sat)");
$properties['starthours'] = DataDefinition::create('integer')
->setLabel(t('Start hours'))
->setDescription("Stores the start hours value");
$properties['endhours'] = DataDefinition::create('integer')
->setLabel(t('End hours'))
->setDescription("Stores the end hours value");
$properties['comment'] = DataDefinition::create('string')
->setLabel(t('Comment'))
->addConstraint('Length', [
'max' => 255,
])
->setDescription("Stores the comment");
return $properties;
}
/**
* {@inheritdoc}
*/
public static function defaultStorageSettings() {
$defaultStorageSettings = [
'time_format' => 'G',
'element_type' => 'office_hours_datelist',
'increment' => 30,
'required_start' => FALSE,
'required_end' => FALSE,
'limit_start' => '',
'limit_end' => '',
'comment' => 1,
'valhrs' => FALSE,
'cardinality_per_day' => 2,
] + parent::defaultStorageSettings();
return $defaultStorageSettings;
}
/**
* {@inheritdoc}
*/
public function storageSettingsForm(array &$form, FormStateInterface $form_state, $has_data) {
$element = parent::storageSettingsForm($form, $form_state, $has_data);
$settings = $this
->getFieldDefinition()
->getFieldStorageDefinition()
->getSettings();
// Get a formatted list of valid hours values.
$hours = OfficeHoursDateHelper::hours('H', FALSE);
foreach ($hours as $key => &$hour) {
if (!empty($hour)) {
$hrs = OfficeHoursDateHelper::format($hour . '00', 'H:i');
$ampm = OfficeHoursDateHelper::format($hour . '00', 'g:i a');
$hour = "{$hrs} ({$ampm})";
}
}
$element['#element_validate'] = [
[
static::class,
'validateOfficeHoursSettings',
],
];
$description = $this
->t('The maximum number of time slots, that are allowed per day.
<br/><strong> Warning! Lowering this setting after data has been created
could result in the loss of data! </strong><br/> Be careful when using
more then 2 slots per day, since not all external services (like Google
Places) support this.');
$element['cardinality_per_day'] = [
'#type' => 'select',
'#title' => $this
->t('Number of time slots per day'),
'#options' => array_combine(range(1, 12), range(1, 12)),
'#default_value' => $settings['cardinality_per_day'],
'#description' => $description,
];
// @todo D8 Align with DateTimeDatelistWidget.
$element['time_format'] = [
'#type' => 'select',
'#title' => $this
->t('Time notation'),
'#options' => [
'G' => $this
->t('24 hour time @example', [
'@example' => '(9:00)',
]),
'H' => $this
->t('24 hour time @example', [
'@example' => '(09:00)',
]),
'g' => $this
->t('12 hour time @example', [
'@example' => '09:00 am)',
]),
'h' => $this
->t('12 hour time @example', [
'@example' => '(09:00 am)',
]),
],
'#default_value' => $settings['time_format'],
'#required' => FALSE,
'#description' => $this
->t('Format of the time in the widget.'),
];
$element['element_type'] = [
'#type' => 'select',
'#title' => $this
->t('Time element type'),
'#description' => $this
->t('Select the widget type for selecting the time.'),
'#options' => [
'office_hours_datelist' => 'Select list',
'office_hours_datetime' => 'HTML5 time input',
],
'#default_value' => $this
->getSetting('element_type'),
];
// @todo D8 Align with DateTimeDatelistWidget.
$element['increment'] = [
'#type' => 'select',
'#title' => $this
->t('Time increments'),
'#default_value' => $settings['increment'],
'#options' => [
1 => $this
->t('1 minute'),
5 => $this
->t('5 minute'),
15 => $this
->t('15 minute'),
30 => $this
->t('30 minute'),
60 => $this
->t('60 minute'),
],
'#required' => FALSE,
'#description' => $this
->t('Restrict the input to fixed fractions of an hour.'),
];
$element['comment'] = [
'#type' => 'select',
'#title' => $this
->t('Allow a comment per time slot'),
'#required' => FALSE,
'#default_value' => $settings['comment'],
'#options' => [
0 => $this
->t('No comments allowed'),
1 => $this
->t('Allow comments (HTML tags possible)'),
2 => $this
->t('Allow translatable comments (no HTML)'),
],
];
$element['valhrs'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Validate hours'),
'#required' => FALSE,
'#default_value' => $settings['valhrs'],
'#description' => $this
->t('Assure that endhours are later then starthours.
Please note that this will work as long as both hours are set and
the opening hours are not through midnight.'),
];
$element['required_start'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Require Start time'),
'#default_value' => $settings['required_start'],
];
$element['required_end'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Require End time'),
'#default_value' => $settings['required_end'],
];
$element['limit_start'] = [
'#type' => 'select',
'#title' => $this
->t('Limit hours - from'),
'#description' => $this
->t('Restrict the hours available - select options will start from this hour.'),
'#default_value' => $settings['limit_start'],
'#options' => $hours,
];
$element['limit_end'] = [
'#type' => 'select',
'#title' => $this
->t('Limit hours - until'),
'#description' => $this
->t('Restrict the hours available - select options
will end at this hour. You may leave \'until\' time empty.
Use \'00:00\' for closing at midnight.'),
'#default_value' => $settings['limit_end'],
'#options' => $hours,
];
return $element;
}
/**
* {@inheritdoc}
*/
public static function generateSampleValue(FieldDefinitionInterface $field_definition) {
$values['day'] = mt_rand(0, 6);
$values['starthours'] = mt_rand(00, 23) * 100;
$values['endhours'] = mt_rand(00, 23) * 100;
$values['comment'] = mt_rand(0, 1) ? 'additional text' : '';
return $values;
}
/**
* {@inheritdoc}
*/
public function isEmpty() {
return OfficeHoursDatetime::isEmpty($this
->getValue());
}
/**
* {@inheritdoc}
*/
public function getConstraints() {
$constraints = [];
// @todo When adding parent::getConstraints(), only English is allowed...
// $constraints = parent::getConstraints();
$max_length = $this
->getSetting('max_length');
if ($max_length) {
$constraint_manager = \Drupal::typedDataManager()
->getValidationConstraintManager();
$constraints[] = $constraint_manager
->create('ComplexData', [
'value' => [
'Length' => [
'max' => $max_length,
'maxMessage' => $this
->t('%name: may not be longer than @max characters.', [
'%name' => $this
->getFieldDefinition()
->getLabel(),
'@max' => $max_length,
]),
],
],
]);
}
return $constraints;
}
/**
* Implements the #element_validate callback for storageSettingsForm().
*
* Verifies the office hours limits.
* "Please note that this will work as long as the opening hours are not through midnight."
* "You may leave 'until' time empty. Use '00:00' for closing at midnight."
*
* @param array $element
* @param \Drupal\Core\Form\FormStateInterface $form_state
*/
public static function validateOfficeHoursSettings(array $element, FormStateInterface &$form_state) {
if (!empty($element['limit_end']['#value']) && $element['limit_end']['#value'] < $element['limit_start']['#value']) {
$form_state
->setError($element['limit_start'], t('%start is later then %end.', [
'%start' => $element['limit_start']['#title'],
'%end' => $element['limit_end']['#title'],
]));
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FieldItemBase:: |
public static | function |
Calculates dependencies for field items. Overrides FieldItemInterface:: |
2 |
FieldItemBase:: |
public static | function |
Calculates dependencies for field items on the storage level. Overrides FieldItemInterface:: |
1 |
FieldItemBase:: |
public static | function |
Defines the field-level settings for this plugin. Overrides FieldItemInterface:: |
7 |
FieldItemBase:: |
public | function |
Defines custom delete behavior for field values. Overrides FieldItemInterface:: |
2 |
FieldItemBase:: |
public | function |
Defines custom revision delete behavior for field values. Overrides FieldItemInterface:: |
|
FieldItemBase:: |
public | function |
Returns a form for the field-level settings. Overrides FieldItemInterface:: |
7 |
FieldItemBase:: |
public static | function |
Returns a settings array in the field type's canonical representation. Overrides FieldItemInterface:: |
1 |
FieldItemBase:: |
public static | function |
Returns a settings array that can be stored as a configuration value. Overrides FieldItemInterface:: |
1 |
FieldItemBase:: |
public | function |
Gets the entity that field belongs to. Overrides FieldItemInterface:: |
|
FieldItemBase:: |
public | function |
Gets the field definition. Overrides FieldItemInterface:: |
|
FieldItemBase:: |
public | function |
Gets the langcode of the field values held in the object. Overrides FieldItemInterface:: |
|
FieldItemBase:: |
protected | function | Returns the value of a field setting. | |
FieldItemBase:: |
protected | function | Returns the array of field settings. | |
FieldItemBase:: |
public static | function |
Returns the name of the main property, if any. Overrides FieldItemInterface:: |
8 |
FieldItemBase:: |
public static | function |
Informs the plugin that a dependency of the field will be deleted. Overrides FieldItemInterface:: |
1 |
FieldItemBase:: |
public | function |
Defines custom post-save behavior for field values. Overrides FieldItemInterface:: |
2 |
FieldItemBase:: |
public | function |
Defines custom presave behavior for field values. Overrides FieldItemInterface:: |
7 |
FieldItemBase:: |
public | function |
Sets the data value. Overrides Map:: |
4 |
FieldItemBase:: |
public static | function |
Returns a settings array in the field type's canonical representation. Overrides FieldItemInterface:: |
2 |
FieldItemBase:: |
public static | function |
Returns a settings array that can be stored as a configuration value. Overrides FieldItemInterface:: |
2 |
FieldItemBase:: |
public | function |
Returns a renderable array for a single field item. Overrides FieldItemInterface:: |
|
FieldItemBase:: |
protected | function |
Different to the parent Map class, we avoid creating property objects as
far as possible in order to optimize performance. Thus we just update
$this->values if no property object has been created yet. Overrides Map:: |
|
FieldItemBase:: |
public | function |
Constructs a TypedData object given its definition and context. Overrides TypedData:: |
1 |
FieldItemBase:: |
public | function |
Magic method: Gets a property value. Overrides FieldItemInterface:: |
2 |
FieldItemBase:: |
public | function |
Magic method: Determines whether a property is set. Overrides FieldItemInterface:: |
|
FieldItemBase:: |
public | function |
Magic method: Sets a property value. Overrides FieldItemInterface:: |
1 |
FieldItemBase:: |
public | function |
Magic method: Unsets a property. Overrides FieldItemInterface:: |
|
Map:: |
protected | property |
The data definition. Overrides TypedData:: |
|
Map:: |
protected | property | The array of properties. | |
Map:: |
protected | property | An array of values for the contained properties. | |
Map:: |
public | function |
Applies the default value. Overrides TypedData:: |
4 |
Map:: |
public | function |
Gets a property object. Overrides ComplexDataInterface:: |
|
Map:: |
public | function | ||
Map:: |
public | function |
Gets an array of property objects. Overrides ComplexDataInterface:: |
|
Map:: |
public | function |
Returns a string representation of the data. Overrides TypedData:: |
|
Map:: |
public | function |
Gets the data value. Overrides TypedData:: |
1 |
Map:: |
public | function |
Overrides TraversableTypedDataInterface:: |
4 |
Map:: |
public | function |
Sets a property value. Overrides ComplexDataInterface:: |
|
Map:: |
public | function |
Returns an array of all property values. Overrides ComplexDataInterface:: |
1 |
Map:: |
public | function | Magic method: Implements a deep clone. | |
OfficeHoursItem:: |
public static | function |
Defines the storage-level settings for this plugin. Overrides FieldItemBase:: |
|
OfficeHoursItem:: |
public static | function |
Generates placeholder field values. Overrides FieldItemBase:: |
|
OfficeHoursItem:: |
public | function |
Gets a list of validation constraints. Overrides TypedData:: |
|
OfficeHoursItem:: |
public | function |
Determines whether the data structure is empty. Overrides Map:: |
|
OfficeHoursItem:: |
public static | function |
Defines field item properties. Overrides FieldItemInterface:: |
|
OfficeHoursItem:: |
public static | function |
Returns the schema for the field. Overrides FieldItemInterface:: |
|
OfficeHoursItem:: |
public | function |
Returns a form for the storage-level settings. Overrides FieldItemBase:: |
|
OfficeHoursItem:: |
public static | function | Implements the #element_validate callback for storageSettingsForm(). | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TypedData:: |
protected | property | The property name. | |
TypedData:: |
protected | property | The parent typed data object. | |
TypedData:: |
public static | function |
Constructs a TypedData object given its definition and context. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Gets the data definition. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Returns the name of a property or item. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Returns the parent data structure; i.e. either complex data or a list. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
|
TypedData:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
TypedData:: |
public | function |
Returns the property path of the data. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Returns the root of the typed data tree. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Sets the context of a property or item via a context aware parent. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Validates the currently set data value. Overrides TypedDataInterface:: |
|
TypedDataTrait:: |
protected | property | The typed data manager used for creating the data types. | |
TypedDataTrait:: |
public | function | Gets the typed data manager. | 2 |
TypedDataTrait:: |
public | function | Sets the typed data manager. | 2 |