YearMonthDate.php

Same filename in this branch
  1. 8.9.x core/modules/datetime/src/Plugin/views/argument/YearMonthDate.php
Same filename and directory in other branches
  1. 9 core/modules/views/src/Plugin/views/argument/YearMonthDate.php
  2. 9 core/modules/datetime/src/Plugin/views/argument/YearMonthDate.php
  3. 10 core/modules/views/src/Plugin/views/argument/YearMonthDate.php
  4. 10 core/modules/datetime/src/Plugin/views/argument/YearMonthDate.php
  5. 11.x core/modules/views/src/Plugin/views/argument/YearMonthDate.php
  6. 11.x core/modules/datetime/src/Plugin/views/argument/YearMonthDate.php

Namespace

Drupal\views\Plugin\views\argument

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

Title Deprecated Summary
YearMonthDate Argument handler for a year plus month (CCYYMM)

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.