CreatedYearMonth.php in Views (for Drupal 7) 8.3
Definition of Views\node\Plugin\views\argument\CreatedYearMonth.
Namespace
Views\node\Plugin\views\argumentFile
lib/Views/node/Plugin/views/argument/CreatedYearMonth.phpView source
<?php
/**
* @file
* Definition of Views\node\Plugin\views\argument\CreatedYearMonth.
*/
namespace Views\node\Plugin\views\argument;
use Drupal\Core\Annotation\Plugin;
use Drupal\views\Plugin\views\argument\Date;
/**
* Argument handler for a year plus month (CCYYMM)
*
* @Plugin(
* id = "node_created_year_month",
* format = "F Y",
* arg_format = "Ym",
* module = "node"
* )
*/
class CreatedYearMonth extends Date {
/**
* Overrides Drupal\views\Plugin\views\argument\Formula::get_formula().
*/
function get_formula() {
$this->formula = $this
->getSQLFormat($this->definition['arg_format']);
return parent::get_formula();
}
/**
* Provide a link to the next level of the view
*/
function summary_name($data) {
$created = $data->{$this->name_alias};
return format_date(strtotime($created . "15" . " 00:00:00 UTC"), 'custom', $this->definition['format'], 'UTC');
}
/**
* Provide a link to the next level of the view
*/
function title() {
return format_date(strtotime($this->argument . "15" . " 00:00:00 UTC"), 'custom', $this->definition['format'], 'UTC');
}
}
Classes
Name | Description |
---|---|
CreatedYearMonth | Argument handler for a year plus month (CCYYMM) |