Source for file plus.php
Documentation is available at plus.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved
* @license GNU General Public License version 2 or later; see LICENSE
* Google+ data class for the Joomla Platform.
* @package Joomla.Platform
* @var JGoogleDataPlusPeople Google+ API object for people.
* @var JGoogleDataPlusActivities Google+ API object for people.
* @var JGoogleDataPlusComments Google+ API object for people.
* @param JRegistry $options Google options object
* @param JGoogleAuth $auth Google data http client object
public function __construct(JRegistry $options =
null, JGoogleAuth $auth =
null)
// Setup the default API url if not already set.
$options->def('api.url', 'https://www.googleapis.com/plus/v1/');
if (isset
($this->auth) &&
!$this->auth->getOption('scope'))
$this->auth->setOption('scope', 'https://www.googleapis.com/auth/plus.me');
* Magic method to lazily create API objects
* @param string $name Name of property to retrieve
* @return JGoogleDataPlus Google+ API object (people, activities, comments).
public function __get($name)
Documentation generated on Tue, 19 Nov 2013 15:10:53 +0100 by phpDocumentor 1.4.3