You are here

YearMonthDate.php in Drupal 8

File

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

namespace Drupal\views\Plugin\views\argument;


/**
 * Argument handler for a year plus month (CCYYMM)
 *
 * @ViewsArgument("date_year_month")
 */
class YearMonthDate extends Date {

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

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

  /**
   * {@inheritdoc}
   */
  public function summaryName($data) {
    $created = $data->{$this->name_alias};
    return $this->dateFormatter
      ->format(strtotime($created . "15" . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
  }

  /**
   * {@inheritdoc}
   */
  public function title() {
    return $this->dateFormatter
      ->format(strtotime($this->argument . "15" . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
  }

}

Classes

Namesort descending Description
YearMonthDate Argument handler for a year plus month (CCYYMM)