Пример #1
0
 /**
  * Create a new instance.
  *
  * @param string $domain (optional) The Google Apps-hosted domain to use
  *          when constructing query URIs.
  * @param string $groupId (optional) Value for the groupId property.
  * @param string $startGroupName (optional) Value for the
  *          startGroupName property.
  */
 public function __construct($domain = null, $groupId = null,
         $startGroupId = null)
 {
     parent::__construct($domain);
     $this->setGroupId($groupId);
     $this->setStartGroupId($startGroupId);
 }
Пример #2
0
 /**
  * Create Gdata_Books_VolumeQuery object
  *
  * @param string|null $url If non-null, pre-initializes the instance to
  *        use a given URL.
  */
 public function __construct($url = null)
 {
     parent::__construct($url);
 }
Пример #3
0
 /**
  * Constructs a new instance of a Zend_Gdata_Docs_Query object.
  */
 public function __construct()
 {
     parent::__construct();
 }
Пример #4
0
 /**
  * Create a new instance.
  *
  * @param string $domain (optional) The Google Apps-hosted domain to use
  *          when constructing query URIs.
  */
 public function __construct($domain = null)
 {
     parent::__construct();
     $this->_domain = $domain;
 }