Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • project/date_recur
  • issue/date_recur-3173876
  • issue/date_recur-3193288
  • issue/date_recur-3167866
  • issue/date_recur-3193440
  • issue/date_recur-3200528
  • issue/date_recur-3030603
  • issue/date_recur-3201310
  • issue/date_recur-3166458
  • issue/date_recur-3240193
  • issue/date_recur-3158733
  • issue/date_recur-3220728
  • issue/date_recur-3217384
  • issue/date_recur-3250423
  • issue/date_recur-3050030
  • issue/date_recur-3251503
  • issue/date_recur-3175227
  • issue/date_recur-3153976
  • issue/date_recur-3074723
  • issue/date_recur-3205682
  • issue/date_recur-3262658
  • issue/date_recur-3303231
  • issue/date_recur-3313233
  • issue/date_recur-3328422
  • issue/date_recur-3312547
  • issue/date_recur-3400305
  • issue/date_recur-3374535
  • issue/date_recur-3381573
  • issue/date_recur-3382482
  • issue/date_recur-3402699
  • issue/date_recur-3420827
  • issue/date_recur-3425292
  • issue/date_recur-3010184
  • issue/date_recur-3455189
  • issue/date_recur-3485912
  • issue/date_recur-3498936
  • issue/date_recur-3501607
  • issue/date_recur-3505857
  • issue/date_recur-3486727
