You are here

YearDate.php in Zircon Profile 8.0

File

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

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