You are here

function google_analytics_reports_handler_argument::init in Google Analytics Reports 7.3

Init the handler with necessary data.

Parameters

view $view: The $view object this handler is attached to.

array $options: The item from the database; the actual contents of this will vary based upon the type of handler.

Overrides views_handler_argument::init

File

handlers/google_analytics_reports_handler_argument.inc, line 24
Definition of google_analytics_reports_handler_argument.

Class

google_analytics_reports_handler_argument
Provides base argument functionality for Google Analytics fields.

Code

function init(&$view, &$options) {
  parent::init($view, $options);
  $this->is_custom = google_analytics_reports_is_custom($this->real_field);
}