You are here

YearDate.php in Drupal 8

File

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

namespace Drupal\datetime\Plugin\views\argument;


/**
 * Argument handler for a year.
 *
 * @ViewsArgument("datetime_year")
 */
class YearDate extends Date {

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

}

Classes

Namesort descending Description
YearDate Argument handler for a year.