public function gapiAccountEntry::__toString in Google Analytics Statistics 7.x
Same name and namespace in other branches
- 7.2 includes/gapi.class.php \gapiAccountEntry::__toString()
- 7 includes/gapi.class.php \gapiAccountEntry::__toString()
toString function to return the name of the account
Return value
String
File
- inc/
gapi.class.php, line 680
Class
- gapiAccountEntry
- Class gapiAccountEntry
Code
public function __toString() {
if (isset($this->properties['title'])) {
return $this->properties['title'];
}
else {
return;
}
}