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