Zend Framework  1.12
Public Member Functions | Protected Attributes | List of all members
Zend_Gdata_Gapps_Query Class Reference

Public Member Functions

 __construct ($domain=null)
 Create a new instance.
 
 setDomain ($value)
 Set domain for this service instance.
 
 getDomain ()
 Get domain for this service instance.
 
 getBaseUrl ($domain=null)
 Returns the base URL used to access the Google Apps service, based on the current domain.
 
- Public Member Functions inherited from Zend_Gdata_Query
 __construct ($url=null)
 Create Gdata_Query object.
 
 getQueryString ()
 
 resetParameters ()
 
 getQueryUrl ()
 
 setParam ($name, $value)
 
 getParam ($name)
 
 setAlt ($value)
 
 setMaxResults ($value)
 
 setQuery ($value)
 
 setStartIndex ($value)
 
 setUpdatedMax ($value)
 
 setUpdatedMin ($value)
 
 setPublishedMax ($value)
 
 setPublishedMin ($value)
 
 setAuthor ($value)
 
 getAlt ()
 
 getMaxResults ()
 
 getQuery ()
 
 getStartIndex ()
 
 getUpdatedMax ()
 
 getUpdatedMin ()
 
 getPublishedMax ()
 
 getPublishedMin ()
 
 getAuthor ()
 
 setCategory ($value)
 
 getCategory ()
 
 __get ($name)
 
 __set ($name, $val)
 

Protected Attributes

 $_domain = null
 
- Protected Attributes inherited from Zend_Gdata_Query
 $_params = array()
 
 $_defaultFeedUri = null
 
 $_url = null
 
 $_category = null
 

Constructor & Destructor Documentation

__construct (   $domain = null)

Create a new instance.

Parameters
string$domain(optional) The Google Apps-hosted domain to use when constructing query URIs.

Member Function Documentation

getBaseUrl (   $domain = null)

Returns the base URL used to access the Google Apps service, based on the current domain.

The current domain can be temporarily overridden by providing a fully qualified domain as $domain.

See Also
setDomain
Parameters
string$domain(optional) A fully-qualified domain to use instead of the default domain for this service instance.
getDomain ( )

Get domain for this service instance.

This should be a fully qualified domain, such as 'foo.example.com'. If no domain is set, null will be returned.

See Also
setDomain
Returns
string The domain to be used for this session, or null if not set.
setDomain (   $value)

Set domain for this service instance.

This should be a fully qualified domain, such as 'foo.example.com'.

This value is used when calculating URLs for retrieving and posting entries. If no value is specified, a URL will have to be manually constructed prior to using any methods which interact with the Google Apps provisioning service.

Parameters
string$valueThe domain to be used for this session.

Member Data Documentation

$_domain = null
protected