custom_field-1.0.x-dev/src/Plugin/views/argument/CustomFieldDayDate.php
src/Plugin/views/argument/CustomFieldDayDate.php
<?php
namespace Drupal\custom_field\Plugin\views\argument;
use Drupal\views\Attribute\ViewsArgument;
/**
* Argument handler for a day.
*/
#[ViewsArgument(
id: 'custom_field_datetime_day',
)]
class CustomFieldDayDate extends CustomFieldDate {
/**
* {@inheritdoc}
*/
protected $argFormat = 'd';
}
