You are here

public function gapiAccountEntry::__toString in Google Analytics Statistics 7

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

toString function to return the name of the account

Return value

String

File

includes/gapi.class.php, line 693

Class

gapiAccountEntry
Class gapiAccountEntry

Code

public function __toString() {
  if (isset($this->properties['title'])) {
    return $this->properties['title'];
  }
  else {
    return;
  }
}