You are here

function date_api_argument_handler::admin_summary in Date 6

Same name and namespace in other branches
  1. 6.2 includes/date_api_argument_handler.inc \date_api_argument_handler::admin_summary()

File

./date_api.views.inc, line 189
Defines date-related Views data and plugins:

Class

date_api_argument_handler
Date API argument handler.

Code

function admin_summary() {
  if (!empty($this->options['date_fields'])) {
    return ' (' . implode(', ', $this->options['date_fields']) . ')';
  }
  else {
    return parent::admin_summary();
  }
}