You are here

public function gapiReportEntry::__call in Google Analytics Statistics 7.2

Same name and namespace in other branches
  1. 7 includes/gapi.class.php \gapiReportEntry::__call()
  2. 7.x inc/gapi.class.php \gapiReportEntry::__call()

Call method to find a matching metric or dimension to return

Parameters

String $name name of function called:

Array $parameters:

Return value

String

Throws

Exception if not a valid metric or dimensions, or not a 'get' function

File

includes/gapi.class.php, line 538

Class

gapiReportEntry
Storage for individual gapi report entries

Code

public function __call($name, $parameters) {
  if (!preg_match('/^get/', $name)) {
    throw new Exception('No such function "' . $name . '"');
  }
  $name = preg_replace('/^get/', '', $name);
  $metric_key = gapi::ArrayKeyExists($name, $this->metrics);
  if ($metric_key) {
    return $this->metrics[$metric_key];
  }
  $dimension_key = gapi::ArrayKeyExists($name, $this->dimensions);
  if ($dimension_key) {
    return $this->dimensions[$dimension_key];
  }
  throw new Exception('No valid metric or dimesion called "' . $name . '"');
}