36bcd04f046bf20848d4810cc768cff27607946d
[yaffs-website] / src / Plugin / views / argument / YearMonthDate.php
1 <?php
2
3 namespace Drupal\datetime\Plugin\views\argument;
4
5 /**
6  * Argument handler for a year plus month (CCYYMM).
7  *
8  * @ViewsArgument("datetime_year_month")
9  */
10 class YearMonthDate extends Date {
11
12   /**
13    * {@inheritdoc}
14    */
15   protected $argFormat = 'Ym';
16
17 }