You are here

YearDate.php in Zircon Profile 8

File

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

/**
 * @file
 * Contains \Drupal\views\Plugin\views\argument\YearDate.
 */
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)