You are here

public function gapiAccountEntry::__toString in Google Analytics Statistics 7.2

Same name and namespace in other branches
  1. 7 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 437

Class

gapiAccountEntry
Storage for individual gapi account entries

Code

public function __toString() {
  return isset($this->properties['name']) ? $this->properties['name'] : false;
}