You are here

MonthDate.php in Drupal 9

File

core/modules/datetime/src/Plugin/views/argument/MonthDate.php
View source
<?php

namespace Drupal\datetime\Plugin\views\argument;


/**
 * Argument handler for a month.
 *
 * @ViewsArgument("datetime_month")
 */
class MonthDate extends Date {

  /**
   * {@inheritdoc}
   */
  protected $argFormat = 'm';

}

Classes

Namesort descending Description
MonthDate Argument handler for a month.