function views_handler_argument_node_created_year_month::summary_name
Provide a link to the next level of the view.
Parameters
object $data: The query results for the row.
Return value
string The summary.
Overrides views_handler_argument::summary_name
File
-
modules/
node/ views_handler_argument_dates_various.inc, line 77
Class
- views_handler_argument_node_created_year_month
- Argument handler for a year plus month (CCYYMM).
Code
public function summary_name($data) {
$created = $data->{$this->name_alias};
return format_date(strtotime($created . "15" . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
}