function views_handler_argument_node_created_fulldate::title
Provide a link to the next level of the view.
Overrides views_handler_argument::title
File
-
modules/
node/ views_handler_argument_dates_various.inc, line 34
Class
- views_handler_argument_node_created_fulldate
- Argument handler for a full date (CCYYMMDD).
Code
public function title() {
$timestamp = strtotime($this->argument . " 00:00:00 UTC");
if ($timestamp !== FALSE) {
return format_date($timestamp, 'custom', $this->format, 'UTC');
}
}