39 results
Show changes
Showing
with 34 additions and 34 deletions
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Field;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Field\FieldFormatter;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Field\FieldType;
......@@ -203,7 +203,7 @@ class DateRecurFieldItemList extends DateRangeFieldItemList {
if ($hasDefaultDateTimeZone && ($hasDefaultStartDateType || $hasDefaultEndDateType)) {
$storageFormat = $definition->getSetting('datetime_type') == DateRecurItem::DATETIME_TYPE_DATE ? DateRecurItem::DATE_STORAGE_FORMAT : DateRecurItem::DATETIME_STORAGE_FORMAT;
// Instruct 'value' and 'end_value' to convert from the localised time
// Instruct 'value' and 'end_value' to convert from the localized time
// zone to UTC.
$formatSettings = ['timezone' => DateTimeItemInterface::STORAGE_TIMEZONE];
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Field\FieldType;
......@@ -321,8 +321,8 @@ class DateRecurItem extends DateRangeItem {
// Original parts container.
$values = NestedArray::getValue($form_state->getValues(), $element['#parents']);
// Remove the original parts values so they dont get saved in same structure
// as the form.
// Remove the original parts values so they don't get saved in same
// structure as the form.
NestedArray::unsetValue($form_state->getValues(), $element['#parents']);
$parts = [];
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Field\FieldWidget;
......@@ -41,7 +41,7 @@ class DateRecurBasicWidget extends DateRangeDefaultWidget {
$element['#theme'] = 'date_recur_basic_widget';
$element['#element_validate'][] = [$this, 'validateRrule'];
// ::createDefaultValue isnt given enough context about the field item, so
// ::createDefaultValue isn't given enough context about the field item, so
// override its functions here.
$element['value']['#default_value'] = $element['end_value']['#default_value'] = NULL;
$element['value']['#date_timezone'] = $element['end_value']['#date_timezone'] = NULL;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Validation\Constraint;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Validation\Constraint;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Validation\Constraint;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Validation\Constraint;
......@@ -64,7 +64,7 @@ class DateRecurRulePartConstraintValidator extends ConstraintValidator {
$frequencyLabel = $frequencyLabels[$frequency] ?? $frequency;
$this->context->addViolation($constraint->disallowedFrequency, ['%frequency' => $frequencyLabel]);
// If the frequency isn't supported then dont continue validating its
// If the frequency isn't supported then don't continue validating its
// parts as it creates redundant violations.
continue;
}
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Validation\Constraint;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\Validation\Constraint;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\views\field;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Plugin\views\filter;
......@@ -179,7 +179,7 @@ class DateRecurFilter extends FilterPluginBase {
'#default_value' => $this->options['value_granularity'],
];
$minDefault = isset($this->options['value_min']) ? DrupalDateTime::createFromFormat(\DATE_ISO8601, $this->options['value_min']) : NULL;
$minDefault = isset($this->options['value_min']) ? DrupalDateTime::createFromFormat('Y-m-d\TH:i:sO', $this->options['value_min']) : NULL;
$form['value_minimum'] = [
'#title' => $this->t('Minimum date'),
'#description' => $this->t('Minimum date to use. If a larger granularity than <em>seconds</em> is chosen, this date will be rounded off. For example if this date and time is in September 2018 but the granularity is <em>year</em>, then the minimum year would be 2018.'),
......@@ -187,7 +187,7 @@ class DateRecurFilter extends FilterPluginBase {
'#default_value' => $minDefault,
];
$maxDefault = isset($this->options['value_max']) ? DrupalDateTime::createFromFormat(\DATE_ISO8601, $this->options['value_max']) : NULL;
$maxDefault = isset($this->options['value_max']) ? DrupalDateTime::createFromFormat('Y-m-d\TH:i:sO', $this->options['value_max']) : NULL;
$form['value_maximum'] = [
'#title' => $this->t('Maximum date'),
'#description' => $this->t('Maximum date to use. If a larger granularity than <em>seconds</em> is chosen, this date will be rounded off. For example if this date and time is in September 2018 but the granularity is <em>year</em>, then the maximum year would be 2018.'),
......@@ -208,12 +208,12 @@ class DateRecurFilter extends FilterPluginBase {
/** @var \Drupal\Core\Datetime\DrupalDateTime $min|null */
$min = $form_state->getValue(['options', 'value_minimum']);
$min?->setTimezone($utc);
$this->options['value_min'] = $min?->format(\DATE_ISO8601);
$this->options['value_min'] = $min?->format('Y-m-d\TH:i:sO');
/** @var \Drupal\Core\Datetime\DrupalDateTime $max|null */
$max = $form_state->getValue(['options', 'value_maximum']);
$max?->setTimezone($utc);
$this->options['value_max'] = $max?->format(\DATE_ISO8601);
$this->options['value_max'] = $max?->format('Y-m-d\TH:i:sO');
}
/**
......@@ -237,10 +237,10 @@ class DateRecurFilter extends FilterPluginBase {
/** @var string|null $optionValueMin */
$optionValueMin = $pluginOptions['value_min'];
$valueMin = isset($optionValueMin) ? \DateTime::createFromFormat(\DATE_ISO8601, $optionValueMin) : NULL;
$valueMin = isset($optionValueMin) ? \DateTime::createFromFormat('Y-m-d\TH:i:sO', $optionValueMin) : NULL;
/** @var string|null $optionValueMax */
$optionValueMax = $pluginOptions['value_max'];
$valueMax = isset($optionValueMax) ? \DateTime::createFromFormat(\DATE_ISO8601, $optionValueMax) : NULL;
$valueMax = isset($optionValueMax) ? \DateTime::createFromFormat('Y-m-d\TH:i:sO', $optionValueMax) : NULL;
$granularityFormatsMap = DateRecurGranularityMap::GRANULARITY_DATE_FORMATS;
$format = $granularityFormatsMap[$granularity];
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Rl;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur\Rl;
......@@ -26,7 +26,7 @@ class RlHelper implements DateRecurHelperInterface {
protected RSet $set;
/**
* The time zone used to normalise other date objects.
* The time zone used to normalize other date objects.
*
* @var \DateTimeZone
*/
......@@ -176,7 +176,7 @@ class RlHelper implements DateRecurHelperInterface {
/**
* {@inheritdoc}
*/
public function getOccurrences(\DateTimeInterface $rangeStart = NULL, ?\DateTimeInterface $rangeEnd = NULL, ?int $limit = NULL): array {
public function getOccurrences(?\DateTimeInterface $rangeStart = NULL, ?\DateTimeInterface $rangeEnd = NULL, ?int $limit = NULL): array {
if ($this->isInfinite() && !isset($rangeEnd) && !isset($limit)) {
throw new \InvalidArgumentException('An infinite rule must have a date or count limit.');
}
......@@ -207,7 +207,7 @@ class RlHelper implements DateRecurHelperInterface {
*/
public function getExcluded(): array {
// Implementation normally returns the same time zone as the EXDATE from the
// rule string, normalise it here.
// rule string, normalize it here.
return array_map(
fn (\DateTime $date): \DateTime => $date->setTimezone($this->timeZone),
$this->set->getExDates(),
......
......@@ -24,7 +24,7 @@
{% endif %}
{% if interpretation -%}
<div class="date-recur-interpretaton">{{ interpretation }}</div>
<div class="date-recur-interpretation">{{ interpretation }}</div>
{% endif %}
{% if is_recurring and occurrences|length > 0 %}
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
/**
* @file
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur_entity_test\Entity;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur_entity_test\Entity;
......
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace Drupal\date_recur_entity_test\Entity;
......