You are here

YearDate.php in Drupal 8

File

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

namespace Drupal\views\Plugin\views\argument;


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

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

}

Classes

Namesort descending Description
YearDate Argument handler for a year (CCYY)