Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Loader.php Zend/Uri.php Zend/Http/Client/Adapter/Interface.php Zend/Http/Response.php Zend/Http/Response/Stream.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php Zend_Http_Client \Zend_Http_Client Zend_Http_Client is an implementation of an HTTP client in PHP. <p>The client supports basic features like sending different HTTP requests and handling redirections, as well as more advanced features like proxy settings, HTTP authentication and cookie persistence (using a Zend_Http_CookieJar object)</p> \Zend_Http_Client_Exception GET GET 'GET' HTTP request methods POST POST 'POST' PUT PUT 'PUT' HEAD HEAD 'HEAD' DELETE DELETE 'DELETE' TRACE TRACE 'TRACE' OPTIONS OPTIONS 'OPTIONS' CONNECT CONNECT 'CONNECT' MERGE MERGE 'MERGE' AUTH_BASIC AUTH_BASIC 'basic' Supported HTTP Authentication methods HTTP_1 HTTP_1 '1.1' HTTP protocol versions HTTP_0 HTTP_0 '1.0' CONTENT_TYPE CONTENT_TYPE 'Content-Type' Content attributes CONTENT_LENGTH CONTENT_LENGTH 'Content-Length' ENC_URLENCODED ENC_URLENCODED 'application/x-www-form-urlencoded' POST data encoding methods ENC_FORMDATA ENC_FORMDATA 'multipart/form-data' VTYPE_SCALAR VTYPE_SCALAR 'SCALAR' Value types for Body key/value pairs VTYPE_FILE VTYPE_FILE 'FILE' $config array('maxredirects' => 5, 'strictredirects' => false, 'useragent' => 'Zend_Http_Client', 'timeout' => 10, 'adapter' => 'Zend_Http_Client_Adapter_Socket', 'httpversion' => self::HTTP_1, 'keepalive' => false, 'storeresponse' => true, 'strict' => true, 'output_stream' => false, 'encodecookies' => true, 'rfc3986_strict' => false) Configuration array, set using the constructor or using ::setConfig() array $adapter null The adapter used to perform the actual connection to the server \Zend_Http_Client_Adapter_Interface $uri null Request URI \Zend_Uri_Http $headers array() Associative array of request headers array $method self::GET HTTP request method string $paramsGet array() Associative array of GET parameters array $paramsPost array() Associative array of POST parameters array $enctype null Request body content type (for POST requests) string $raw_post_data null The raw post data to send. <p>Could be set by setRawData($data, $enctype).</p> string $auth HTTP Authentication settings <p>Expected to be an associative array with this structure: $this->auth = array('user' => 'username', 'password' => 'password', 'type' => 'basic') Where 'type' should be one of the supported authentication types (see the AUTH_* constants), for example 'basic' or 'digest'.</p> <p>If null, no authentication will be used.</p> array null $files array() File upload arrays (used in POST requests) <p>An associative array, where each element is of the format: 'name' => array('filename.txt', 'text/plain', 'This is the actual file contents')</p> array $body_field_order array() Ordered list of keys from key/value pair data to include in body <p>An associative array, where each element is of the format: '<field name>' => VTYPE_SCALAR | VTYPE_FILE</p> array $cookiejar null The client's cookie jar \Zend_Http_CookieJar $last_request null The last HTTP request sent by the client, as string string $last_response null The last HTTP response received by the client \Zend_Http_Response $redirectCounter 0 Redirection counter int $_unmaskStatus false Status for unmasking GET array params boolean $_queryBracketsEscaped true Status if the http_build_query function escapes brackets boolean $_fileInfoDb null Fileinfo magic database resource <p>This variable is populated the first time _detectFileMimeType is called and is then reused on every call to this method</p> resource __construct __construct Constructor method. <p>Will create a new HTTP client. Accepts the target URL and optionally configuration array.</p> \Zend_Uri_Http string array $uri null $config null setUri setUri Set the URI for the next request \Zend_Uri_Http string \Zend_Http_Client \Zend_Http_Client_Exception $uri getUri getUri Get the URI for the next request boolean \Zend_Uri_Http string $as_string false setConfig setConfig Set configuration parameters for this HTTP client \Zend_Config \Zend_Http_Client \Zend_Http_Client_Exception $config array() setMethod setMethod Set the next request's method <p>Validated the passed method and sets it. If we have files set for POST requests, and the new method is not POST, the files are silently dropped.</p> string \Zend_Http_Client \Zend_Http_Client_Exception $method self::GET setHeaders setHeaders Set one or more request headers <p>This function can be used in several ways to set the client's request headers: 1. By providing two parameters: $name as the header to set (e.g. 'Host') and $value as it's value (e.g. 'www.example.com'). 2. By providing a single header string as the only parameter e.g. 'Host: www.example.com' 3. By providing an array of headers as the first parameter e.g. array('host' => 'www.example.com', 'x-foo: bar'). In This case the function will call itself recursively for each array item.</p> string array mixed \Zend_Http_Client \Zend_Http_Client_Exception $name $value null getHeader getHeader Get the value of a specific header <p>Note that if the header has more than one value, an array will be returned.</p> string string array null $key setParameterGet setParameterGet Set a GET parameter for the request. <p>Wrapper around _setParameter</p> string array string \Zend_Http_Client $name $value null setParameterPost setParameterPost Set a POST parameter for the request. <p>Wrapper around _setParameter</p> string array string \Zend_Http_Client $name $value null _setParameter _setParameter Set a GET or POST parameter - used by SetParameterGet and SetParameterPost string string string null $type $name $value getRedirectionsCount getRedirectionsCount Get the number of redirections done on the last request int setAuth setAuth Set HTTP authentication parameters <p>$type should be one of the supported types - see the self::AUTH_* constants.</p> <p>To enable authentication:</p> <pre><code>$this->setAuth('shahar', 'secret', Zend_Http_Client::AUTH_BASIC); </code></pre> <p>To disable authentication:</p> <pre><code>$this->setAuth(false); </code></pre> string false string string \Zend_Http_Client \Zend_Http_Client_Exception $user $password '' $type self::AUTH_BASIC setCookieJar setCookieJar Set the HTTP client's cookie jar. <p>A cookie jar is an object that holds and maintains cookies across HTTP requests and responses.</p> \Zend_Http_CookieJar boolean \Zend_Http_Client \Zend_Http_Client_Exception $cookiejar true getCookieJar getCookieJar Return the current cookie jar or null if none. \Zend_Http_CookieJar null setCookie setCookie Add a cookie to the request. <p>If the client has no Cookie Jar, the cookies will be added directly to the headers array as "Cookie" headers.</p> \Zend_Http_Cookie string string null \Zend_Http_Client \Zend_Http_Client_Exception $cookie $value null setFileUpload setFileUpload Set a file to upload (using a POST request) <p>Can be used in two ways:</p> <ol> <li>$data is null (default): $filename is treated as the name if a local file which will be read and sent. Will try to guess the content type using mime_content_type().</li> <li>$data is set - $filename is sent as the file name, but $data is sent as the file contents and no file is read from the file system. In this case, you need to manually set the Content-Type ($ctype) or it will default to application/octet-stream.</li> </ol> string string string string \Zend_Http_Client \Zend_Http_Client_Exception $filename $formname $data null $ctype null setEncType setEncType Set the encoding type for POST data string \Zend_Http_Client $enctype self::ENC_URLENCODED setRawData setRawData Set the raw (already encoded) POST data. <p>This function is here for two reasons: 1. For advanced user who would like to set their own data, already encoded 2. For backwards compatibilty: If someone uses the old post($data) method. this method will be used to set the encoded data.</p> <p>$data can also be stream (such as file) from which the data will be read.</p> string resource string \Zend_Http_Client $data $enctype null setUnmaskStatus setUnmaskStatus Set the unmask feature for GET parameters as array <p>Example: foo%5B0%5D=a&amp;foo%5B1%5D=b becomes foo=a&amp;foo=b</p> <p>This is usefull for some services</p> boolean \Zend_Http_Client $status true getUnmaskStatus getUnmaskStatus Returns the currently configured unmask status boolean resetParameters resetParameters Clear all GET and POST parameters <p>Should be used to reset the request parameters if the client is used for several concurrent requests.</p> <p>clearAll parameter controls if we clean just parameters or also headers and last_*</p> bool \Zend_Http_Client $clearAll false getLastRequest getLastRequest Get the last HTTP request as string string getLastResponse getLastResponse Get the last HTTP response received by this client <p>If $config['storeresponse'] is set to false, or no response was stored yet, will return null</p> \Zend_Http_Response setAdapter setAdapter Load the connection adapter <p>While this method is not called more than one for a client, it is seperated from ->request() to preserve logic and readability</p> \Zend_Http_Client_Adapter_Interface string null \Zend_Http_Client_Exception $adapter getAdapter getAdapter Load the connection adapter \Zend_Http_Client_Adapter_Interface setStream setStream Set streaming for received data string boolean \Zend_Http_Client $streamfile true getStream getStream Get status of streaming for received data boolean string _openTempStream _openTempStream Create temporary stream resource request request Send the HTTP request and return an HTTP response object string \Zend_Http_Response \Zend_Http_Client_Exception $method null _prepareHeaders _prepareHeaders Prepare the request headers array _prepareBody _prepareBody Prepare the request body (for POST and PUT requests) string \Zend_Http_Client_Exception _getParametersRecursive _getParametersRecursive Helper method that gets a possibly multi-level parameters array (get or post) and flattens it. <p>The method returns an array of (key, value) pairs (because keys are not necessarily unique. If one of the parameters in as array, it will also add a [] suffix to the key.</p> <p>This method is deprecated since Zend Framework 1.9 in favour of self::_flattenParametersArray() and will be dropped in 2.0</p> array bool array $parray $urlencode false _detectFileMimeType _detectFileMimeType Attempt to detect the MIME type of a file using available extensions <p>This method will try to detect the MIME type of a file. If the fileinfo extension is available, it will be used. If not, the mime_magic extension which is deprected but is still available in many PHP setups will be tried.</p> <p>If neither extension is available, the default application/octet-stream MIME type will be returned</p> string string $file encodeFormData encodeFormData Encode data to a multipart/form-data part suitable for a POST request. string string mixed string array string $boundary $name $value $filename null $headers array() encodeAuthHeader encodeAuthHeader Create a HTTP authentication "Authorization:" header according to the specified user, password and authentication method. string string string string \Zend_Http_Client_Exception $user $password $type self::AUTH_BASIC _flattenParametersArray _flattenParametersArray Convert an array of parameters into a flat array of (key, value) pairs <p>Will flatten a potentially multi-dimentional array of parameters (such as POST parameters) into a flat array of (key, value) paris. In case of multi-dimentional arrays, square brackets ([]) will be added to the key to indicate an array.</p> array string array $parray $prefix null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Http/Exception.php Zend/Http/Exception.php Zend/Http/Exception.php Zend/Http/Exception.php Zend/Http/Exception.php Zend/Http/Exception.php Zend_Http_Response \Zend_Http_Response Zend_Http_Response represents an HTTP 1.0 / 1.1 response message. <p>It includes easy access to all the response's different elemts, as well as some convenience methods for parsing and validating HTTP responses.</p> $messages array(100 => 'Continue', 101 => 'Switching Protocols', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative Information', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content', 300 => 'Multiple Choices', 301 => 'Moved Permanently', 302 => 'Found', 303 => 'See Other', 304 => 'Not Modified', 305 => 'Use Proxy', 307 => 'Temporary Redirect', 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required', 403 => 'Forbidden', 404 => 'Not Found', 405 => 'Method Not Allowed', 406 => 'Not Acceptable', 407 => 'Proxy Authentication Required', 408 => 'Request Timeout', 409 => 'Conflict', 410 => 'Gone', 411 => 'Length Required', 412 => 'Precondition Failed', 413 => 'Request Entity Too Large', 414 => 'Request-URI Too Long', 415 => 'Unsupported Media Type', 416 => 'Requested Range Not Satisfiable', 417 => 'Expectation Failed', 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway', 503 => 'Service Unavailable', 504 => 'Gateway Timeout', 505 => 'HTTP Version Not Supported', 509 => 'Bandwidth Limit Exceeded') List of all known HTTP response codes - used by responseCodeAsText() to translate numeric codes to messages. array $version The HTTP version (1.0, 1.1) string $code The HTTP response code int $message The HTTP response code as string (e.g. <p>'Not Found' for 404 or 'Internal Server Error' for 500)</p> string $headers array() The HTTP response headers array array $body The HTTP response body string __construct __construct HTTP response constructor <p>In most cases, you would use Zend_Http_Response::fromString to parse an HTTP response string and create a new Zend_Http_Response object.</p> <p>NOTE: The constructor no longer accepts nulls or empty values for the code and headers and will throw an exception if the passed values do not form a valid HTTP responses.</p> <p>If no message is passed, the message will be guessed according to the response code.</p> int array string string string \Zend_Http_Exception $code $headers array $body null $version '1.1' $message null isError isError Check whether the response is an error boolean isSuccessful isSuccessful Check whether the response in successful boolean isRedirect isRedirect Check whether the response is a redirection boolean getBody getBody Get the response body as string <p>This method returns the body of the HTTP response (the content), as it should be in it's readable version - that is, after decoding it (if it was decoded), deflating it (if it was gzip compressed), etc.</p> <p>If you want to get the raw body (as transfered on wire) use $this->getRawBody() instead.</p> string getRawBody getRawBody Get the raw response body (as transfered "on wire") as string <p>If the body is encoded (with Transfer-Encoding, not content-encoding - IE "chunked" body), gzip compressed, etc. it will not be decoded.</p> string getVersion getVersion Get the HTTP version of the response string getStatus getStatus Get the HTTP response status code int getMessage getMessage Return a message describing the HTTP response code (Eg. <p>"OK", "Not Found", "Moved Permanently")</p> string getHeaders getHeaders Get the response headers array getHeader getHeader Get a specific header as string, or null if it is not set \string$header string array null $header getHeadersAsString getHeadersAsString Get all headers as string boolean string string $status_line true $br "\n" asString asString Get the entire response as string string string $br "\n" __toString __toString Implements magic __toString() string responseCodeAsText responseCodeAsText A convenience function that returns a text representation of HTTP response codes. <p>Returns 'Unknown' for unknown codes. Returns array of all codes, if $code is not specified.</p> <p>Conforms to HTTP/1.1 as defined in RFC 2616 (except for 'Unknown') See http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10 for reference</p> int boolean string $code null $http11 true extractCode extractCode Extract the response code from a response string string int $response_str extractMessage extractMessage Extract the HTTP message from a response string string $response_str extractVersion extractVersion Extract the HTTP version from a response string string $response_str extractHeaders extractHeaders Extract the headers from a response string string array $response_str extractBody extractBody Extract the body from a response string string string $response_str decodeChunkedBody decodeChunkedBody Decode a "chunked" transfer-encoded body and return the decoded text string string $body decodeGzip decodeGzip Decode a gzip encoded message (when Content-encoding = gzip) <p>Currently requires PHP with zlib support</p> string string $body decodeDeflate decodeDeflate Decode a zlib deflated message (when Content-encoding = deflate) <p>Currently requires PHP with zlib support</p> string string $body fromString fromString Create a new Zend_Http_Response object from a string string \Zend_Http_Response $response_str Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php \Zend_Exception Zend_Http_Exception \Zend_Http_Exception No short description for class \Zend_Http_Exception Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> \Zend_Http_Response Zend_Http_Response_Stream \Zend_Http_Response_Stream Zend_Http_Response represents an HTTP 1.0 / 1.1 response message. <p>It includes easy access to all the response's different elemts, as well as some convenience methods for parsing and validating HTTP responses.</p> $stream Response as stream resource $stream_name The name of the file containing the stream <p>Will be empty if stream is not file-based.</p> string $_cleanup Should we clean up the stream file when this response is closed? boolean getStream getStream Get the response as stream \resourse setStream setStream Set the response stream \resourse \Zend_Http_Response_Stream $stream getCleanup getCleanup Get the cleanup trigger boolean setCleanup setCleanup Set the cleanup trigger bool $cleanup true getStreamName getStreamName Get file name associated with the stream string setStreamName setStreamName Set file name associated with the stream string \Zend_Http_Response_Stream $stream_name __construct __construct HTTP response constructor <p>In most cases, you would use Zend_Http_Response::fromString to parse an HTTP response string and create a new Zend_Http_Response object.</p> <p>NOTE: The constructor no longer accepts nulls or empty values for the code and headers and will throw an exception if the passed values do not form a valid HTTP responses.</p> <p>If no message is passed, the message will be guessed according to the response code.</p> int array string string string \Zend_Http_Exception $code $headers $body null $version '1.1' $message null fromStream fromStream Create a new Zend_Http_Response_Stream object from a string string resource \Zend_Http_Response_Stream $response_str $stream getBody getBody Get the response body as string <p>This method returns the body of the HTTP response (the content), as it should be in it's readable version - that is, after decoding it (if it was decoded), deflating it (if it was gzip compressed), etc.</p> <p>If you want to get the raw body (as transfered on wire) use $this->getRawBody() instead.</p> string getRawBody getRawBody Get the raw response body (as transfered "on wire") as string <p>If the body is encoded (with Transfer-Encoding, not content-encoding - IE "chunked" body), gzip compressed, etc. it will not be decoded.</p> string readStream readStream Read stream content and return it as string <p>Function reads the remainder of the body from the stream and closes the stream.</p> string __destruct __destruct No DocBlock was found for method __destruct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Uri/Http.php Zend/Http/Client/Adapter/Interface.php Zend/Http/Client/Adapter/Stream.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php \Zend_Http_Client_Adapter_Interface \Zend_Http_Client_Adapter_Stream Zend_Http_Client_Adapter_Socket \Zend_Http_Client_Adapter_Socket A sockets based (stream_socket_client) adapter class for Zend_Http_Client. <p>Can be used on almost every PHP environment, and does not require any special extensions.</p> $socket null The socket for server connection resource null $connected_to array(null, null) What host/port are we connected to? array $out_stream null Stream for storing output resource $config array('persistent' => false, 'ssltransport' => 'ssl', 'sslcert' => null, 'sslpassphrase' => null, 'sslusecontext' => false) Parameters array array $method null Request method - will be set by write() and might be used by read() string $_context null Stream context resource __construct __construct Adapter constructor, currently empty. <p>Config is set using setConfig()</p> setConfig setConfig Set the configuration array for the adapter \Zend_Config $config array() getConfig getConfig Retrieve the array of all configuration options array setStreamContext setStreamContext Set the stream context for the TCP connection to the server <p>Can accept either a pre-existing stream context resource, or an array of stream options, similar to the options array passed to the stream_context_create() PHP function. In such case a new stream context will be created using the passed options.</p> mixed \Zend_Http_Client_Adapter_Socket $context getStreamContext getStreamContext Get the stream context for the TCP connection to the server. <p>If no stream context is set, will create a default one.</p> resource connect connect Connect to the remote server string int boolean $host $port 80 $secure false write write Send request to the remote server string \Zend_Uri_Http string array string string $method $uri $http_ver '1.1' $headers array() $body '' read read Read response from server string close close Close the connection to the server _checkSocketReadTimeout _checkSocketReadTimeout Check if the socket has timed out - if so close connection and throw an exception \Zend_Http_Client_Adapter_Exception setOutputStream setOutputStream Set output stream for the response resource \Zend_Http_Client_Adapter_Socket $stream __destruct __destruct Destructor: make sure the socket is disconnected <p>If we are in persistent TCP mode, will not close the connection</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Uri/Http.php Zend/Http/Client.php Zend/Http/Client/Adapter/Socket.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php \Zend_Http_Client_Adapter_Socket Zend_Http_Client_Adapter_Proxy \Zend_Http_Client_Adapter_Proxy HTTP Proxy-supporting Zend_Http_Client adapter class, based on the default socket based adapter. <p>Should be used if proxy HTTP access is required. If no proxy is set, will fall back to Zend_Http_Client_Adapter_Socket behavior. Just like the default Socket adapter, this adapter does not require any special extensions installed.</p> $config array('ssltransport' => 'ssl', 'sslcert' => null, 'sslpassphrase' => null, 'sslusecontext' => false, 'proxy_host' => '', 'proxy_port' => 8080, 'proxy_user' => '', 'proxy_pass' => '', 'proxy_auth' => \Zend_Http_Client::AUTH_BASIC, 'persistent' => false) Parameters array array $negotiated false Whether HTTPS CONNECT was already negotiated with the proxy or not boolean $connectHandshakeRequest Stores the last CONNECT handshake request string connect connect Connect to the remote server <p>Will try to connect to the proxy server. If no proxy was set, will fall back to the target server (behave like regular Socket adapter)</p> string int boolean $host $port 80 $secure false write write Send request to the proxy server string \Zend_Uri_Http string array string string \Zend_Http_Client_Adapter_Exception $method $uri $http_ver '1.1' $headers array() $body '' connectHandshake connectHandshake Preform handshaking with HTTPS proxy using CONNECT method string integer string array void \Zend_Http_Client_Adapter_Exception $host $port 443 $http_ver '1.1' $headers array() array close close Close the connection to the server __destruct __destruct Destructor: make sure the socket is disconnected Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Http/Client/Exception.php \Zend_Http_Client_Exception Zend_Http_Client_Adapter_Exception \Zend_Http_Client_Adapter_Exception READ_TIMEOUT READ_TIMEOUT 1000 No short description for class \Zend_Http_Client_Adapter_Exception Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Uri/Http.php Zend/Http/Client/Adapter/Interface.php Zend/Http/Client/Adapter/Stream.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Exception.php Zend/Http/Client/Exception.php \Zend_Http_Client_Adapter_Interface \Zend_Http_Client_Adapter_Stream Zend_Http_Client_Adapter_Curl \Zend_Http_Client_Adapter_Curl An adapter class for Zend_Http_Client based on the curl extension. <p>Curl requires libcurl. See for full requirements the PHP manual: http://php.net/curl</p> $_config array() Parameters array array $_connected_to array(null, null) What host/port are we connected to? array $_curl null The curl session handle resource null $_invalidOverwritableCurlOptions List of cURL options that should never be overwritten array $_response null Response gotten from server string $out_stream Stream for storing output resource __construct __construct Adapter constructor <p>Config is set using setConfig()</p> void \Zend_Http_Client_Adapter_Exception setConfig setConfig Set the configuration array for the adapter \Zend_Http_Client_Adapter_Exception \Zend_Config \Zend_Http_Client_Adapter_Curl $config array() getConfig getConfig Retrieve the array of all configuration options array setCurlOption setCurlOption Direct setter for cURL adapter related options. string int mixed \Zend_Http_Adapter_Curl $option $value connect connect Initialize curl string int boolean void \Zend_Http_Client_Adapter_Exception $host $port 80 $secure false write write Send request to the remote server string \Zend_Uri_Http float array string string \Zend_Http_Client_Adapter_Exception $method $uri $httpVersion 1.1 $headers array() $body '' read read Return read response from server string close close Close the connection to the server getHandle getHandle Get cUrl Handle resource setOutputStream setOutputStream Set output stream for the response resource \Zend_Http_Client_Adapter_Socket $stream readHeader readHeader Header reader function for CURL resource string int $curl $header Name of argument $httpVersion does not match with the DocBlock's name $http_ver in write() Parameter $http_ver could not be found in write() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Uri/Http.php Zend/Http/Response.php Zend/Http/Client/Adapter/Interface.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php \Zend_Http_Client_Adapter_Interface Zend_Http_Client_Adapter_Test \Zend_Http_Client_Adapter_Test A testing-purposes adapter. <p>Should be used to test all components that rely on Zend_Http_Client, without actually performing an HTTP request. You should instantiate this object manually, and then set it as the client's adapter. Then, you can set the expected response using the setResponse() method.</p> $config array() Parameters array array $responses array("HTTP/1.1 400 Bad Request\r\n\r\n") Buffer of responses to be returned by the read() method. <p>Can be set using setResponse() and addResponse().</p> array $responseIndex 0 Current position in the response buffer integer $_nextRequestWillFail false Wether or not the next request will fail with an exception boolean __construct __construct Adapter constructor, currently empty. <p>Config is set using setConfig()</p> setNextRequestWillFail setNextRequestWillFail Set the nextRequestWillFail flag boolean \Zend_Http_Client_Adapter_Test $flag setConfig setConfig Set the configuration array for the adapter \Zend_Config $config array() connect connect Connect to the remote server string int boolean int \Zend_Http_Client_Adapter_Exception $host $port 80 $secure false write write Send request to the remote server string \Zend_Uri_Http string array string string $method $uri $http_ver '1.1' $headers array() $body '' read read Return the response set in $this->setResponse() string close close Close the connection (dummy) setResponse setResponse Set the HTTP response(s) to be returned by this adapter \Zend_Http_Response array string $response addResponse addResponse Add another response to the response buffer. string $response setResponseIndex setResponseIndex Sets the position of the response buffer. <p>Selects which response will be returned on the next call to read().</p> integer $index getConfig getConfig Retrieve the array of all configuration options array Parameter $timeout could not be found in connect() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend_Http_Client_Adapter_Interface \Zend_Http_Client_Adapter_Interface An interface description for Zend_Http_Client_Adapter classes. <p>These classes are used as connectors for Zend_Http_Client, performing the tasks of connecting, writing, reading and closing connection to the server.</p> setConfig setConfig Set the configuration array for the adapter array $config array() connect connect Connect to the remote server string int boolean $host $port 80 $secure false write write Send request to the remote server string \Zend_Uri_Http string array string string $method $url $http_ver '1.1' $headers array() $body '' read read Read response from server string close close Close the connection to the server Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend_Http_Client_Adapter_Stream \Zend_Http_Client_Adapter_Stream An interface description for Zend_Http_Client_Adapter_Stream classes. <p>This interface decribes Zend_Http_Client_Adapter which supports streaming.</p> setOutputStream setOutputStream Set output stream <p>This function sets output stream where the result will be stored.</p> resource $stream Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Http/Exception.php \Zend_Http_Exception Zend_Http_Client_Exception \Zend_Http_Client_Exception No short description for class \Zend_Http_Client_Exception Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App.php Zend_Gdata_App Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_App Zend_Gdata \Zend_Gdata Provides functionality to interact with Google data APIs Subclasses exist to implement service-specific features <p>As the Google data API protocol is based upon the Atom Publishing Protocol (APP), Gdata functionality extends the appropriate Zend_Gdata_App classes</p> AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'xapi' Service name for use with Google's authentication mechanisms string $_defaultPostUri null Default URI to which to POST. string $_registeredPackages array('Zend_Gdata_Kind', 'Zend_Gdata_Extension', 'Zend_Gdata', 'Zend_Gdata_App_Extension', 'Zend_Gdata_App') Packages to search for classes when using magic __call method, in order. array $namespaces array(array('gd', 'http://schemas.google.com/g/2005', 1, 0), array('openSearch', 'http://a9.com/-/spec/opensearchrss/1.0/', 1, 0), array('openSearch', 'http://a9.com/-/spec/opensearch/1.1/', 2, 0), array('rss', 'http://blogs.law.harvard.edu/tech/rss', 1, 0)) Namespaces used for Gdata data array $_httpClient Client object used to communicate \Zend_Gdata_HttpClient $_staticHttpClient null Client object used to communicate in static context \Zend_Gdata_HttpClient __construct __construct Create Gdata object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' import import Imports a feed located at $uri. string \Zend_Http_Client string \Zend_Gdata_App_Exception string \Zend_Gdata_App_Feed $uri $client null $className 'Zend_Gdata_Feed' getFeed getFeed Retrieve feed as string or object mixed string \Zend_Gdata_App_InvalidArgumentException string \Zend_Gdata_App_Feed $location $className 'Zend_Gdata_Feed' getEntry getEntry Retrieve entry as string or object mixed \Zend_Gdata_App_InvalidArgumentException string \Zend_Gdata_App_Entry $location $className 'Zend_Gdata_Entry' performHttpRequest performHttpRequest Performs a HTTP request using the specified method. <p>Overrides the definition in the parent (Zend_Gdata_App) and uses the Zend_Gdata_HttpClient functionality to filter the HTTP requests and responses.</p> string string array string string int \Zend_Http_Response $method $url $headers array() $body null $contentType null $remainingRedirects null isAuthenticated isAuthenticated Determines whether service object is authenticated. boolean Argument $className is missing from the Docblock of getEntry() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Loader.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend_Uri \Zend_Uri Abstract class for all Zend_Uri handlers $_scheme '' Scheme of this URI (http, ftp, etc.) string $_config array('allow_unwise' => false) Global configuration array array __toString __toString Return a string representation of this URI. string check check Convenience function, checks that a $uri string is well-formed by validating it but not returning an object. <p>Returns TRUE if $uri is a well-formed URI, or FALSE otherwise.</p> string boolean $uri factory factory Create a new Zend_Uri object for a URI. <p>If building a new URI, then $uri should contain only the scheme (http, ftp, etc). Otherwise, supply $uri with the complete URI.</p> string string \Zend_Uri_Exception \Zend_Uri_Exception \Zend_Uri_Exception \Zend_Uri_Exception \Zend_Uri $uri 'http' $className null getScheme getScheme Get the URI's scheme string false setConfig setConfig Set global configuration options \Zend_Config array $config __construct __construct Zend_Uri and its subclasses cannot be instantiated directly. <p>Use Zend_Uri::factory() to return a new Zend_Uri object.</p> string string $scheme $schemeSpecific '' getUri getUri Return a string representation of this URI. string valid valid Returns TRUE if this URI is valid, or FALSE otherwise. boolean Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Exception.php Zend/Loader/Autoloader.php Zend/Exception.php Zend/Exception.php Zend_Loader \Zend_Loader Static methods for loading classes and files. loadClass loadClass Loads a class from a PHP file. <p>The filename must be formatted as "$class.php".</p> <p>If $dirs is a string or an array, it will search the directories in the order supplied, and attempt to load the first matching file.</p> <p>If $dirs is null, it will split the class name at underscores to generate a path hierarchy (e.g., "Zend_Example_Class" will map to "Zend/Example/Class.php").</p> <p>If the file was not found in the $dirs, or if no $dirs were specified, it will attempt to load it from PHP's include_path.</p> string string array void \Zend_Exception $class $dirs null loadFile loadFile Loads a PHP file. <p>This is a wrapper for PHP's include() function.</p> <p>$filename must be the complete filename, including any extension such as ".php". Note that a security check is performed that does not permit extended characters in the filename. This method is intended for loading Zend Framework files.</p> <p>If $dirs is a string or an array, it will search the directories in the order supplied, and attempt to load the first matching file.</p> <p>If the file was not found in the $dirs, or if no $dirs were specified, it will attempt to load it from PHP's include_path.</p> <p>If $once is TRUE, it will use include_once() instead of include().</p> string string array boolean boolean \Zend_Exception $filename $dirs null $once false isReadable isReadable Returns TRUE if the $filename is readable, or FALSE otherwise. <p>This function uses the PHP include_path, where PHP's is_readable() does not.</p> <p>Note from ZF-2900: If you use custom error handler, please check whether return value from error_reporting() is zero or not. At mark of fopen() can not suppress warning if the handler is used.</p> string boolean $filename explodeIncludePath explodeIncludePath Explode an include path into an array <p>If no path provided, uses current include_path. Works around issues that occur when the path includes stream schemas.</p> string null array $path null autoload autoload spl_autoload() suitable implementation for supporting class autoloading. <p>Attach to spl_autoload() using the following:</p> <pre><code>spl_autoload_register(array('Zend_Loader', 'autoload')); </code></pre> string string false $class registerAutoload registerAutoload Register {@link autoload()} with spl_autoload() string boolean void \Zend_Exception $class 'Zend_Loader' $enabled true _securityCheck _securityCheck Ensure that filename does not contain exploits string void \Zend_Exception $filename _includeFile _includeFile Attempt to include() the file. <p>include() is not prefixed with the @ operator because if the file is loaded and contains a parse error, execution will halt silently and this is difficult to debug.</p> <p>Always set display_errors = Off on production servers!</p> string boolean boolean $filespec $once false standardiseFile standardiseFile Standardise the filename. <p>Convert the supplied filename into the namespace-aware standard, based on the Framework Interop Group reference implementation: http://groups.google.com/group/php-standards/web/psr-0-final-proposal</p> <p>The filename must be formatted as "$file.php".</p> string string $file Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Validate/Abstract.php Zend/Validate/Exception.php \Zend_Validate_Abstract Zend_Validate_Ip \Zend_Validate_Ip INVALID INVALID 'ipInvalid' NOT_IP_ADDRESS NOT_IP_ADDRESS 'notIpAddress' $_messageTemplates array(self::INVALID => "Invalid type given. String expected", self::NOT_IP_ADDRESS => "'%value%' does not appear to be a valid IP address") array $_options array('allowipv6' => true, 'allowipv4' => true) internal options array __construct __construct Sets validator options array void $options array() getOptions getOptions Returns all set options array setOptions setOptions Sets the options for this validator array \Zend_Validate_Ip $options isValid isValid Defined by Zend_Validate_Interface <p>Returns true if and only if $value is a valid IP address</p> mixed boolean $value _validateIPv4 _validateIPv4 Validates an IPv4 address string $value _validateIPv6 _validateIPv6 Validates an IPv6 address string boolean $value No short description for class \Zend_Validate_Ip No short description for property $_messageTemplates Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Validate/Abstract.php Zend/Validate/Ip.php \Zend_Validate_Abstract Zend_Validate_Hostname \Zend_Validate_Hostname Please note there are two standalone test scripts for testing IDN characters due to problems with file encoding. <p>The first is tests/Zend/Validate/HostnameTestStandalone.php which is designed to be run on the command line.</p> <p>The second is tests/Zend/Validate/HostnameTestForm.php which is designed to be run via HTML to allow users to test entering UTF-8 characters in a form.</p> CANNOT_DECODE_PUNYCODE CANNOT_DECODE_PUNYCODE 'hostnameCannotDecodePunycode' INVALID INVALID 'hostnameInvalid' INVALID_DASH INVALID_DASH 'hostnameDashCharacter' INVALID_HOSTNAME INVALID_HOSTNAME 'hostnameInvalidHostname' INVALID_HOSTNAME_SCHEMA INVALID_HOSTNAME_SCHEMA 'hostnameInvalidHostnameSchema' INVALID_LOCAL_NAME INVALID_LOCAL_NAME 'hostnameInvalidLocalName' INVALID_URI INVALID_URI 'hostnameInvalidUri' IP_ADDRESS_NOT_ALLOWED IP_ADDRESS_NOT_ALLOWED 'hostnameIpAddressNotAllowed' LOCAL_NAME_NOT_ALLOWED LOCAL_NAME_NOT_ALLOWED 'hostnameLocalNameNotAllowed' UNDECIPHERABLE_TLD UNDECIPHERABLE_TLD 'hostnameUndecipherableTld' UNKNOWN_TLD UNKNOWN_TLD 'hostnameUnknownTld' ALLOW_DNS ALLOW_DNS 1 Allows Internet domain names (e.g., example.com) ALLOW_IP ALLOW_IP 2 Allows IP addresses ALLOW_LOCAL ALLOW_LOCAL 4 Allows local network names (e.g., localhost, www.localdomain) ALLOW_URI ALLOW_URI 8 Allows all types of hostnames ALLOW_ALL ALLOW_ALL 15 Allows all types of hostnames $_messageTemplates array(self::CANNOT_DECODE_PUNYCODE => "'%value%' appears to be a DNS hostname but the given punycode notation cannot be decoded", self::INVALID => "Invalid type given. String expected", self::INVALID_DASH => "'%value%' appears to be a DNS hostname but contains a dash in an invalid position", self::INVALID_HOSTNAME => "'%value%' does not match the expected structure for a DNS hostname", self::INVALID_HOSTNAME_SCHEMA => "'%value%' appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'", self::INVALID_LOCAL_NAME => "'%value%' does not appear to be a valid local network name", self::INVALID_URI => "'%value%' does not appear to be a valid URI hostname", self::IP_ADDRESS_NOT_ALLOWED => "'%value%' appears to be an IP address, but IP addresses are not allowed", self::LOCAL_NAME_NOT_ALLOWED => "'%value%' appears to be a local network name but local network names are not allowed", self::UNDECIPHERABLE_TLD => "'%value%' appears to be a DNS hostname but cannot extract TLD part", self::UNKNOWN_TLD => "'%value%' appears to be a DNS hostname but cannot match TLD against known list") array $_messageVariables array('tld' => '_tld') array $_validTlds array('ac', 'ad', 'ae', 'aero', 'af', 'ag', 'ai', 'al', 'am', 'an', 'ao', 'aq', 'ar', 'arpa', 'as', 'asia', 'at', 'au', 'aw', 'ax', 'az', 'ba', 'bb', 'bd', 'be', 'bf', 'bg', 'bh', 'bi', 'biz', 'bj', 'bm', 'bn', 'bo', 'br', 'bs', 'bt', 'bv', 'bw', 'by', 'bz', 'ca', 'cat', 'cc', 'cd', 'cf', 'cg', 'ch', 'ci', 'ck', 'cl', 'cm', 'cn', 'co', 'com', 'coop', 'cr', 'cu', 'cv', 'cx', 'cy', 'cz', 'de', 'dj', 'dk', 'dm', 'do', 'dz', 'ec', 'edu', 'ee', 'eg', 'er', 'es', 'et', 'eu', 'fi', 'fj', 'fk', 'fm', 'fo', 'fr', 'ga', 'gb', 'gd', 'ge', 'gf', 'gg', 'gh', 'gi', 'gl', 'gm', 'gn', 'gov', 'gp', 'gq', 'gr', 'gs', 'gt', 'gu', 'gw', 'gy', 'hk', 'hm', 'hn', 'hr', 'ht', 'hu', 'id', 'ie', 'il', 'im', 'in', 'info', 'int', 'io', 'iq', 'ir', 'is', 'it', 'je', 'jm', 'jo', 'jobs', 'jp', 'ke', 'kg', 'kh', 'ki', 'km', 'kn', 'kp', 'kr', 'kw', 'ky', 'kz', 'la', 'lb', 'lc', 'li', 'lk', 'lr', 'ls', 'lt', 'lu', 'lv', 'ly', 'ma', 'mc', 'md', 'me', 'mg', 'mh', 'mil', 'mk', 'ml', 'mm', 'mn', 'mo', 'mobi', 'mp', 'mq', 'mr', 'ms', 'mt', 'mu', 'museum', 'mv', 'mw', 'mx', 'my', 'mz', 'na', 'name', 'nc', 'ne', 'net', 'nf', 'ng', 'ni', 'nl', 'no', 'np', 'nr', 'nu', 'nz', 'om', 'org', 'pa', 'pe', 'pf', 'pg', 'ph', 'pk', 'pl', 'pm', 'pn', 'pr', 'pro', 'ps', 'pt', 'pw', 'py', 'qa', 're', 'ro', 'rs', 'ru', 'rw', 'sa', 'sb', 'sc', 'sd', 'se', 'sg', 'sh', 'si', 'sj', 'sk', 'sl', 'sm', 'sn', 'so', 'sr', 'st', 'su', 'sv', 'sy', 'sz', 'tc', 'td', 'tel', 'tf', 'tg', 'th', 'tj', 'tk', 'tl', 'tm', 'tn', 'to', 'tp', 'tr', 'travel', 'tt', 'tv', 'tw', 'tz', 'ua', 'ug', 'uk', 'um', 'us', 'uy', 'uz', 'va', 'vc', 've', 'vg', 'vi', 'vn', 'vu', 'wf', 'ws', 'xxx', 'ye', 'yt', 'yu', 'za', 'zm', 'zw') Array of valid top-level-domains array $_tld string $_validIdns array('AC' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿāăąćĉċčďđēėęěĝġģĥħīįĵķĺļľŀłńņňŋőœŕŗřśŝşšţťŧūŭůűųŵŷźżž]{1,63}$/iu'), 'AR' => array(1 => '/^[\x{002d}0-9a-zà-ãç-êìíñ-õü]{1,63}$/iu'), 'AS' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿāăąćĉċčďđēĕėęěĝğġģĥħĩīĭįıĵķĸĺļľłńņňŋōŏőœŕŗřśŝşšţťŧũūŭůűųŵŷźż]{1,63}$/iu'), 'AT' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿœšž]{1,63}$/iu'), 'BIZ' => 'Hostname/Biz.php', 'BR' => array(1 => '/^[\x{002d}0-9a-zà-ãçéíó-õúü]{1,63}$/iu'), 'BV' => array(1 => '/^[\x{002d}0-9a-zàáä-éêñ-ôöøüčđńŋšŧž]{1,63}$/iu'), 'CAT' => array(1 => '/^[\x{002d}0-9a-z·àç-éíïòóúü]{1,63}$/iu'), 'CH' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿœ]{1,63}$/iu'), 'CL' => array(1 => '/^[\x{002d}0-9a-záéíñóúü]{1,63}$/iu'), 'CN' => 'Hostname/Cn.php', 'COM' => 'Zend/Validate/Hostname/Com.php', 'DE' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿăąāćĉčċďđĕěėęēğĝġģĥħĭĩįīıĵķĺľļłńňņŋŏőōœĸŕřŗśŝšşťţŧŭůűũųūŵŷźžż]{1,63}$/iu'), 'DK' => array(1 => '/^[\x{002d}0-9a-zäéöüæøå]{1,63}$/iu'), 'ES' => array(1 => '/^[\x{002d}0-9a-zàáçèéíïñòóúü·]{1,63}$/iu'), 'EU' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿ]{1,63}$/iu', 2 => '/^[\x{002d}0-9a-zāăąćĉċčďđēĕėęěĝğġģĥħĩīĭįıĵķĺļľŀłńņňʼnŋōŏőœŕŗřśŝšťŧũūŭůűųŵŷźżž]{1,63}$/iu', 3 => '/^[\x{002d}0-9a-zșț]{1,63}$/iu', 4 => '/^[\x{002d}0-9a-zΐάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ]{1,63}$/iu', 5 => '/^[\x{002d}0-9a-zабвгдежзийклмнопрстуфхцчшщъыьэюя]{1,63}$/iu', 6 => '/^[\x{002d}0-9a-zἀ-ἇἐ-ἕἠ-ἧἰ-ἷὀ-ὅὐ-ὗὠ-ὧὰ-ώᾀ-ᾇᾐ-ᾗᾠ-ᾧᾰ-ᾴᾶᾷῂῃῄῆῇῐ-ΐῖῗῠ-ῧῲῳῴῶῷ]{1,63}$/iu'), 'FI' => array(1 => '/^[\x{002d}0-9a-zäåö]{1,63}$/iu'), 'GR' => array(1 => '/^[\x{002d}0-9a-zΆΈΉΊΌΎ-ΡΣ-ώἀ-ἕἘ-Ἕἠ-ὅὈ-Ὅὐ-ὗὙὛὝὟ-ώᾀ-ᾴᾶ-ᾼῂῃῄῆ-ῌῐ-ΐῖ-Ίῠ-Ῥῲῳῴῶ-ῼ]{1,63}$/iu'), 'HK' => 'Zend/Validate/Hostname/Cn.php', 'HU' => array(1 => '/^[\x{002d}0-9a-záéíóöúüőű]{1,63}$/iu'), 'INFO' => array(1 => '/^[\x{002d}0-9a-zäåæéöøü]{1,63}$/iu', 2 => '/^[\x{002d}0-9a-záéíóöúüőű]{1,63}$/iu', 3 => '/^[\x{002d}0-9a-záæéíðóöúýþ]{1,63}$/iu', 4 => '/^[\x{AC00}-\x{D7A3}]{1,17}$/iu', 5 => '/^[\x{002d}0-9a-zāčēģīķļņōŗšūž]{1,63}$/iu', 6 => '/^[\x{002d}0-9a-ząčėęįšūųž]{1,63}$/iu', 7 => '/^[\x{002d}0-9a-zóąćęłńśźż]{1,63}$/iu', 8 => '/^[\x{002d}0-9a-záéíñóúü]{1,63}$/iu'), 'IO' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿăąāćĉčċďđĕěėęēğĝġģĥħĭĩįīıĵķĺľļłńňņŋŏőōœĸŕřŗśŝšşťţŧŭůűũųūŵŷźžż]{1,63}$/iu'), 'IS' => array(1 => '/^[\x{002d}0-9a-záéýúíóþæöð]{1,63}$/iu'), 'JP' => 'Zend/Validate/Hostname/Jp.php', 'KR' => array(1 => '/^[\x{AC00}-\x{D7A3}]{1,17}$/iu'), 'LI' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿœ]{1,63}$/iu'), 'LT' => array(1 => '/^[\x{002d}0-9ąčęėįšųūž]{1,63}$/iu'), 'MD' => array(1 => '/^[\x{002d}0-9ăâîşţ]{1,63}$/iu'), 'MUSEUM' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿāăąćċčďđēėęěğġģħīįıķĺļľłńņňŋōőœŕŗřśşšţťŧūůűųŵŷźżžǎǐǒǔ\x{01E5}\x{01E7}\x{01E9}\x{01EF}ə\x{0292}ẁẃẅỳ]{1,63}$/iu'), 'NET' => 'Zend/Validate/Hostname/Com.php', 'NO' => array(1 => '/^[\x{002d}0-9a-zàáä-éêñ-ôöøüčđńŋšŧž]{1,63}$/iu'), 'NU' => 'Zend/Validate/Hostname/Com.php', 'ORG' => array(1 => '/^[\x{002d}0-9a-záéíñóúü]{1,63}$/iu', 2 => '/^[\x{002d}0-9a-zóąćęłńśźż]{1,63}$/iu', 3 => '/^[\x{002d}0-9a-záäåæéëíðóöøúüýþ]{1,63}$/iu', 4 => '/^[\x{002d}0-9a-záéíóöúüőű]{1,63}$/iu', 5 => '/^[\x{002d}0-9a-ząčėęįšūųž]{1,63}$/iu', 6 => '/^[\x{AC00}-\x{D7A3}]{1,17}$/iu', 7 => '/^[\x{002d}0-9a-zāčēģīķļņōŗšūž]{1,63}$/iu'), 'PE' => array(1 => '/^[\x{002d}0-9a-zñáéíóúü]{1,63}$/iu'), 'PL' => array(1 => '/^[\x{002d}0-9a-zāčēģīķļņōŗšūž]{1,63}$/iu', 2 => '/^[\x{002d}а-ик-ш\x{0450}ѓѕјљњќџ]{1,63}$/iu', 3 => '/^[\x{002d}0-9a-zâîăşţ]{1,63}$/iu', 4 => '/^[\x{002d}0-9а-яё\x{04C2}]{1,63}$/iu', 5 => '/^[\x{002d}0-9a-zàáâèéêìíîòóôùúûċġħż]{1,63}$/iu', 6 => '/^[\x{002d}0-9a-zàäåæéêòóôöøü]{1,63}$/iu', 7 => '/^[\x{002d}0-9a-zóąćęłńśźż]{1,63}$/iu', 8 => '/^[\x{002d}0-9a-zàáâãçéêíòóôõúü]{1,63}$/iu', 9 => '/^[\x{002d}0-9a-zâîăşţ]{1,63}$/iu', 10 => '/^[\x{002d}0-9a-záäéíóôúýčďĺľňŕšťž]{1,63}$/iu', 11 => '/^[\x{002d}0-9a-zçë]{1,63}$/iu', 12 => '/^[\x{002d}0-9а-ик-шђјљњћџ]{1,63}$/iu', 13 => '/^[\x{002d}0-9a-zćčđšž]{1,63}$/iu', 14 => '/^[\x{002d}0-9a-zâçöûüğış]{1,63}$/iu', 15 => '/^[\x{002d}0-9a-záéíñóúü]{1,63}$/iu', 16 => '/^[\x{002d}0-9a-zäõöüšž]{1,63}$/iu', 17 => '/^[\x{002d}0-9a-zĉĝĥĵŝŭ]{1,63}$/iu', 18 => '/^[\x{002d}0-9a-zâäéëîô]{1,63}$/iu', 19 => '/^[\x{002d}0-9a-zàáâäåæçèéêëìíîïðñòôöøùúûüýćčłńřśš]{1,63}$/iu', 20 => '/^[\x{002d}0-9a-zäåæõöøüšž]{1,63}$/iu', 21 => '/^[\x{002d}0-9a-zàáçèéìíòóùú]{1,63}$/iu', 22 => '/^[\x{002d}0-9a-zàáéíóöúüőű]{1,63}$/iu', 23 => '/^[\x{002d}0-9ΐά-ώ]{1,63}$/iu', 24 => '/^[\x{002d}0-9a-zàáâåæçèéêëðóôöøüþœ]{1,63}$/iu', 25 => '/^[\x{002d}0-9a-záäéíóöúüýčďěňřšťůž]{1,63}$/iu', 26 => '/^[\x{002d}0-9a-z·àçèéíïòóúü]{1,63}$/iu', 27 => '/^[\x{002d}0-9а-ъьюя\x{0450}\x{045D}]{1,63}$/iu', 28 => '/^[\x{002d}0-9а-яёіў]{1,63}$/iu', 29 => '/^[\x{002d}0-9a-ząčėęįšūųž]{1,63}$/iu', 30 => '/^[\x{002d}0-9a-záäåæéëíðóöøúüýþ]{1,63}$/iu', 31 => '/^[\x{002d}0-9a-zàâæçèéêëîïñôùûüÿœ]{1,63}$/iu', 32 => '/^[\x{002d}0-9а-щъыьэюяёєіїґ]{1,63}$/iu', 33 => '/^[\x{002d}0-9א-ת]{1,63}$/iu'), 'PR' => array(1 => '/^[\x{002d}0-9a-záéíóúñäëïüöâêîôûàèùæçœãõ]{1,63}$/iu'), 'PT' => array(1 => '/^[\x{002d}0-9a-záàâãçéêíóôõú]{1,63}$/iu'), 'RU' => array(1 => '/^[\x{002d}0-9а-яё]{1,63}$/iu'), 'SA' => array(1 => '/^[\x{002d}.0-9\x{0621}-\x{063A}\x{0641}-\x{064A}\x{0660}-\x{0669}]{1,63}$/iu'), 'SE' => array(1 => '/^[\x{002d}0-9a-zäåéöü]{1,63}$/iu'), 'SH' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿăąāćĉčċďđĕěėęēğĝġģĥħĭĩįīıĵķĺľļłńňņŋŏőōœĸŕřŗśŝšşťţŧŭůűũųūŵŷźžż]{1,63}$/iu'), 'SI' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿ]{1,63}$/iu', 2 => '/^[\x{002d}0-9a-zāăąćĉċčďđēĕėęěĝğġģĥħĩīĭįıĵķĺļľŀłńņňʼnŋōŏőœŕŗřśŝšťŧũūŭůűųŵŷźżž]{1,63}$/iu', 3 => '/^[\x{002d}0-9a-zșț]{1,63}$/iu'), 'SJ' => array(1 => '/^[\x{002d}0-9a-zàáä-éêñ-ôöøüčđńŋšŧž]{1,63}$/iu'), 'TH' => array(1 => '/^[\x{002d}0-9a-z\x{0E01}-\x{0E3A}\x{0E40}-\x{0E4D}\x{0E50}-\x{0E59}]{1,63}$/iu'), 'TM' => array(1 => '/^[\x{002d}0-9a-zà-öø-ÿāăąćĉċčďđēėęěĝġģĥħīįĵķĺļľŀłńņňŋőœŕŗřśŝşšţťŧūŭůűųŵŷźżž]{1,63}$/iu'), 'TW' => 'Zend/Validate/Hostname/Cn.php', 'TR' => array(1 => '/^[\x{002d}0-9a-zğıüşöç]{1,63}$/iu'), 'VE' => array(1 => '/^[\x{002d}0-9a-záéíóúüñ]{1,63}$/iu'), 'VN' => array(1 => '/^[ÀÁÂÃÈÉÊÌÍÒÓÔÕÙÚÝàáâãèéêìíòóôõùúýĂăĐđĨĩŨũƠơƯư\x{1EA0}-\x{1EF9}]{1,63}$/iu'), 'ایران' => array(1 => '/^[\x{0621}-\x{0624}\x{0626}-\x{063A}\x{0641}\x{0642}\x{0644}-\x{0648}\x{067E}\x{0686}\x{0698}\x{06A9}\x{06AF}\x{06CC}\x{06F0}-\x{06F9}]{1,30}$/iu'), '中国' => 'Zend/Validate/Hostname/Cn.php', '公司' => 'Zend/Validate/Hostname/Cn.php', '网络' => 'Zend/Validate/Hostname/Cn.php') Array for valid Idns array $_idnLength array('BIZ' => array(5 => 17, 11 => 15, 12 => 20), 'CN' => array(1 => 20), 'COM' => array(3 => 17, 5 => 20), 'HK' => array(1 => 15), 'INFO' => array(4 => 17), 'KR' => array(1 => 17), 'NET' => array(3 => 17, 5 => 20), 'ORG' => array(6 => 17), 'TW' => array(1 => 20), 'ایران' => array(1 => 30), '中国' => array(1 => 20), '公司' => array(1 => 20), '网络' => array(1 => 20)) $_options array('allow' => self::ALLOW_DNS, 'idn' => true, 'tld' => true, 'ip' => null) __construct __construct Sets validator options integer boolean boolean \Zend_Validate_Ip void $options array() getOptions getOptions Returns all set options array setOptions setOptions Sets the options for this validator array \Zend_Validate_Hostname $options getIpValidator getIpValidator Returns the set ip validator \Zend_Validate_Ip setIpValidator setIpValidator \Zend_Validate_Ip \void; $ipValidator null \Zend_Validate_Ip getAllow getAllow Returns the allow option integer setAllow setAllow Sets the allow option integer \Zend_Validate_Hostname $allow getValidateIdn getValidateIdn Returns the set idn option boolean setValidateIdn setValidateIdn Set whether IDN domains are validated <p>This only applies when DNS hostnames are validated</p> boolean $allowed getValidateTld getValidateTld Returns the set tld option boolean setValidateTld setValidateTld Set whether the TLD element of a hostname is validated <p>This only applies when DNS hostnames are validated</p> boolean $allowed isValid isValid Defined by Zend_Validate_Interface <p>Returns true if and only if the $value is a valid hostname with respect to the current allow option</p> string \Zend_Validate_Exception boolean $value decodePunycode decodePunycode Decodes a punycode encoded string to it's original utf8 string In case of a decoding failure the original string is returned string string $encoded No short description for property $_messageTemplates No short description for property $_messageVariables No short description for property $_tld No DocBlock was found for property $_idnLength No DocBlock was found for property $_options Name of argument $options does not match with the DocBlock's name $allow in __construct() Parameter $allow could not be found in __construct() Parameter $validateIdn could not be found in __construct() Parameter $validateTld could not be found in __construct() Parameter $ipValidator could not be found in __construct() No short description for method setIpValidator() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend_Validate_Interface \Zend_Validate_Interface isValid isValid Returns true if and only if $value meets the validation requirements <p>If $value fails validation, then this method returns false, and getMessages() will return an array of messages that explain why the validation failed.</p> mixed boolean \Zend_Validate_Exception $value getMessages getMessages Returns an array of messages that explain why the most recent isValid() call returned false. <p>The array keys are validation failure message identifiers, and the array values are the corresponding human-readable message strings.</p> <p>If isValid() was never called or if the most recent isValid() call returned true, then this method returns an empty array.</p> array Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Validate/Interface.php Zend/Validate/Exception.php Zend/Validate/Exception.php Zend/Validate/Exception.php Zend/Validate/Exception.php Zend/Registry.php \Zend_Validate_Interface Zend_Validate_Abstract \Zend_Validate_Abstract $_value The value to be validated mixed $_messageVariables array() Additional variables available for validation failure messages array $_messageTemplates array() Validation failure message template definitions array $_messages array() Array of validation failure messages array $_obscureValue false Flag indidcating whether or not value should be obfuscated in error messages bool $_errors array() Array of validation failure message codes array $_translator Translation object \Zend_Translate $_defaultTranslator Default translation object for all validate objects \Zend_Translate $_translatorDisabled false Is translation disabled? Boolean $_messageLength -1 Limits the maximum returned length of a error message Integer getMessages getMessages Returns array of validation failure messages array getMessageVariables getMessageVariables Returns an array of the names of variables that are used in constructing validation failure messages array getMessageTemplates getMessageTemplates Returns the message templates from the validator array setMessage setMessage Sets the validation failure message template for a particular key string string \Zend_Validate_Abstract \Zend_Validate_Exception $messageString $messageKey null setMessages setMessages Sets validation failure message templates given as an array, where the array keys are the message keys, and the array values are the message template strings. array \Zend_Validate_Abstract $messages array __get __get Magic function returns the value of the requested property, if and only if it is the value or a message variable. string mixed \Zend_Validate_Exception $property _createMessage _createMessage Constructs and returns a validation failure message with the given message key and value. <p>Returns null if and only if $messageKey does not correspond to an existing template.</p> <p>If a translator is available and a translation exists for $messageKey, the translation will be used.</p> string string string $messageKey $value _error _error string string void $messageKey $value null _setValue _setValue Sets the value to be validated and clears the messages and errors arrays mixed void $value getErrors getErrors Returns array of validation failure message codes array setObscureValue setObscureValue Set flag indicating whether or not value should be obfuscated in messages bool \Zend_Validate_Abstract $flag getObscureValue getObscureValue Retrieve flag indicating whether or not value should be obfuscated in messages bool setTranslator setTranslator Set translation object \Zend_Translate \Zend_Translate_Adapter null \Zend_Validate_Abstract $translator null getTranslator getTranslator Return translation object \Zend_Translate_Adapter null hasTranslator hasTranslator Does this validator have its own specific translator? bool setDefaultTranslator setDefaultTranslator Set default translation object for all validate objects \Zend_Translate \Zend_Translate_Adapter null void $translator null getDefaultTranslator getDefaultTranslator Get default translation object for all validate objects \Zend_Translate_Adapter null hasDefaultTranslator hasDefaultTranslator Is there a default translation object set? boolean setDisableTranslator setDisableTranslator Indicate whether or not translation should be disabled bool \Zend_Validate_Abstract $flag translatorIsDisabled translatorIsDisabled Is translation disabled? bool getMessageLength getMessageLength Returns the maximum allowed message length integer setMessageLength setMessageLength Sets the maximum allowed message length integer $length -1 No short description for class \Zend_Validate_Abstract No short description for method _error() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> \Exception Zend_Exception \Zend_Exception $_previous null null \Exception __construct __construct Construct the exception string int \Exception void $msg '' $code 0 $previous null \Exception __call __call Overloading <p>For PHP &lt; 5.3.0, provides access to the getPrevious() method.</p> string array mixed $method $args array __toString __toString String representation of the exception string _getPrevious _getPrevious Returns previous Exception \Exception null No short description for class \Zend_Exception No short description for property $_previous Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Exception.php Zend/Exception.php Zend/Loader.php Zend/Exception.php \ArrayObject Zend_Registry \Zend_Registry Generic storage class helps to manage global data. $_registryClassName 'Zend_Registry' Class name of the singleton registry object. string $_registry null Registry object provides storage for shared objects. \Zend_Registry getInstance getInstance Retrieves the default registry instance. \Zend_Registry setInstance setInstance Set the default registry instance to a specified instance. \Zend_Registry void \Zend_Exception $registry \Zend_Registry init init Initialize the default registry instance. void setClassName setClassName Set the class name to use for the default registry instance. <p>Does not affect the currently initialized instance, it only applies for the next time you instantiate.</p> string void \Zend_Exception $registryClassName 'Zend_Registry' _unsetInstance _unsetInstance Unset the default registry instance. <p>Primarily used in tearDown() in unit tests.</p> get get getter method, basically same as offsetGet(). <p>This method can be called from an object of type Zend_Registry, or it can be called statically. In the latter case, it uses the default static instance stored in the class.</p> string mixed \Zend_Exception $index set set setter method, basically same as offsetSet(). <p>This method can be called from an object of type Zend_Registry, or it can be called statically. In the latter case, it uses the default static instance stored in the class.</p> string mixed void $index $value isRegistered isRegistered Returns TRUE if the $index is a named value in the registry, or FALSE if $index was not found in the registry. string boolean $index __construct __construct Constructs a parent ArrayObject with default ARRAY_AS_PROPS to allow acces as an object array integer $array array() $flags parent::ARRAY_AS_PROPS offsetExists offsetExists string $index No short description for method offsetExists() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/Calendar/EventFeed.php Zend/Gdata/Calendar/EventEntry.php Zend/Gdata/Calendar/ListFeed.php Zend/Gdata/Calendar/ListEntry.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata Zend_Gdata_Calendar \Zend_Gdata_Calendar Service class for interacting with the Google Calendar data API CALENDAR_FEED_URI CALENDAR_FEED_URI 'https://www.google.com/calendar/feeds' CALENDAR_EVENT_FEED_URI CALENDAR_EVENT_FEED_URI 'https://www.google.com/calendar/feeds/default/private/full' AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'cl' $_defaultPostUri self::CALENDAR_EVENT_FEED_URI $namespaces array(array('gCal', 'http://schemas.google.com/gCal/2005', 1, 0)) Namespaces used for Zend_Gdata_Calendar array __construct __construct Create Gdata_Calendar object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' getCalendarEventFeed getCalendarEventFeed Retreive feed object mixed \Zend_Gdata_Calendar_EventFeed $location null getCalendarEventEntry getCalendarEventEntry Retreive entry object \Zend_Gdata_Calendar_EventEntry $location null getCalendarListFeed getCalendarListFeed Retrieve feed object \Zend_Gdata_Calendar_ListFeed getCalendarListEntry getCalendarListEntry Retreive entryobject \Zend_Gdata_Calendar_ListEntry $location null insertEvent insertEvent $event $uri null No DocBlock was found for property $_defaultPostUri Argument $location is missing from the Docblock of getCalendarEventEntry() Argument $location is missing from the Docblock of getCalendarListEntry() No DocBlock was found for method insertEvent() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Calendar/Extension/AccessLevel.php Zend/Gdata/Calendar/Extension/Color.php Zend/Gdata/Calendar/Extension/Hidden.php Zend/Gdata/Calendar/Extension/Selected.php Zend/Gdata/Extension/EventStatus.php Zend/Gdata/Extension/Visibility.php Zend/Gdata/Extension/Where.php \Zend_Gdata_Entry Zend_Gdata_Calendar_ListEntry \Zend_Gdata_Calendar_ListEntry Represents a Calendar entry in the Calendar data API meta feed of a user's calendars. $_color null $_accessLevel null $_hidden null $_selected null $_timezone null $_where array() __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getAccessLevel getAccessLevel setAccessLevel setAccessLevel \Zend_Gdata_Calendar_Extension_AccessLevel \Zend_Gdata_Extension_ListEntry $value getColor getColor setColor setColor \Zend_Gdata_Calendar_Extension_Color \Zend_Gdata_Extension_ListEntry $value getHidden getHidden setHidden setHidden \Zend_Gdata_Calendar_Extension_Hidden \Zend_Gdata_Extension_ListEntry $value getSelected getSelected setSelected setSelected \Zend_Gdata_Calendar_Extension_Selected \Zend_Gdata_Extension_ListEntry $value getTimezone getTimezone setTimezone setTimezone \Zend_Gdata_Calendar_Extension_Timezone \Zend_Gdata_Extension_ListEntry $value getWhere getWhere setWhere setWhere \Zend_Gdata_Extension_Where \Zend_Gdata_Extension_ListEntry $value No DocBlock was found for property $_color No DocBlock was found for property $_accessLevel No DocBlock was found for property $_hidden No DocBlock was found for property $_selected No DocBlock was found for property $_timezone No DocBlock was found for property $_where No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method getAccessLevel() No short description for method setAccessLevel() No DocBlock was found for method getColor() No short description for method setColor() No DocBlock was found for method getHidden() No short description for method setHidden() No DocBlock was found for method getSelected() No short description for method setSelected() No DocBlock was found for method getTimezone() No short description for method setTimezone() No DocBlock was found for method getWhere() No short description for method setWhere() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Calendar/Extension/Timezone.php \Zend_Gdata_Feed Zend_Gdata_Calendar_EventFeed \Zend_Gdata_Calendar_EventFeed Data model for a Google Calendar feed of events $_timezone null $_entryClassName 'Zend_Gdata_Calendar_EventEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Calendar_EventFeed' The classname for the feed. string __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getTimezone getTimezone setTimezone setTimezone $value No DocBlock was found for property $_timezone No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method getTimezone() No DocBlock was found for method setTimezone() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Extension Zend_Gdata_Calendar_Extension_Hidden \Zend_Gdata_Calendar_Extension_Hidden Represents the gCal:hidden element used by the Calendar data API $_rootNamespace 'gCal' $_rootElement 'hidden' $_value null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Hidden object. bool $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. bool \Zend_Gdata_Calendar_Extension_Hidden $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Calendar_Extension_QuickAdd \Zend_Gdata_Calendar_Extension_QuickAdd Represents the gCal:quickAdd element used by the Calendar data API $_rootNamespace 'gCal' $_rootElement 'quickadd' $_value null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_QuickAdd object. string $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. string \Zend_Gdata_Calendar_Extension_QuickAdd $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_Calendar_Extension_WebContent \Zend_Gdata_Calendar_Extension_WebContent Represents the gCal:webContent element used by the Calendar data API $_rootNamespace 'gCal' $_rootElement 'webContent' $_url null $_height null $_width null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_WebContent object. string string string $url null $height null $width null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getURL getURL Get the value for this element's URL attribute. string setURL setURL Set the value for this element's URL attribute. bool \Zend_Gdata_Calendar_Extension_WebContent $value getHeight getHeight Get the value for this element's height attribute. int setHeight setHeight Set the value for this element's height attribute. int \Zend_Gdata_Calendar_Extension_WebContent $value getWidth getWidth Get the value for this element's height attribute. int setWidth setWidth Set the value for this element's height attribute. int \Zend_Gdata_Calendar_Extension_WebContent $value No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_url No DocBlock was found for property $_height No DocBlock was found for property $_width Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Calendar_Extension_SendEventNotifications \Zend_Gdata_Calendar_Extension_SendEventNotifications Data model class to represent an entry's sendEventNotifications $_rootNamespace 'gCal' $_rootElement 'sendEventNotifications' $_value null __construct __construct Constructs a new Zend_Gdata_Extension_SendEventNotifications object. bool $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's Value attribute. string setValue setValue Set the value for this element's Value attribute. string \Zend_Gdata_Extension_SendEventNotifications $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Extension Zend_Gdata_Calendar_Extension_Selected \Zend_Gdata_Calendar_Extension_Selected Represents the gCal:selected element used by the Calendar data API $_rootNamespace 'gCal' $_rootElement 'selected' $_value null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Selected object. bool $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's value attribute. bool setValue setValue Set the value for this element's value attribute. bool \Zend_Gdata_Calendar_Extension_Selected $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Calendar_Extension_Timezone \Zend_Gdata_Calendar_Extension_Timezone Represents the gCal:timezone element used by the Calendar data API $_rootNamespace 'gCal' $_rootElement 'timezone' $_value null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Timezone object. string $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. string \Zend_Gdata_Calendar_Extension_Timezone $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Link.php Zend/Gdata/Calendar/Extension/WebContent.php \Zend_Gdata_App_Extension_Link Zend_Gdata_Calendar_Extension_Link \Zend_Gdata_Calendar_Extension_Link Specialized Link class for use with Calendar. <p>Enables use of gCal extension elements.</p> $_webContent null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Link object. \Zend_Gdata_Calendar_Extension_Webcontent $href null $rel null $type null $hrefLang null $title null $length null $webContent null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getWebContent getWebContent Get the value for this element's WebContent attribute. \Zend_Gdata_Calendar_Extension_Webcontent setWebContent setWebContent Set the value for this element's WebContent attribute. \Zend_Gdata_Calendar_Extension_WebContent \Zend_Calendar_Extension_Link $value No DocBlock was found for property $_webContent Name of argument $href does not match with the DocBlock's name $webContent in __construct() Argument $rel is missing from the Docblock of __construct() Argument $type is missing from the Docblock of __construct() Argument $hrefLang is missing from the Docblock of __construct() Argument $title is missing from the Docblock of __construct() Argument $length is missing from the Docblock of __construct() Argument $webContent is missing from the Docblock of __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Calendar_Extension_AccessLevel \Zend_Gdata_Calendar_Extension_AccessLevel Represents the gCal:accessLevel element used by the Calendar data API $_rootNamespace 'gCal' $_rootElement 'accesslevel' $_value null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_AccessLevel object. string $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. string \Zend_Gdata_Calendar_Extension_Selected $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Calendar_Extension_Color \Zend_Gdata_Calendar_Extension_Color Represents the gCal:color element used by the Calendar data API to define the color of a calendar in the UI. $_rootNamespace 'gCal' $_rootElement 'color' $_value null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Color object. string $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. string \Zend_Gdata_Calendar_Extension_Color $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Calendar/Extension/Timezone.php \Zend_Gdata_Feed Zend_Gdata_Calendar_ListFeed \Zend_Gdata_Calendar_ListFeed Represents the meta-feed list of calendars $_timezone null $_entryClassName 'Zend_Gdata_Calendar_ListEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Calendar_ListFeed' The classname for the feed. string __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getTimezone getTimezone setTimezone setTimezone \Zend_Gdata_Calendar_Extension_Timezone \Zend_Gdata_Extension_ListEntry $value No DocBlock was found for property $_timezone No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method getTimezone() No short description for method setTimezone() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Kind/EventEntry.php Zend/Gdata/Calendar/Extension/SendEventNotifications.php Zend/Gdata/Calendar/Extension/Timezone.php Zend/Gdata/Calendar/Extension/Link.php Zend/Gdata/Calendar/Extension/QuickAdd.php \Zend_Gdata_Kind_EventEntry Zend_Gdata_Calendar_EventEntry \Zend_Gdata_Calendar_EventEntry Data model class for a Google Calendar Event Entry $_entryClassName 'Zend_Gdata_Calendar_EventEntry' $_sendEventNotifications null $_timezone null $_quickadd null __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getSendEventNotifications getSendEventNotifications setSendEventNotifications setSendEventNotifications $value getTimezone getTimezone setTimezone setTimezone \Zend_Gdata_Calendar_Extension_Timezone \Zend_Gdata_Extension_EventEntry $value getQuickAdd getQuickAdd setQuickAdd setQuickAdd \Zend_Gdata_Calendar_Extension_QuickAdd \Zend_Gdata_Extension_ListEntry $value No DocBlock was found for property $_entryClassName No DocBlock was found for property $_sendEventNotifications No DocBlock was found for property $_timezone No DocBlock was found for property $_quickadd No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method getSendEventNotifications() No DocBlock was found for method setSendEventNotifications() No DocBlock was found for method getTimezone() No short description for method setTimezone() No DocBlock was found for method getQuickAdd() No short description for method setQuickAdd() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Util.php Zend_Gdata_App_util Zend/Gdata/Query.php Zend_Gdata_Query Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php \Zend_Gdata_Query Zend_Gdata_Calendar_EventQuery \Zend_Gdata_Calendar_EventQuery Assists in constructing queries for Google Calendar events CALENDAR_FEED_URI CALENDAR_FEED_URI 'https://www.google.com/calendar/feeds' $_defaultFeedUri self::CALENDAR_FEED_URI The default URI used for feeds. $_comments null The comment ID to retrieve. <p>If null, no specific comment will be retrieved unless already included in the query URI. The event ID ($_event) must be set, otherwise this property is ignored.</p> $_user 'default' The calendar address to be requested by queries. <p>This may be an email address if requesting the primary calendar for a user. Defaults to "default" (the currently authenticated user). A null value should be used when the calendar address has already been set as part of the query URI.</p> $_visibility 'public' $_projection 'full' Projection to be requested by queries. <p>Defaults to "full". A null value should be used when the calendar address has already been set as part of the query URI.</p> $_event null The event ID to retrieve. <p>If null, no specific event will be retrieved unless already included in the query URI.</p> __construct __construct Create Gdata_Calendar_EventQuery object. <p>If a URL is provided, it becomes the base URL, and additional URL components may be appended. For instance, if $url is 'https://www.google.com/calendar', the default URL constructed will be 'https://www.google.com/calendar/default/public/full'.</p> <p>If the URL already contains a calendar ID, projection, visibility, event ID, or comment ID, you will need to set these fields to null to prevent them from being inserted. See this class's properties for more information.</p> string $url null setComments setComments string \Zend_Gdata_Calendar_EventQuery $value setEvent setEvent string \Zend_Gdata_Calendar_EventQuery $value setProjection setProjection string \Zend_Gdata_Calendar_EventQuery $value setUser setUser string \Zend_Gdata_Calendar_EventQuery $value setVisibility setVisibility bool \Zend_Gdata_Calendar_EventQuery $value getComments getComments string getEvent getEvent string getProjection getProjection string getUser getUser string getVisibility getVisibility string setStartMax setStartMax int \Zend_Gdata_Calendar_EventQuery $value setStartMin setStartMin int \Zend_Gdata_Calendar_EventQuery $value setOrderBy setOrderBy string \Zend_Gdata_Calendar_EventQuery $value getStartMax getStartMax int getStartMin getStartMin int getOrderBy getOrderBy string getSortOrder getSortOrder string setSortOrder setSortOrder string $value getRecurrenceExpansionStart getRecurrenceExpansionStart string setRecurrenceExpansionStart setRecurrenceExpansionStart string $value getRecurrenceExpansionEnd getRecurrenceExpansionEnd string setRecurrenceExpansionEnd setRecurrenceExpansionEnd string $value getSingleEvents getSingleEvents string \Zend_Gdata_Calendar_EventQuery setSingleEvents setSingleEvents string \Zend_Gdata_Calendar_EventQuery $value getFutureEvents getFutureEvents string setFutureEvents setFutureEvents string \Zend_Gdata_Calendar_EventQuery $value getQueryUrl getQueryUrl string No DocBlock was found for property $_visibility No short description for method setComments() No short description for method setEvent() No short description for method setProjection() No short description for method setUser() No short description for method setVisibility() No short description for method getComments() No short description for method getEvent() No short description for method getProjection() No short description for method getUser() No short description for method getVisibility() No short description for method setStartMax() No short description for method setStartMin() No short description for method setOrderBy() No short description for method getStartMax() No short description for method getStartMin() No short description for method getOrderBy() No short description for method getSortOrder() No short description for method setSortOrder() Argument $value is missing from the Docblock of setSortOrder() No short description for method getRecurrenceExpansionStart() No short description for method setRecurrenceExpansionStart() Argument $value is missing from the Docblock of setRecurrenceExpansionStart() No short description for method getRecurrenceExpansionEnd() No short description for method setRecurrenceExpansionEnd() Argument $value is missing from the Docblock of setRecurrenceExpansionEnd() No short description for method getSingleEvents() Parameter $value could not be found in getSingleEvents() No short description for method setSingleEvents() No short description for method getFutureEvents() No short description for method setFutureEvents() No short description for method getQueryUrl() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Http/Client.php Zend_Http_Client Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/Exception.php \Zend_Http_Client Zend_Gdata_HttpClient \Zend_Gdata_HttpClient Gdata Http Client object. <p>Class to extend the generic Zend Http Client with the ability to perform secure AuthSub requests</p> $_authSubPrivateKeyId null OpenSSL private key resource id This key is used for AuthSub authentication. <p>If this value is set, it is assuemd that secure AuthSub is desired.</p> resource $_authSubToken null Token for AuthSub authentication. <p>If this token is set, AuthSub authentication is used.</p> string $_clientLoginToken null Token for ClientLogin authentication. <p>If only this token is set, ClientLogin authentication is used.</p> string $_clientLoginKey null Token for ClientLogin authentication. <p>If this token is set, and the AuthSub key is not set, ClientLogin authentication is used</p> string $_streamingRequest null True if this request is being made with data supplied by a stream object instead of a raw encoded string. bool setAuthSubPrivateKeyFile setAuthSubPrivateKeyFile Sets the PEM formatted private key, as read from a file. <p>This method reads the file and then calls setAuthSubPrivateKey() with the file contents.</p> string string bool void $file $passphrase null $useIncludePath false setAuthSubPrivateKey setAuthSubPrivateKey Sets the PEM formatted private key to be used for secure AuthSub auth. <p>In order to call this method, openssl must be enabled in your PHP installation. Otherwise, a Zend_Gdata_App_InvalidArgumentException will be thrown.</p> string string \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_HttpClient $key $passphrase null getAuthSubPrivateKeyId getAuthSubPrivateKeyId Gets the openssl private key id string getAuthSubToken getAuthSubToken Gets the AuthSub token used for authentication string setAuthSubToken setAuthSubToken Sets the AuthSub token used for authentication string \Zend_Gdata_HttpClient $token getClientLoginToken getClientLoginToken Gets the ClientLogin token used for authentication string setClientLoginToken setClientLoginToken Sets the ClientLogin token used for authentication string \Zend_Gdata_HttpClient $token filterHttpRequest filterHttpRequest Filters the HTTP requests being sent to add the Authorization header. <p>If both AuthSub and ClientLogin tokens are set, AuthSub takes precedence. If an AuthSub key is set, then secure AuthSub authentication is used, and the request is signed. Requests must be signed only with the private key corresponding to the public key registered with Google. If an AuthSub key is set, but openssl support is not enabled in the PHP installation, an exception is thrown.</p> string string array string string \Zend_Gdata_App_Exception array $method $url $headers array() $body null $contentType null filterHttpResponse filterHttpResponse Method for filtering the HTTP response, though no filtering is currently done. \Zend_Http_Response \Zend_Http_Response $response getAdapter getAdapter Return the current connection adapter \Zend_Http_Client_Adapter_Interface string setAdapter setAdapter Load the connection adapter \Zend_Http_Client_Adapter_Interface void $adapter setStreamingRequest setStreamingRequest Set the streamingRequest variable which controls whether we are sending the raw (already encoded) POST data from a stream source. boolean void $value getStreamingRequest getStreamingRequest Check whether the client is set to perform streaming requests. boolean _prepareBody _prepareBody Prepare the request body (for POST and PUT requests) string \Zend_Http_Client_Exception resetParameters resetParameters Clear all custom parameters we set. \Zend_Http_Client $clearAll false setRawDataStream setRawDataStream Set the raw (already encoded) POST data from a stream source. <p>This is used to support POSTing from open file handles without caching the entire body into memory. It is a wrapper around Zend_Http_Client::setRawData().</p> string string \Zend_Http_Client $data $enctype null Argument $clearAll is missing from the Docblock of resetParameters() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/Photos/UserFeed.php Zend/Gdata/Photos/AlbumFeed.php Zend/Gdata/Photos/PhotoFeed.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata Zend_Gdata_Photos \Zend_Gdata_Photos Service class for interacting with the Google Photos Data API. <p>Like other service classes in this module, this class provides access via an HTTP client to Google servers for working with entries and feeds.</p> PICASA_BASE_URI PICASA_BASE_URI 'https://picasaweb.google.com/data' PICASA_BASE_FEED_URI PICASA_BASE_FEED_URI 'https://picasaweb.google.com/data/feed' AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'lh2' DEFAULT_PROJECTION DEFAULT_PROJECTION 'api' Default projection when interacting with the Picasa server. DEFAULT_VISIBILITY DEFAULT_VISIBILITY 'all' The default visibility to filter events by. DEFAULT_USER DEFAULT_USER 'default' The default user to retrieve feeds for. USER_PATH USER_PATH 'user' Path to the user feed on the Picasa server. ALBUM_PATH ALBUM_PATH 'albumid' Path to album feeds on the Picasa server. PHOTO_PATH PHOTO_PATH 'photoid' Path to photo feeds on the Picasa server. COMMUNITY_SEARCH_PATH COMMUNITY_SEARCH_PATH 'all' The path to the community search feed on the Picasa server. FEED_LINK_PATH FEED_LINK_PATH 'http://schemas.google.com/g/2005#feed' The path to use for finding links to feeds within entries KIND_PATH KIND_PATH 'http://schemas.google.com/g/2005#kind' The path to use for the determining type of an entry $namespaces array(array('gphoto', 'http://schemas.google.com/photos/2007', 1, 0), array('photo', 'http://www.pheed.com/pheed/', 1, 0), array('exif', 'http://schemas.google.com/photos/exif/2007', 1, 0), array('georss', 'http://www.georss.org/georss', 1, 0), array('gml', 'http://www.opengis.net/gml', 1, 0), array('media', 'http://search.yahoo.com/mrss/', 1, 0)) Namespaces used for Zend_Gdata_Photos array __construct __construct Create Zend_Gdata_Photos object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' getUserFeed getUserFeed Retrieve a UserFeed containing AlbumEntries, PhotoEntries and TagEntries associated with a given user. string mixed \Zend_Gdata_Photos_UserFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $userName null $location null getAlbumFeed getAlbumFeed Retreive AlbumFeed object containing multiple PhotoEntry or TagEntry objects. mixed \Zend_Gdata_Photos_AlbumFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $location null getPhotoFeed getPhotoFeed Retreive PhotoFeed object containing comments and tags associated with a given photo. mixed \Zend_Gdata_Photos_PhotoFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $location null getUserEntry getUserEntry Retreive a single UserEntry object. mixed \Zend_Gdata_Photos_UserEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $location getAlbumEntry getAlbumEntry Retreive a single AlbumEntry object. mixed \Zend_Gdata_Photos_AlbumEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $location getPhotoEntry getPhotoEntry Retreive a single PhotoEntry object. mixed \Zend_Gdata_Photos_PhotoEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $location getTagEntry getTagEntry Retreive a single TagEntry object. mixed \Zend_Gdata_Photos_TagEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $location getCommentEntry getCommentEntry Retreive a single CommentEntry object. mixed \Zend_Gdata_Photos_CommentEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $location insertAlbumEntry insertAlbumEntry Create a new album from a AlbumEntry. \Zend_Gdata_Photos_AlbumEntry string \Zend_Gdata_Photos_AlbumEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $album $uri null insertPhotoEntry insertPhotoEntry Create a new photo from a PhotoEntry. \Zend_Gdata_Photos_PhotoEntry string \Zend_Gdata_Photos_PhotoEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $photo $uri null insertTagEntry insertTagEntry Create a new tag from a TagEntry. \Zend_Gdata_Photos_TagEntry string \Zend_Gdata_Photos_TagEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $tag $uri null insertCommentEntry insertCommentEntry Create a new comment from a CommentEntry. \Zend_Gdata_Photos_CommentEntry string \Zend_Gdata_Photos_CommentEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $comment $uri null deleteAlbumEntry deleteAlbumEntry Delete an AlbumEntry. \Zend_Gdata_Photos_AlbumEntry boolean \void. \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $album $catch deletePhotoEntry deletePhotoEntry Delete a PhotoEntry. \Zend_Gdata_Photos_PhotoEntry boolean \void. \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $photo $catch deleteCommentEntry deleteCommentEntry Delete a CommentEntry. \Zend_Gdata_Photos_CommentEntry boolean \void. \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $comment $catch deleteTagEntry deleteTagEntry Delete a TagEntry. \Zend_Gdata_Photos_TagEntry boolean \void. \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException $tag $catch Name of argument $uri does not match with the DocBlock's name $url in insertAlbumEntry() Parameter $url could not be found in insertAlbumEntry() Name of argument $uri does not match with the DocBlock's name $url in insertPhotoEntry() Parameter $url could not be found in insertPhotoEntry() Name of argument $uri does not match with the DocBlock's name $url in insertTagEntry() Parameter $url could not be found in insertTagEntry() Name of argument $uri does not match with the DocBlock's name $url in insertCommentEntry() Parameter $url could not be found in insertCommentEntry() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/HttpClient.php Zend_Gdata_HttpClient Zend/Version.php Zend_Version Zend/Gdata/App/HttpException.php Zend/Gdata/App/AuthException.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/HttpException.php Zend_Gdata_AuthSub \Zend_Gdata_AuthSub Wrapper around Zend_Http_Client to facilitate Google's "Account Authentication Proxy for Web-Based Applications". AUTHSUB_REQUEST_URI AUTHSUB_REQUEST_URI 'https://www.google.com/accounts/AuthSubRequest' AUTHSUB_SESSION_TOKEN_URI AUTHSUB_SESSION_TOKEN_URI 'https://www.google.com/accounts/AuthSubSessionToken' AUTHSUB_REVOKE_TOKEN_URI AUTHSUB_REVOKE_TOKEN_URI 'https://www.google.com/accounts/AuthSubRevokeToken' AUTHSUB_TOKEN_INFO_URI AUTHSUB_TOKEN_INFO_URI 'https://www.google.com/accounts/AuthSubTokenInfo' getAuthSubTokenUri getAuthSubTokenUri Creates a URI to request a single-use AuthSub token. string string int int string $next $scope $secure 0 $session 0 $request_uri self::AUTHSUB_REQUEST_URI getAuthSubSessionToken getAuthSubSessionToken Upgrades a single use token to a session token string \Zend_Http_Client string string \Zend_Gdata_App_AuthException \Zend_Gdata_App_HttpException $token $client null $request_uri self::AUTHSUB_SESSION_TOKEN_URI AuthSubRevokeToken AuthSubRevokeToken Revoke a token string \Zend_Http_Client string boolean \Zend_Gdata_App_HttpException $token $client null $request_uri self::AUTHSUB_REVOKE_TOKEN_URI getAuthSubTokenInfo getAuthSubTokenInfo get token information string \Zend_Http_Client string $token $client null $request_uri self::AUTHSUB_TOKEN_INFO_URI getHttpClient getHttpClient Retrieve a HTTP client object with AuthSub credentials attached as the Authorization header string \Zend_Gdata_HttpClient $token $client null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media.php Zend/Gdata/YouTube/VideoEntry.php Zend/Gdata/YouTube/VideoFeed.php Zend/Gdata/YouTube/CommentFeed.php Zend/Gdata/YouTube/PlaylistListFeed.php Zend/Gdata/YouTube/SubscriptionFeed.php Zend/Gdata/YouTube/ContactFeed.php Zend/Gdata/YouTube/PlaylistVideoFeed.php Zend/Gdata/YouTube/ActivityFeed.php Zend/Gdata/YouTube/InboxFeed.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Media Zend_Gdata_YouTube \Zend_Gdata_YouTube Service class for interacting with the YouTube Data API. AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'youtube' CLIENTLOGIN_URL CLIENTLOGIN_URL 'https://www.google.com/youtube/accounts/ClientLogin' STANDARD_TOP_RATED_URI STANDARD_TOP_RATED_URI 'https://gdata.youtube.com/feeds/api/standardfeeds/top_rated' STANDARD_MOST_VIEWED_URI STANDARD_MOST_VIEWED_URI 'https://gdata.youtube.com/feeds/api/standardfeeds/most_viewed' STANDARD_RECENTLY_FEATURED_URI STANDARD_RECENTLY_FEATURED_URI 'https://gdata.youtube.com/feeds/api/standardfeeds/recently_featured' STANDARD_WATCH_ON_MOBILE_URI STANDARD_WATCH_ON_MOBILE_URI 'https://gdata.youtube.com/feeds/api/standardfeeds/watch_on_mobile' STANDARD_TOP_RATED_URI_V2 STANDARD_TOP_RATED_URI_V2 'https://gdata.youtube.com/feeds/api/standardfeeds/top_rated' STANDARD_MOST_VIEWED_URI_V2 STANDARD_MOST_VIEWED_URI_V2 'https://gdata.youtube.com/feeds/api/standardfeeds/most_viewed' STANDARD_RECENTLY_FEATURED_URI_V2 STANDARD_RECENTLY_FEATURED_URI_V2 'https://gdata.youtube.com/feeds/api/standardfeeds/recently_featured' STANDARD_WATCH_ON_MOBILE_URI_V2 STANDARD_WATCH_ON_MOBILE_URI_V2 'https://gdata.youtube.com/feeds/api/standardfeeds/watch_on_mobile' USER_URI USER_URI 'https://gdata.youtube.com/feeds/api/users' VIDEO_URI VIDEO_URI 'https://gdata.youtube.com/feeds/api/videos' PLAYLIST_REL PLAYLIST_REL 'http://gdata.youtube.com/schemas/2007#playlist' USER_UPLOADS_REL USER_UPLOADS_REL 'http://gdata.youtube.com/schemas/2007#user.uploads' USER_PLAYLISTS_REL USER_PLAYLISTS_REL 'http://gdata.youtube.com/schemas/2007#user.playlists' USER_SUBSCRIPTIONS_REL USER_SUBSCRIPTIONS_REL 'http://gdata.youtube.com/schemas/2007#user.subscriptions' USER_CONTACTS_REL USER_CONTACTS_REL 'http://gdata.youtube.com/schemas/2007#user.contacts' USER_FAVORITES_REL USER_FAVORITES_REL 'http://gdata.youtube.com/schemas/2007#user.favorites' VIDEO_RESPONSES_REL VIDEO_RESPONSES_REL 'http://gdata.youtube.com/schemas/2007#video.responses' VIDEO_RATINGS_REL VIDEO_RATINGS_REL 'http://gdata.youtube.com/schemas/2007#video.ratings' VIDEO_COMPLAINTS_REL VIDEO_COMPLAINTS_REL 'http://gdata.youtube.com/schemas/2007#video.complaints' ACTIVITY_FEED_URI ACTIVITY_FEED_URI 'https://gdata.youtube.com/feeds/api/events' FRIEND_ACTIVITY_FEED_URI FRIEND_ACTIVITY_FEED_URI 'https://gdata.youtube.com/feeds/api/users/default/friendsactivity' IN_REPLY_TO_SCHEME IN_REPLY_TO_SCHEME 'http://gdata.youtube.com/schemas/2007#in-reply-to' The URI of the in-reply-to schema for comments in reply to other comments. string INBOX_FEED_URI INBOX_FEED_URI 'https://gdata.youtube.com/feeds/api/users/default/inbox' The URI of the inbox feed for the currently authenticated user. string ACTIVITY_FEED_MAX_USERS ACTIVITY_FEED_MAX_USERS 20 The maximum number of users for which activity can be requested for, as enforced by the API. integer FAVORITES_URI_SUFFIX FAVORITES_URI_SUFFIX 'favorites' The suffix for a feed of favorites. string UPLOADS_URI_SUFFIX UPLOADS_URI_SUFFIX 'uploads' The suffix for the user's upload feed. string RESPONSES_URI_SUFFIX RESPONSES_URI_SUFFIX 'responses' The suffix for a feed of video responses. string RELATED_URI_SUFFIX RELATED_URI_SUFFIX 'related' The suffix for a feed of related videos. string INBOX_URI_SUFFIX INBOX_URI_SUFFIX 'inbox' The suffix for a feed of messages (inbox entries). string $namespaces array(array('yt', 'http://gdata.youtube.com/schemas/2007', 1, 0), array('georss', 'http://www.georss.org/georss', 1, 0), array('gml', 'http://www.opengis.net/gml', 1, 0), array('media', 'http://search.yahoo.com/mrss/', 1, 0)) Namespaces used for Zend_Gdata_YouTube array __construct __construct Create Zend_Gdata_YouTube object \Zend_Http_Client string string string $client null $applicationId 'MyCompany-MyApp-1.0' $clientId null $developerKey null setHttpClient setHttpClient Set the Zend_Http_Client object used for communication \Zend_Http_Client \Zend_Gdata_App_HttpException \Zend_Gdata_App $client $applicationId 'MyCompany-MyApp-1.0' $clientId null $developerKey null getVideoFeed getVideoFeed Retrieves a feed of videos. mixed \Zend_Gdata_YouTube_VideoFeed $location null getVideoEntry getVideoEntry Retrieves a specific video entry. mixed mixed boolean \Zend_Gdata_App_HttpException \Zend_Gdata_YouTube_VideoEntry $videoId null $location null $fullEntry false getFullVideoEntry getFullVideoEntry Retrieves a video entry from the user's upload feed. mixed \Zend_Gdata_App_HttpException \Zend_Gdata_YouTube_VideoEntry null $videoId getRelatedVideoFeed getRelatedVideoFeed Retrieves a feed of videos related to the specified video ID. string mixed \Zend_Gdata_YouTube_VideoFeed $videoId null $location null getVideoResponseFeed getVideoResponseFeed Retrieves a feed of video responses related to the specified video ID. string mixed \Zend_Gdata_YouTube_VideoFeed $videoId null $location null getVideoCommentFeed getVideoCommentFeed Retrieves a feed of comments related to the specified video ID. string mixed \Zend_Gdata_YouTube_CommentFeed $videoId null $location null getTopRatedVideoFeed getTopRatedVideoFeed Retrieves a feed of comments related to the specified video ID. mixed \Zend_Gdata_YouTube_CommentFeed $location null getMostViewedVideoFeed getMostViewedVideoFeed Retrieves a feed of the most viewed videos. mixed \Zend_Gdata_YouTube_VideoFeed $location null getRecentlyFeaturedVideoFeed getRecentlyFeaturedVideoFeed Retrieves a feed of recently featured videos. mixed \Zend_Gdata_YouTube_VideoFeed $location null getWatchOnMobileVideoFeed getWatchOnMobileVideoFeed Retrieves a feed of videos recently featured for mobile devices. <p>These videos will have RTSP links in the $entry->mediaGroup->content</p> mixed \Zend_Gdata_YouTube_VideoFeed $location null getPlaylistListFeed getPlaylistListFeed Retrieves a feed which lists a user's playlist string mixed \Zend_Gdata_YouTube_PlaylistListFeed $user null $location null getPlaylistVideoFeed getPlaylistVideoFeed Retrieves a feed of videos in a particular playlist mixed \Zend_Gdata_YouTube_PlaylistVideoFeed $location getSubscriptionFeed getSubscriptionFeed Retrieves a feed of a user's subscriptions string mixed \Zend_Gdata_YouTube_SubscriptionListFeed $user null $location null getContactFeed getContactFeed Retrieves a feed of a user's contacts string mixed \Zend_Gdata_YouTube_ContactFeed $user null $location null getUserUploads getUserUploads Retrieves a user's uploads string mixed \Zend_Gdata_YouTube_VideoFeed $user null $location null getUserFavorites getUserFavorites Retrieves a user's favorites string mixed \Zend_Gdata_YouTube_VideoFeed $user null $location null getUserProfile getUserProfile Retrieves a user's profile as an entry string mixed \Zend_Gdata_YouTube_UserProfileEntry $user null $location null parseFormUploadTokenResponse parseFormUploadTokenResponse Helper function for parsing a YouTube token response string \Zend_Gdata_App_Exception array $response getFormUploadToken getFormUploadToken Retrieves a YouTube token \Zend_Gdata_YouTube_VideoEntry string \Zend_Gdata_App_Exception array $videoEntry $url 'https://gdata.youtube.com/action/GetUploadToken' getActivityForUser getActivityForUser Retrieves the activity feed for users mixed \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_ActivityFeed $username getFriendActivityForCurrentUser getFriendActivityForCurrentUser Retrieve the activity of the currently authenticated users friend. \Zend_Gdata_App_Exception \Zend_Gdata_YouTube_ActivityFeed getInboxFeedForCurrentUser getInboxFeedForCurrentUser Retrieve a feed of messages in the currently authenticated user's inbox. \Zend_Gdata_App_Exception \Zend_Gdata_YouTube_InboxFeed null sendVideoMessage sendVideoMessage Send a video message. <p>Note: Either a Zend_Gdata_YouTube_VideoEntry or a valid video ID must be provided.</p> string \Zend_Gdata_YouTube_VideoEntry string string \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_YouTube_InboxEntry null $body $videoEntry null $videoId null $recipientUserName replyToCommentEntry replyToCommentEntry Post a comment in reply to an existing comment \Zend_Gdata_YouTube_CommentEntry string \Zend_Gdata_YouTube_CommentEntry $commentEntry $commentText there seems to be a bug where v1 inbox entries dont Argument $applicationId is missing from the Docblock of setHttpClient() Argument $clientId is missing from the Docblock of setHttpClient() Argument $developerKey is missing from the Docblock of setHttpClient() Name of argument $videoId does not match with the DocBlock's name $videoID in getFullVideoEntry() Parameter $videoID could not be found in getFullVideoEntry() Name of argument $username does not match with the DocBlock's name $usernames in getActivityForUser() Parameter $usernames could not be found in getActivityForUser() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend_Gdata_MimeBodyString \Zend_Gdata_MimeBodyString A wrapper for strings for buffered reading. $_sourceString '' The source string. string $_bytesRead 0 The size of the MIME message. integer __construct __construct Create a new MimeBodyString object. string $sourceString read read Read the next chunk of the string. integer string $bytesRequested getSize getSize The length of the string. int Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_Recurrence \Zend_Gdata_Extension_Recurrence Represents the gd:recurrence element $_rootElement 'recurrence' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Feed.php Zend/Gdata/Extension/When.php \Zend_Gdata_Extension Zend_Gdata_Extension_OriginalEvent \Zend_Gdata_Extension_OriginalEvent Represents the gd:originalEvent element $_rootElement 'originalEvent' $_id null $_href null $_when null __construct __construct $id null $href null $when null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute takeChildFromDOM takeChildFromDOM $child getId getId setId setId $value getHref getHref setHref setHref $value getWhen getWhen setWhen setWhen $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_id No DocBlock was found for property $_href No DocBlock was found for property $_when No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method getId() No DocBlock was found for method setId() No DocBlock was found for method getHref() No DocBlock was found for method setHref() No DocBlock was found for method getWhen() No DocBlock was found for method setWhen() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Extension/Reminder.php \Zend_Gdata_Extension Zend_Gdata_Extension_When \Zend_Gdata_Extension_When Represents the gd:when element $_rootElement 'when' $_reminders array() $_startTime null $_valueString null $_endTime null __construct __construct $startTime null $endTime null $valueString null $reminders null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child takeAttributeFromDOM takeAttributeFromDOM $attribute __toString __toString getStartTime getStartTime setStartTime setStartTime $value getEndTime getEndTime setEndTime setEndTime $value getValueString getValueString setValueString setValueString $value getReminders getReminders setReminders setReminders $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_reminders No DocBlock was found for property $_startTime No DocBlock was found for property $_valueString No DocBlock was found for property $_endTime No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method takeAttributeFromDOM() No DocBlock was found for method __toString() No DocBlock was found for method getStartTime() No DocBlock was found for method setStartTime() No DocBlock was found for method getEndTime() No DocBlock was found for method setEndTime() No DocBlock was found for method getValueString() No DocBlock was found for method setValueString() No DocBlock was found for method getReminders() No DocBlock was found for method setReminders() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Extension/FeedLink.php \Zend_Gdata_Extension Zend_Gdata_Extension_Comments \Zend_Gdata_Extension_Comments Represents the gd:comments element $_rootElement 'comments' $_rel null $_feedLink null __construct __construct $rel null $feedLink null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child takeAttributeFromDOM takeAttributeFromDOM $attribute getRel getRel setRel setRel $value getFeedLink getFeedLink setFeedLink setFeedLink $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rel No DocBlock was found for property $_feedLink No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method takeAttributeFromDOM() No DocBlock was found for method getRel() No DocBlock was found for method setRel() No DocBlock was found for method getFeedLink() No DocBlock was found for method setFeedLink() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_AttendeeStatus \Zend_Gdata_Extension_AttendeeStatus Data model class to represent an attendee's status (gd:attendeeStatus) $_rootElement 'attendeeStatus' $_value null __construct __construct Constructs a new Zend_Gdata_Extension_AttendeeStatus object. string $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's Value attribute. string setValue setValue Set the value for this element's Value attribute. string \Zend_Gdata_Extension_Visibility $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_Visibility \Zend_Gdata_Extension_Visibility Data model class to represent an entry's visibility $_rootElement 'visibility' $_value null __construct __construct Constructs a new Zend_Gdata_Extension_Visibility object. bool $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's Value attribute. bool setValue setValue Set the value for this element's Value attribute. bool \Zend_Gdata_Extension_Visibility $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Extension/AttendeeStatus.php Zend/Gdata/Extension/AttendeeType.php Zend/Gdata/Extension/EntryLink.php \Zend_Gdata_Extension Zend_Gdata_Extension_Who \Zend_Gdata_Extension_Who Data model class to represent a participant $_rootElement 'who' $_email null $_rel null $_valueString null $_attendeeStatus null $_attendeeType null $_entryLink null __construct __construct Constructs a new Zend_Gdata_Extension_Who object. string string string \Zend_Gdata_Extension_AttendeeStatus \Zend_Gdata_Extension_AttendeeType string $email null $rel null $valueString null $attendeeStatus null $attendeeType null $entryLink null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child __toString __toString Retrieves a human readable string describing this attribute's value. string getValueString getValueString Get the value for this element's ValueString attribute. string setValueString setValueString Set the value for this element's ValueString attribute. string \Zend_Gdata_Extension_Who $value getEmail getEmail Get the value for this element's Email attribute. string setEmail setEmail Set the value for this element's Email attribute. string \Zend_Gdata_Extension_Who $value getRel getRel Get the value for this element's Rel attribute. string setRel setRel Set the value for this element's Rel attribute. string \Zend_Gdata_Extension_Who $value getAttendeeStatus getAttendeeStatus Get this entry's AttendeeStatus element. \Zend_Gdata_Extension_AttendeeStatus setAttendeeStatus setAttendeeStatus Set the child's AttendeeStatus element. \Zend_Gdata_Extension_AttendeeStatus \Zend_Gdata_Extension_Who $value getAttendeeType getAttendeeType Get this entry's AttendeeType element. \Zend_Gdata_Extension_AttendeeType setAttendeeType setAttendeeType Set the child's AttendeeType element. \Zend_Gdata_Extension_AttendeeType \Zend_Gdata_Extension_Who $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_email No DocBlock was found for property $_rel No DocBlock was found for property $_valueString No DocBlock was found for property $_attendeeStatus No DocBlock was found for property $_attendeeType No DocBlock was found for property $_entryLink Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_Rating \Zend_Gdata_Extension_Rating Implements the gd:rating element $_rootElement 'rating' $_min null $_max null $_numRaters null $_average null $_value null __construct __construct Constructs a new Zend_Gdata_Extension_Rating object. integer integer integer integer integer $average null $min null $max null $numRaters null $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getMin getMin Get the value for this element's min attribute. integer setMin setMin Set the value for this element's min attribute. bool \Zend_Gdata_Extension_Rating $value getNumRaters getNumRaters Get the value for this element's numRaters attribute. integer setNumRaters setNumRaters Set the value for this element's numRaters attribute. bool \Zend_Gdata_Extension_Rating $value getAverage getAverage Get the value for this element's average attribute. integer setAverage setAverage Set the value for this element's average attribute. bool \Zend_Gdata_Extension_Rating $value getMax getMax Get the value for this element's max attribute. integer setMax setMax Set the value for this element's max attribute. bool \Zend_Gdata_Extension_Rating $value getValue getValue Get the value for this element's value attribute. integer setValue setValue Set the value for this element's value attribute. bool \Zend_Gdata_Extension_Rating $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_min No DocBlock was found for property $_max No DocBlock was found for property $_numRaters No DocBlock was found for property $_average No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Extension/EntryLink.php Zend/Gdata/Extension/OriginalEvent.php \Zend_Gdata_Extension Zend_Gdata_Extension_RecurrenceException \Zend_Gdata_Extension_RecurrenceException Data model class to represent an entry's recurrenceException $_rootElement 'recurrenceException' $_specialized null $_entryLink null $_originalEvent null __construct __construct Constructs a new Zend_Gdata_Extension_RecurrenceException object. bool \Zend_Gdata_EntryLink \Zend_Gdata_OriginalEvent $specialized null $entryLink null $originalEvent null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getSpecialized getSpecialized Get the value for this element's Specialized attribute. bool setSpecialized setSpecialized Set the value for this element's Specialized attribute. bool \Zend_Gdata_Extension_RecurrenceException $value getEntryLink getEntryLink Get the value for this element's EntryLink attribute. \Zend_Gdata_Extension_EntryLink setEntryLink setEntryLink Set the value for this element's EntryLink attribute. \Zend_Gdata_Extension_EntryLink \Zend_Gdata_Extension_RecurrenceException $value getOriginalEvent getOriginalEvent Get the value for this element's Specialized attribute. \Zend_Gdata_Extension_OriginalEvent setOriginalEvent setOriginalEvent Set the value for this element's Specialized attribute. \Zend_Gdata_Extension_OriginalEvent \Zend_Gdata_Extension_RecurrenceException $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_specialized No DocBlock was found for property $_entryLink No DocBlock was found for property $_originalEvent Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_OpenSearchItemsPerPage \Zend_Gdata_Extension_OpenSearchItemsPerPage Represents the openSearch:itemsPerPage element $_rootElement 'itemsPerPage' $_rootNamespace 'openSearch' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_Reminder \Zend_Gdata_Extension_Reminder Implements the gd:reminder element used to set/retrieve notifications $_rootElement 'reminder' $_absoluteTime null $_method null $_days null $_hours null $_minutes null __construct __construct $absoluteTime null $method null $days null $hours null $minutes null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute __toString __toString getAbsoluteTime getAbsoluteTime setAbsoluteTime setAbsoluteTime $value getDays getDays setDays setDays $value getHours getHours setHours setHours $value getMinutes getMinutes setMinutes setMinutes $value getMethod getMethod setMethod setMethod $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_absoluteTime No DocBlock was found for property $_method No DocBlock was found for property $_days No DocBlock was found for property $_hours No DocBlock was found for property $_minutes No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No DocBlock was found for method __toString() No DocBlock was found for method getAbsoluteTime() No DocBlock was found for method setAbsoluteTime() No DocBlock was found for method getDays() No DocBlock was found for method setDays() No DocBlock was found for method getHours() No DocBlock was found for method setHours() No DocBlock was found for method getMinutes() No DocBlock was found for method setMinutes() No DocBlock was found for method getMethod() No DocBlock was found for method setMethod() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_OpenSearchStartIndex \Zend_Gdata_Extension_OpenSearchStartIndex Represents the openSeach:startIndex element $_rootElement 'startIndex' $_rootNamespace 'openSearch' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Extension/EntryLink.php \Zend_Gdata_Extension Zend_Gdata_Extension_Where \Zend_Gdata_Extension_Where Data model class to represent a location (gd:where element) $_rootElement 'where' $_label null $_rel null $_valueString null $_entryLink null __construct __construct $valueString null $label null $rel null $entryLink null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child __toString __toString getLabel getLabel setLabel setLabel $value getRel getRel setRel setRel $value getValueString getValueString setValueString setValueString $value getEntryLink getEntryLink setEntryLink setEntryLink $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_label No DocBlock was found for property $_rel No DocBlock was found for property $_valueString No DocBlock was found for property $_entryLink No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No DocBlock was found for method __toString() No DocBlock was found for method getLabel() No DocBlock was found for method setLabel() No DocBlock was found for method getRel() No DocBlock was found for method setRel() No DocBlock was found for method getValueString() No DocBlock was found for method setValueString() No DocBlock was found for method getEntryLink() No DocBlock was found for method setEntryLink() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_OpenSearchTotalResults \Zend_Gdata_Extension_OpenSearchTotalResults Represents the openSearch:totalResults element $_rootElement 'totalResults' $_rootNamespace 'openSearch' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_Transparency \Zend_Gdata_Extension_Transparency Data model class to represent an entry's transparency $_rootElement 'transparency' $_value null __construct __construct Constructs a new Zend_Gdata_Extension_Transparency object. bool $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's Value attribute. bool setValue setValue Set the value for this element's Value attribute. bool \Zend_Gdata_Extension_Transparency $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Entry.php \Zend_Gdata_Extension Zend_Gdata_Extension_EntryLink \Zend_Gdata_Extension_EntryLink Represents the gd:entryLink element $_rootElement 'entryLink' $_href null $_readOnly null $_rel null $_entry null __construct __construct $href null $rel null $readOnly null $entry null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child takeAttributeFromDOM takeAttributeFromDOM $attribute getHref getHref string setHref setHref $value getReadOnly getReadOnly setReadOnly setReadOnly $value getRel getRel setRel setRel $value getEntry getEntry setEntry setEntry $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_href No DocBlock was found for property $_readOnly No DocBlock was found for property $_rel No DocBlock was found for property $_entry No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method takeAttributeFromDOM() No short description for method getHref() No DocBlock was found for method setHref() No DocBlock was found for method getReadOnly() No DocBlock was found for method setReadOnly() No DocBlock was found for method getRel() No DocBlock was found for method setRel() No DocBlock was found for method getEntry() No DocBlock was found for method setEntry() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Feed.php \Zend_Gdata_Extension Zend_Gdata_Extension_FeedLink \Zend_Gdata_Extension_FeedLink Represents the gd:feedLink element $_rootElement 'feedLink' $_countHint null $_href null $_readOnly null $_rel null $_feed null __construct __construct $href null $rel null $countHint null $readOnly null $feed null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child takeAttributeFromDOM takeAttributeFromDOM $attribute getHref getHref string setHref setHref $value getReadOnly getReadOnly setReadOnly setReadOnly $value getRel getRel setRel setRel $value getFeed getFeed setFeed setFeed $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_countHint No DocBlock was found for property $_href No DocBlock was found for property $_readOnly No DocBlock was found for property $_rel No DocBlock was found for property $_feed No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method takeAttributeFromDOM() No short description for method getHref() No DocBlock was found for method setHref() No DocBlock was found for method getReadOnly() No DocBlock was found for method setReadOnly() No DocBlock was found for method getRel() No DocBlock was found for method setRel() No DocBlock was found for method getFeed() No DocBlock was found for method setFeed() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_AttendeeType \Zend_Gdata_Extension_AttendeeType Data model class to represent an attendee's type (gd:attendeeType) $_rootElement 'attendeeType' $_value null __construct __construct Constructs a new Zend_Gdata_Extension_AttendeeType object. string $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's Value attribute. string setValue setValue Set the value for this element's Value attribute. string \Zend_Gdata_Extension_Visibility $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_EventStatus \Zend_Gdata_Extension_EventStatus Represents the gd:eventStatus element $_rootElement 'eventStatus' $_value null __construct __construct $value null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute getValue getValue Get the value for this element's Value attribute. string setValue setValue Set the value for this element's Value attribute. string \Zend_Gdata_Extension_Visibility $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootElement No DocBlock was found for property $_value No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Extension_ExtendedProperty \Zend_Gdata_Extension_ExtendedProperty Data model for gd:extendedProperty element, used by some Gdata services to implement arbitrary name/value pair storage $_rootElement 'extendedProperty' $_name null $_value null __construct __construct $name null $value null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute __toString __toString getName getName setName setName $value getValue getValue setValue setValue $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_name No DocBlock was found for property $_value No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No DocBlock was found for method __toString() No DocBlock was found for method getName() No DocBlock was found for method setName() No DocBlock was found for method getValue() No DocBlock was found for method setValue() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Feed.php Zend_Gdata_Feed Zend/Http/Client.php Zend_Gdata_Http_Client Zend/Version.php Zend_Version Zend/Gdata/App/MediaSource.php Zend_Gdata_App_MediaSource Zend/Uri/Http.php Zend_Uri/Http Zend/Gdata/App/HttpException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Http/Client/Exception.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Uri/Http.php Zend/Gdata/HttpAdapterStreamingProxy.php Zend/Gdata/HttpAdapterStreamingSocket.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/HttpException.php Zend/Loader.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Loader.php Zend/Loader.php Zend/Loader.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend_Gdata_App \Zend_Gdata_App Provides Atom Publishing Protocol (APP) functionality. <p>This class and all other components of Zend_Gdata_App are designed to work independently from other Zend_Gdata components in order to interact with generic APP services.</p> DEFAULT_MAJOR_PROTOCOL_VERSION DEFAULT_MAJOR_PROTOCOL_VERSION 1 Default major protocol version. DEFAULT_MINOR_PROTOCOL_VERSION DEFAULT_MINOR_PROTOCOL_VERSION null Default minor protocol version. $_httpClient Client object used to communicate \Zend_Http_Client $_staticHttpClient null Client object used to communicate in static context \Zend_Http_Client $_httpMethodOverride false Override HTTP PUT and DELETE request methods? boolean $_gzipEnabled false Enable gzipped responses? boolean $_verboseExceptionMessages true Use verbose exception messages. <p>In the case of HTTP errors, use the body of the HTTP response in the exception message.</p> boolean $_defaultPostUri null Default URI to which to POST. string $_registeredPackages array('Zend_Gdata_App_Extension', 'Zend_Gdata_App') Packages to search for classes when using magic __call method, in order. array $_maxRedirects 5 Maximum number of redirects to follow during HTTP operations int $_majorProtocolVersion Indicates the major protocol version that should be used. <p>At present, recognized values are either 1 or 2. However, any integer value >= 1 is considered valid.</p> <p>Under most circumtances, this will be automatically set by Zend_Gdata_App subclasses.</p> $_minorProtocolVersion Indicates the minor protocol version that should be used. <p>Can be set to either an integer >= 0, or NULL if no minor version should be sent to the server.</p> <p>At present, this field is not used by any Google services, but may be used in the future.</p> <p>Under most circumtances, this will be automatically set by Zend_Gdata_App subclasses.</p> $_useObjectMapping true Whether we want to use XML to object mapping when fetching data. boolean __construct __construct Create Gdata object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' registerPackage registerPackage Adds a Zend Framework package to the $_registeredPackages array. <p>This array is searched when using the magic __call method below to instantiante new objects.</p> string void $name getFeed getFeed Retrieve feed as string or object string string string \Zend_Gdata_App_Feed $uri $className 'Zend_Gdata_App_Feed' getEntry getEntry Retrieve entry as string or object string string string \Zend_Gdata_App_Entry $uri $className 'Zend_Gdata_App_Entry' getHttpClient getHttpClient Get the Zend_Http_Client object used for communication \Zend_Http_Client setHttpClient setHttpClient Set the Zend_Http_Client object used for communication \Zend_Http_Client \Zend_Gdata_App_HttpException \Zend_Gdata_App $client $applicationId 'MyCompany-MyApp-1.0' setStaticHttpClient setStaticHttpClient Set the static HTTP client instance <p>Sets the static HTTP client object to use for retrieving the feed.</p> \Zend_Http_Client void $httpClient \Zend_Http_Client getStaticHttpClient getStaticHttpClient Gets the HTTP client object. <p>If none is set, a new Zend_Http_Client will be used.</p> \Zend_Http_Client setHttpMethodOverride setHttpMethodOverride Toggle using POST instead of PUT and DELETE HTTP methods <p>Some feed implementations do not accept PUT and DELETE HTTP methods, or they can't be used because of proxies or other measures. This allows turning on using POST where PUT and DELETE would normally be used; in addition, an X-Method-Override header will be sent with a value of PUT or DELETE as appropriate.</p> boolean void $override true getHttpMethodOverride getHttpMethodOverride Get the HTTP override state boolean setGzipEnabled setGzipEnabled Toggle requesting gzip encoded responses boolean void $enabled false getGzipEnabled getGzipEnabled Get the HTTP override state boolean getVerboseExceptionMessages getVerboseExceptionMessages Get whether to use verbose exception messages <p>In the case of HTTP errors, use the body of the HTTP response in the exception message.</p> boolean setVerboseExceptionMessages setVerboseExceptionMessages Set whether to use verbose exception messages <p>In the case of HTTP errors, use the body of the HTTP response in the exception message.</p> boolean $verbose setMaxRedirects setMaxRedirects Set the maximum number of redirects to follow during HTTP operations int void $maxRedirects getMaxRedirects getMaxRedirects Get the maximum number of redirects to follow during HTTP operations int setMajorProtocolVersion setMajorProtocolVersion Set the major protocol version that should be used. <p>Values &lt; 1 will cause a Zend_Gdata_App_InvalidArgumentException to be thrown.</p> int \Zend_Gdata_App_InvalidArgumentException $value getMajorProtocolVersion getMajorProtocolVersion Get the major protocol version that is in use. int setMinorProtocolVersion setMinorProtocolVersion Set the minor protocol version that should be used. <p>If set to NULL, no minor protocol version will be sent to the server. Values &lt; 0 will cause a Zend_Gdata_App_InvalidArgumentException to be thrown.</p> \(int \NULL) \Zend_Gdata_App_InvalidArgumentException $value getMinorProtocolVersion getMinorProtocolVersion Get the minor protocol version that is in use. \(int \NULL) prepareRequest prepareRequest Provides pre-processing for HTTP requests to APP services. <ol> <li>Checks the $data element and, if it's an entry, extracts the XML, multipart data, edit link (PUT,DELETE), etc.</li> <li>If $data is a string, sets the default content-type header as 'application/atom+xml' if it's not already been set.</li> <li>Adds a x-http-method override header and changes the HTTP method to 'POST' if necessary as per getHttpMethodOverride()</li> </ol> string string array mixed string array $method $url null $headers array() $data null $contentTypeOverride null performHttpRequest performHttpRequest Performs a HTTP request using the specified method string string array string string int \Zend_Http_Response $method $url $headers null $body null $contentType null $remainingRedirects null import import Imports a feed located at $uri. string \Zend_Http_Client string bool \Zend_Gdata_App_Exception string \Zend_Gdata_App_Feed $uri $client null $className 'Zend_Gdata_App_Feed' $useObjectMapping true importUrl importUrl Imports the specified URL (non-statically). string string array \Zend_Gdata_App_Exception string \Zend_Gdata_App_Feed $url $className 'Zend_Gdata_App_Feed' $extraHeaders array() importString importString Imports a feed represented by $string. string string integer integer \Zend_Gdata_App_Exception \Zend_Gdata_App_Feed $string $className 'Zend_Gdata_App_Feed' $majorProtocolVersion null $minorProtocolVersion null importFile importFile Imports a feed from a file located at $filename. string string string \Zend_Gdata_App_Exception \Zend_Gdata_App_Feed $filename $className 'Zend_Gdata_App_Feed' $useIncludePath false get get GET a URI using client object. string array \Zend_Gdata_App_HttpException \Zend_Http_Response $uri $extraHeaders array() post post POST data with client object mixed string array string array \Zend_Http_Response \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_App_InvalidArgumentException $data $uri null $remainingRedirects null $contentType null $extraHeaders null put put PUT data with client object mixed string array string array \Zend_Http_Response \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_App_InvalidArgumentException $data $uri null $remainingRedirects null $contentType null $extraHeaders null delete delete DELETE entry with client object mixed void \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_App_InvalidArgumentException $data $remainingRedirects null insertEntry insertEntry Inserts an entry to a given URI and returns the response as a fully formed Entry. mixed string string array \Zend_Gdata_App_Entry $data $uri $className 'Zend_Gdata_App_Entry' $extraHeaders array() updateEntry updateEntry Update an entry mixed string null string null array \Zend_Gdata_App_Entry \Zend_Gdata_App_Exception $data $uri null $className null $extraHeaders array() __call __call Provides a magic factory method to instantiate new objects with shorter syntax than would otherwise be required by the Zend Framework naming conventions. <p>For instance, to construct a new Zend_Gdata_Calendar_Extension_Color, a developer simply needs to do $gCal->newColor(). For this magic constructor, packages are searched in the same order as which they appear in the $_registeredPackages array</p> string array \Zend_Gdata_App_Exception $method $args retrieveAllEntriesForFeed retrieveAllEntriesForFeed Retrieve all entries for a feed, iterating through pages as necessary. <p>Be aware that calling this function on a large dataset will take a significant amount of time to complete. In some cases this may cause execution to timeout without proper precautions in place.</p> object mixed $feed enableRequestDebugLogging enableRequestDebugLogging This method enables logging of requests by changing the Zend_Http_Client_Adapter used for performing the requests. <p>NOTE: This will not work if you have customized the adapter already to use a proxy server or other interface.</p> string $logfile getNextFeed getNextFeed Retrieve next set of results based on a given feed. \Zend_Gdata_App_Feed string \Zend_Gdata_App_Feed null $feed $className null getPreviousFeed getPreviousFeed Retrieve previous set of results based on a given feed. \Zend_Gdata_App_Feed string \Zend_Gdata_App_Feed null $feed $className null generateIfMatchHeaderData generateIfMatchHeaderData Returns the data for an If-Match header based on the current Etag property. <p>If Etags are not supported by the server or cannot be extracted from the data, then null will be returned.</p> boolean string null $data $allowWeek usingObjectMapping usingObjectMapping Determine whether service object is using XML to object mapping. boolean useObjectMapping useObjectMapping Enable/disable the use of XML to object mapping. boolean void $value Argument $applicationId is missing from the Docblock of setHttpClient() Name of argument $majorProtocolVersion does not match with the DocBlock's name $majorProcolVersion in importString() Name of argument $minorProtocolVersion does not match with the DocBlock's name $minorProcolVersion in importString() Parameter $majorProcolVersion could not be found in importString() Parameter $minorProcolVersion could not be found in importString() Name of argument $remainingRedirects does not match with the DocBlock's name $headers in post() Parameter $headers could not be found in post() Name of argument $remainingRedirects does not match with the DocBlock's name $headers in put() Parameter $headers could not be found in put() Argument $remainingRedirects is missing from the Docblock of delete() Name of argument $data does not match with the DocBlock's name $allowWeak in generateIfMatchHeaderData() Argument $allowWeek is missing from the Docblock of generateIfMatchHeaderData() Parameter $allowWeak could not be found in generateIfMatchHeaderData() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php \Zend_Gdata_Entry Zend_Gdata_Books_CollectionEntry \Zend_Gdata_Books_CollectionEntry Describes an entry in a feed of collections __construct __construct Constructor for Zend_Gdata_Books_CollectionEntry which Describes an entry in a feed of collections \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Books_CollectionFeed \Zend_Gdata_Books_CollectionFeed Describes a Book Search collection feed $_entryClassName 'Zend_Gdata_Books_CollectionEntry' The classname for individual feed elements. string __construct __construct Constructor for Zend_Gdata_Books_CollectionFeed which Describes a Book Search collection feed \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Books_Extension_Embeddability \Zend_Gdata_Books_Extension_Embeddability Describes an embeddability $_rootNamespace 'gbs' $_rootElement 'embeddability' $_value null __construct __construct Constructor for Zend_Gdata_Books_Extension_Embeddability which Describes an embeddability. string null $value null getDOM getDOM Retrieves DOMElement which corresponds to this element and all child properties. <p>This is used to build this object back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistance.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Extracts XML attributes from the DOM and converts them to the appropriate object members. \DOMNode $attribute getValue getValue Returns the programmatic value that describes the embeddability of a volume in Google Book Search string null setValue setValue Sets the programmatic value that describes the embeddability of a volume in Google Book Search string null \Zend_Gdata_Books_Extension_Embeddability $value No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Link.php \Zend_Gdata_App_Extension_Link Zend_Gdata_Books_Extension_BooksLink \Zend_Gdata_Books_Extension_BooksLink Extends the base Link class with Books extensions __construct __construct Constructor for Zend_Gdata_Books_Extension_BooksLink which Extends the base Link class with Books extensions string null string null string null string null string null string null $href null $rel null $type null $hrefLang null $title null $length null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Category.php \Zend_Gdata_App_Extension_Category Zend_Gdata_Books_Extension_BooksCategory \Zend_Gdata_Books_Extension_BooksCategory Describes a books category __construct __construct Constructor for Zend_Gdata_Books_Extension_BooksCategory which Describes a books category string null string null string null $term null $scheme null $label null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Books_Extension_Viewability \Zend_Gdata_Books_Extension_Viewability Describes a viewability $_rootNamespace 'gbs' $_rootElement 'viewability' $_value null __construct __construct Constructor for Zend_Gdata_Books_Extension_Viewability which Describes a viewability string null $value null getDOM getDOM Retrieves DOMElement which corresponds to this element and all child properties. <p>This is used to build this object back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistance.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Extracts XML attributes from the DOM and converts them to the appropriate object members. \DOMNode $attribute getValue getValue Returns the programmatic value that describes the viewability of a volume in Google Book Search string setValue setValue Sets the programmatic value that describes the viewability of a volume in Google Book Search string \Zend_Gdata_Books_Extension_Viewability $value No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Books/Extension/BooksLink.php \Zend_Gdata_Books_Extension_BooksLink Zend_Gdata_Books_Extension_InfoLink \Zend_Gdata_Books_Extension_InfoLink Describes an info link __construct __construct Constructor for Zend_Gdata_Books_Extension_InfoLink which Describes an info link string null string null string null string null string null string null $href null $rel null $type null $hrefLang null $title null $length null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Books_Extension_Review \Zend_Gdata_Books_Extension_Review User-provided review $_rootNamespace 'gbs' $_rootElement 'review' $_lang null $_type null __construct __construct Constructor for Zend_Gdata_Books_Extension_Review which User-provided review string null string null string null $lang null $type null $value null getDOM getDOM Retrieves DOMElement which corresponds to this element and all child properties. <p>This is used to build this object back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistance.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Extracts XML attributes from the DOM and converts them to the appropriate object members. \DOMNode $attribute getLang getLang Returns the language of link title string getType getType Returns the type of text construct (typically 'text', 'html' or 'xhtml') string setLang setLang Sets the language of link title string \Zend_Gdata_Books_Extension_Review $lang setType setType Sets the type of text construct (typically 'text', 'html' or 'xhtml') string \Zend_Gdata_Books_Extension_Review $type No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_lang No DocBlock was found for property $_type Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Books/Extension/BooksLink.php \Zend_Gdata_Books_Extension_BooksLink Zend_Gdata_Books_Extension_AnnotationLink \Zend_Gdata_Books_Extension_AnnotationLink Describes an annotation link __construct __construct Constructor for Zend_Gdata_Books_Extension_AnnotationLink which Describes an annotation link string null string null string null string null string null string null \DOMElement $href null $rel null $type null $hrefLang null $title null $length null Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Books/Extension/BooksLink.php \Zend_Gdata_Books_Extension_BooksLink Zend_Gdata_Books_Extension_ThumbnailLink \Zend_Gdata_Books_Extension_ThumbnailLink Describes a thumbnail link __construct __construct Constructor for Zend_Gdata_Books_Extension_ThumbnailLink which Describes a thumbnail link string null string null string null string null string null string null $href null $rel null $type null $hrefLang null $title null $length null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Books/Extension/BooksLink.php \Zend_Gdata_Books_Extension_BooksLink Zend_Gdata_Books_Extension_PreviewLink \Zend_Gdata_Books_Extension_PreviewLink Describes a preview link __construct __construct Constructor for Zend_Gdata_Books_Extension_PreviewLink which Describes a preview link string null string null string null string null string null string null $href null $rel null $type null $hrefLang null $title null $length null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension/Comments.php Zend/Gdata/DublinCore/Extension/Creator.php Zend/Gdata/DublinCore/Extension/Date.php Zend/Gdata/DublinCore/Extension/Description.php Zend/Gdata/Books/Extension/Embeddability.php Zend/Gdata/DublinCore/Extension/Format.php Zend/Gdata/DublinCore/Extension/Identifier.php Zend/Gdata/DublinCore/Extension/Language.php Zend/Gdata/DublinCore/Extension/Publisher.php Zend/Gdata/Extension/Rating.php Zend/Gdata/Books/Extension/Review.php Zend/Gdata/DublinCore/Extension/Subject.php Zend/Gdata/DublinCore/Extension/Title.php Zend/Gdata/Books/Extension/Viewability.php Zend/Gdata/App/Exception.php \Zend_Gdata_Entry Zend_Gdata_Books_VolumeEntry \Zend_Gdata_Books_VolumeEntry Describes an entry in a feed of Book Search volumes THUMBNAIL_LINK_REL THUMBNAIL_LINK_REL 'http://schemas.google.com/books/2008/thumbnail' PREVIEW_LINK_REL PREVIEW_LINK_REL 'http://schemas.google.com/books/2008/preview' INFO_LINK_REL INFO_LINK_REL 'http://schemas.google.com/books/2008/info' ANNOTATION_LINK_REL ANNOTATION_LINK_REL 'http://schemas.google.com/books/2008/annotation' $_comments null $_creators array() $_dates array() $_descriptions array() $_embeddability null $_formats array() $_identifiers array() $_languages array() $_publishers array() $_rating null $_review null $_subjects array() $_titles array() $_viewability null __construct __construct Constructor for Zend_Gdata_Books_VolumeEntry which Describes an entry in a feed of Book Search volumes \DOMElement $element null getDOM getDOM Retrieves DOMElement which corresponds to this element and all child properties. <p>This is used to build this object back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistance.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual objects of the appropriate type and stores them in this object based upon DOM data. \DOMNode $child getComments getComments Returns the Comments class \Zend_Gdata_Extension_Comments null getCreators getCreators Returns the creators array getDates getDates Returns the dates array getDescriptions getDescriptions Returns the descriptions array getEmbeddability getEmbeddability Returns the embeddability \Zend_Gdata_Books_Extension_Embeddability null getFormats getFormats Returns the formats array getIdentifiers getIdentifiers Returns the identifiers array getLanguages getLanguages Returns the languages array getPublishers getPublishers Returns the publishers array getRating getRating Returns the rating \Zend_Gdata_Extension_Rating null getReview getReview Returns the review \Zend_Gdata_Books_Extension_Review null getSubjects getSubjects Returns the subjects array getTitles getTitles Returns the titles array getViewability getViewability Returns the viewability \Zend_Gdata_Books_Extension_Viewability null setComments setComments Sets the Comments class \Zend_Gdata_Extension_Comments null \Zend_Gdata_Books_VolumeEntry $comments setCreators setCreators Sets the creators array \Zend_Gdata_Books_VolumeEntry $creators setDates setDates Sets the dates array \Zend_Gdata_Books_VolumeEntry $dates setDescriptions setDescriptions Sets the descriptions array \Zend_Gdata_Books_VolumeEntry $descriptions setEmbeddability setEmbeddability Sets the embeddability \Zend_Gdata_Books_Extension_Embeddability null \Zend_Gdata_Books_VolumeEntry $embeddability setFormats setFormats Sets the formats array \Zend_Gdata_Books_VolumeEntry $formats setIdentifiers setIdentifiers Sets the identifiers array \Zend_Gdata_Books_VolumeEntry $identifiers setLanguages setLanguages Sets the languages array \Zend_Gdata_Books_VolumeEntry $languages setPublishers setPublishers Sets the publishers array \Zend_Gdata_Books_VolumeEntry $publishers setRating setRating Sets the rating \Zend_Gdata_Extension_Rating null \Zend_Gdata_Books_VolumeEntry $rating setReview setReview Sets the review \Zend_Gdata_Books_Extension_Review null \Zend_Gdata_Books_VolumeEntry $review setSubjects setSubjects Sets the subjects array \Zend_Gdata_Books_VolumeEntry $subjects setTitles setTitles Sets the titles array \Zend_Gdata_Books_VolumeEntry $titles setViewability setViewability Sets the viewability \Zend_Gdata_Books_Extension_Viewability null \Zend_Gdata_Books_VolumeEntry $viewability getVolumeId getVolumeId Gets the volume ID based upon the atom:id value string \Zend_Gdata_App_Exception getThumbnailLink getThumbnailLink Gets the thumbnail link \Zend_Gdata_App_Extension_link null getPreviewLink getPreviewLink Gets the preview link \Zend_Gdata_App_Extension_Link null getInfoLink getInfoLink Gets the info link \Zend_Gdata_App_Extension_Link null getAnnotationLink getAnnotationLink Gets the annotations link \Zend_Gdata_App_Extension_Link null No DocBlock was found for property $_comments No DocBlock was found for property $_creators No DocBlock was found for property $_dates No DocBlock was found for property $_descriptions No DocBlock was found for property $_embeddability No DocBlock was found for property $_formats No DocBlock was found for property $_identifiers No DocBlock was found for property $_languages No DocBlock was found for property $_publishers No DocBlock was found for property $_rating No DocBlock was found for property $_review No DocBlock was found for property $_subjects No DocBlock was found for property $_titles No DocBlock was found for property $_viewability Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Books.php Zend_Gdata_Books Zend/Gdata/Query.php Zend_Gdata_Query \Zend_Gdata_Query Zend_Gdata_Books_VolumeQuery \Zend_Gdata_Books_VolumeQuery Assists in constructing queries for Books volumes __construct __construct Create Gdata_Books_VolumeQuery object string null $url null setMinViewability setMinViewability Sets the minimum level of viewability of volumes to return in the search results string null \Zend_Gdata_Books_VolumeQuery $value null getMinViewability getMinViewability Minimum viewability of volumes to include in search results string null getQueryUrl getQueryUrl Returns the generated full query URL string Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Books_VolumeFeed \Zend_Gdata_Books_VolumeFeed Describes a Book Search volume feed $_entryClassName 'Zend_Gdata_Books_VolumeEntry' The classname for individual feed elements. string __construct __construct Constructor for Zend_Gdata_Books_VolumeFeed which Describes a Book Search volume feed \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_Extension \Zend_Gdata_Extension Represents a Gdata extension $_rootNamespace 'gd' __construct __construct No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata.php \Zend_Gdata Zend_Gdata_Health \Zend_Gdata_Health Service class for interacting with the Google Health Data API AUTHSUB_PROFILE_FEED_URI AUTHSUB_PROFILE_FEED_URI 'https://www.google.com/health/feeds/profile/default' URIs of the AuthSub/OAuth feeds. AUTHSUB_REGISTER_FEED_URI AUTHSUB_REGISTER_FEED_URI 'https://www.google.com/health/feeds/register/default' CLIENTLOGIN_PROFILELIST_FEED_URI CLIENTLOGIN_PROFILELIST_FEED_URI 'https://www.google.com/health/feeds/profile/list' URIs of the ClientLogin feeds. CLIENTLOGIN_PROFILE_FEED_URI CLIENTLOGIN_PROFILE_FEED_URI 'https://www.google.com/health/feeds/profile/ui' CLIENTLOGIN_REGISTER_FEED_URI CLIENTLOGIN_REGISTER_FEED_URI 'https://www.google.com/health/feeds/register/ui' HEALTH_SERVICE_NAME HEALTH_SERVICE_NAME 'health' Authentication service names for Google Health and the H9 Sandbox. H9_SANDBOX_SERVICE_NAME H9_SANDBOX_SERVICE_NAME 'weaver' __construct __construct Create Zend_Gdata_Health object \Zend_Http_Client string bool $client null $applicationId 'MyCompany-MyApp-1.0' $useH9Sandbox false Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/Analytics/AccountEntry.php Zend/Gdata/Analytics/AccountFeed.php Zend/Gdata/Analytics/DataEntry.php Zend/Gdata/Analytics/DataFeed.php Zend/Gdata/Analytics/DataQuery.php Zend/Gdata/Analytics/AccountQuery.php \Zend_Gdata Zend_Gdata_Analytics \Zend_Gdata_Analytics AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'analytics' ANALYTICS_FEED_URI ANALYTICS_FEED_URI 'https://www.googleapis.com/analytics/v2.4/data' ANALYTICS_ACCOUNT_FEED_URI ANALYTICS_ACCOUNT_FEED_URI 'https://www.googleapis.com/analytics/v2.4/management/accounts' $namespaces array(array('analytics', 'http://schemas.google.com/analytics/2009', 1, 0), array('ga', 'http://schemas.google.com/ga/2009', 1, 0)) __construct __construct Create Gdata object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' getAccountFeed getAccountFeed Retrieve account feed object string \Zend_Uri_Uri \Zend_Gdata_Analytics_AccountFeed $uri self::ANALYTICS_ACCOUNT_FEED_URI getDataFeed getDataFeed Retrieve data feed object string \Zend_Uri_Uri \Zend_Gdata_Analytics_DataFeed $uri self::ANALYTICS_FEED_URI newDataQuery newDataQuery Returns a new DataQuery object. \Zend_Gdata_Analytics_DataQuery newAccountQuery newAccountQuery Returns a new AccountQuery object. \Zend_Gdata_Analytics_AccountQuery No short description for class \Zend_Gdata_Analytics No DocBlock was found for property $namespaces Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php \Zend_Gdata Zend_Gdata_DublinCore \Zend_Gdata_DublinCore Service class for interacting with the services which use the DublinCore extensions. $namespaces array(array('dc', 'http://purl.org/dc/terms', 1, 0)) Namespaces used for Zend_Gdata_DublinCore array __construct __construct Create Zend_Gdata_DublinCore object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gbase/Feed.php \Zend_Gdata_Feed Zend_Gdata_Gbase_ItemFeed \Zend_Gdata_Gbase_ItemFeed Represents the Google Base Customer Items Feed Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gbase/Query.php \Zend_Gdata_Gbase_Query Zend_Gdata_Gbase_SnippetQuery \Zend_Gdata_Gbase_SnippetQuery Assists in constructing queries for Google Base Snippets Feed BASE_SNIPPET_FEED_URI BASE_SNIPPET_FEED_URI 'https://www.google.com/base/feeds/snippets' Path to the snippets feeds on the Google Base server. Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Element.php \Zend_Gdata_App_Extension_Element Zend_Gdata_Gbase_Extension_BaseAttribute \Zend_Gdata_Gbase_Extension_BaseAttribute Concrete class for working with ItemType elements. __construct __construct Create a new instance. string string string $name null $text null $type null Name of argument $type does not match with the DocBlock's name $text in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gbase/Entry.php \Zend_Gdata_Gbase_Entry Zend_Gdata_Gbase_SnippetEntry \Zend_Gdata_Gbase_SnippetEntry Concrete class for working with Snippet entries. Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Gbase_Feed \Zend_Gdata_Gbase_Feed Base class for the Google Base Feed __construct __construct Create a new instance. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Query.php \Zend_Gdata_Query Zend_Gdata_Gbase_Query \Zend_Gdata_Gbase_Query Assists in constructing queries for Google Base GBASE_ITEM_FEED_URI GBASE_ITEM_FEED_URI 'https://www.google.com/base/feeds/items' Path to the customer items feeds on the Google Base server. GBASE_SNIPPET_FEED_URI GBASE_SNIPPET_FEED_URI 'https://www.google.com/base/feeds/snippets' Path to the snippets feeds on the Google Base server. __construct __construct Create Gdata_Query object $url null Argument $url is missing from the Docblock of __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gbase/Entry.php \Zend_Gdata_Gbase_Entry Zend_Gdata_Gbase_ItemEntry \Zend_Gdata_Gbase_ItemEntry Concrete class for working with Item entries. Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Gbase_SnippetFeed \Zend_Gdata_Gbase_SnippetFeed Represents the Google Base Snippets Feed Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Entry.php \Zend_Gdata_Entry Zend_Gdata_Gbase_Entry \Zend_Gdata_Gbase_Entry Base class for working with Google Base entries. __construct __construct Constructs a new Zend_Gdata_Gbase_ItemEntry object. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Gbase/Query.php \Zend_Gdata_Gbase_Query Zend_Gdata_Gbase_ItemQuery \Zend_Gdata_Gbase_ItemQuery Assists in constructing queries for Google Base Customer Items Feed GBASE_ITEM_FEED_URI GBASE_ITEM_FEED_URI 'https://www.google.com/base/feeds/items' Path to the customer items feeds on the Google Base server. Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php \Zend_Gdata Zend_Gdata_Exif \Zend_Gdata_Exif Service class for interacting with the services which use the EXIF extensions $namespaces array(array('exif', 'http://schemas.google.com/photos/exif/2007', 1, 0)) Namespaces used for Zend_Gdata_Exif array __construct __construct Create Zend_Gdata_Exif object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Health_ProfileListFeed \Zend_Gdata_Health_ProfileListFeed Represents a Google Health user's Profile List Feed __construct __construct $element null No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/App/Extension/Element.php \Zend_Gdata_App_Extension_Element Zend_Gdata_Health_Extension_Ccr \Zend_Gdata_Health_Extension_Ccr Concrete class for working with CCR elements. __construct __construct Creates a Zend_Gdata_Health_Extension_Ccr entry, representing CCR data \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Entry.php \Zend_Gdata_Entry Zend_Gdata_Health_ProfileEntry \Zend_Gdata_Health_ProfileEntry Concrete class for working with Health profile entries. __construct __construct Constructs a new Zend_Gdata_Health_ProfileEntry object. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Health_ProfileFeed \Zend_Gdata_Health_ProfileFeed Represents a Google Health user's Profile Feed __construct __construct Creates a Health Profile feed, representing a user's Health profile \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Query.php \Zend_Gdata_Query Zend_Gdata_Health_Query \Zend_Gdata_Health_Query Assists in constructing queries for Google Health HEALTH_PROFILE_FEED_URI HEALTH_PROFILE_FEED_URI 'https://www.google.com/health/feeds/profile/default' URI of a user's profile feed. HEALTH_REGISTER_FEED_URI HEALTH_REGISTER_FEED_URI 'https://www.google.com/health/feeds/register/default' URI of register (notices) feed. ITEM_CATEGORY_NS ITEM_CATEGORY_NS 'http://schemas.google.com/health/item' Namespace for an item category __construct __construct Create Gdata_Query object $url null Argument $url is missing from the Docblock of __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata/Entry.php \Zend_Gdata_Entry Zend_Gdata_Health_ProfileListEntry \Zend_Gdata_Health_ProfileListEntry Concrete class for working with Health profile list entries. __construct __construct Constructs a new Zend_Gdata_Health_ProfileListEntry object. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Feed.php Zend/Gdata/YouTube/SubscriptionEntry.php \Zend_Gdata_Media_Feed Zend_Gdata_YouTube_SubscriptionFeed \Zend_Gdata_YouTube_SubscriptionFeed The YouTube video subscription list flavor of an Atom Feed with media support Represents a list of individual subscriptions, where each contained entry is a subscription. $_entryClassName 'Zend_Gdata_YouTube_SubscriptionEntry' The classname for individual feed elements. string __construct __construct Creates a Subscription feed, representing a list of subscriptions, usually associated with an individual user. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_MediaRating \Zend_Gdata_YouTube_Extension_MediaRating Represents the media:rating element specific to YouTube. $_rootElement 'rating' $_rootNamespace 'media' $_scheme null string $_country null string __construct __construct Constructs a new MediaRating element string string string $text null $scheme null $country null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getScheme getScheme string setScheme setScheme string \Zend_Gdata_YouTube_Extension_MediaRating $value getCountry getCountry string setCountry setCountry string \Zend_Gdata_YouTube_Extension_MediaRating $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_scheme No short description for property $_country Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getScheme() No short description for method setScheme() No short description for method getCountry() No short description for method setCountry() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_YouTube_Extension_Token \Zend_Gdata_YouTube_Extension_Token Represents the yt:token element used by the YouTube data API $_rootNamespace 'yt' $_rootElement 'token' __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_Token object. $text null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $text is missing from the Docblock of __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_School \Zend_Gdata_YouTube_Extension_School Represents the yt:school element $_rootElement 'school' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Racy \Zend_Gdata_YouTube_Extension_Racy Represents the yt:racy element used by the YouTube data API $_rootNamespace 'yt' $_rootElement 'racy' $_state null __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_Racy object. bool $state null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getState getState Get the value for this element's state attribute. bool setState setState Set the value for this element's state attribute. bool \Zend_Gdata_YouTube_Extension_Racy $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_state Name of argument $state does not match with the DocBlock's name $state(optional) in __construct() Parameter $state(optional) could not be found in __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Recorded \Zend_Gdata_YouTube_Extension_Recorded Represents the yt:recorded element $_rootElement 'recorded' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_AboutMe \Zend_Gdata_YouTube_Extension_AboutMe Represents the yt:aboutMe element $_rootElement 'aboutMe' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_State \Zend_Gdata_YouTube_Extension_State Represents the yt:state element used by the YouTube data API $_rootNamespace 'yt' $_rootElement 'state' $_name null $_reasonCode null $_helpUrl null __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_State object. string string string string $explanation null $name null $reasonCode null $helpUrl null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and valueare stored in an array. TODO: Convert attributes to proper types</p> \DOMNode $attribute getName getName Get the value for this element's name attribute. int setName setName Set the value for this element's name attribute. int \Zend_Gdata_YouTube_Extension_State $value getReasonCode getReasonCode Get the value for this element's reasonCode attribute. int setReasonCode setReasonCode Set the value for this element's reasonCode attribute. int \Zend_Gdata_YouTube_Extension_State $value getHelpUrl getHelpUrl Get the value for this element's helpUrl attribute. int setHelpUrl setHelpUrl Set the value for this element's helpUrl attribute. int \Zend_Gdata_YouTube_Extension_State $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 string No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_name No DocBlock was found for property $_reasonCode No DocBlock was found for property $_helpUrl Name of argument $explanation does not match with the DocBlock's name $explanation(optional) in __construct() Name of argument $name does not match with the DocBlock's name $name(optional) in __construct() Name of argument $reasonCode does not match with the DocBlock's name $reasonCode(optional) in __construct() Name of argument $helpUrl does not match with the DocBlock's name $helpUrl(optional) in __construct() Parameter $explanation(optional) could not be found in __construct() Parameter $name(optional) could not be found in __construct() Parameter $reasonCode(optional) could not be found in __construct() Parameter $helpUrl(optional) could not be found in __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Music \Zend_Gdata_YouTube_Extension_Music Represents the yt:music element $_rootElement 'music' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Duration \Zend_Gdata_YouTube_Extension_Duration Represents the yt:duration element used by the YouTube data API $_rootNamespace 'yt' $_rootElement 'duration' $_seconds null __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_Duration object. bool $seconds null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and valueare stored in an array.</p> \DOMNode $attribute getSeconds getSeconds Get the value for this element's seconds attribute. int setSeconds setSeconds Set the value for this element's seconds attribute. int \Zend_Gdata_YouTube_Extension_Duration $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 string No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_seconds Name of argument $seconds does not match with the DocBlock's name $seconds(optional) in __construct() Parameter $seconds(optional) could not be found in __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_NoEmbed \Zend_Gdata_YouTube_Extension_NoEmbed Represents the yt:noembed element used by the YouTube data API $_rootNamespace 'yt' $_rootElement 'noembed' __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_VideoShare object. bool $enabled null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $enabled does not match with the DocBlock's name $enabled(optional) in __construct() Parameter $enabled(optional) could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Hobbies \Zend_Gdata_YouTube_Extension_Hobbies Represents the yt:hobbies element $_rootElement 'hobbies' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Books \Zend_Gdata_YouTube_Extension_Books Represents the yt:books element $_rootElement 'books' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_QueryString \Zend_Gdata_YouTube_Extension_QueryString Represents the yt:queryString element $_rootElement 'queryString' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Status \Zend_Gdata_YouTube_Extension_Status Represents the yt:status element $_rootElement 'status' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_LastName \Zend_Gdata_YouTube_Extension_LastName Represents the yt:lastName element $_rootElement 'lastName' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Statistics \Zend_Gdata_YouTube_Extension_Statistics Represents the yt:statistics element used by the YouTube data API $_rootNamespace 'yt' $_rootElement 'statistics' $_videoWatchCount null The videoWatchCount attribute specifies the number of videos that a user has watched on YouTube. <p>The videoWatchCount attribute is only specified when the <yt:statistics> tag appears within a user profile entry.</p> integer $_viewCount null When the viewCount attribute refers to a video entry, the attribute specifies the number of times that the video has been viewed. <p>When the viewCount attribute refers to a user profile, the attribute specifies the number of times that the user's profile has been viewed.</p> integer $_subscriberCount null The subscriberCount attribute specifies the number of YouTube users who have subscribed to a particular user's YouTube channel. <p>The subscriberCount attribute is only specified when the <yt:statistics> tag appears within a user profile entry.</p> integer $_lastWebAccess null The lastWebAccess attribute indicates the most recent time that a particular user used YouTube. string $_favoriteCount null The favoriteCount attribute specifies the number of YouTube users who have added a video to their list of favorite videos. <p>The favoriteCount attribute is only specified when the <yt:statistics> tag appears within a video entry.</p> integer __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_Statistics object. string string string string string $viewCount null $videoWatchCount null $subscriberCount null $lastWebAccess null $favoriteCount null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and valueare stored in an array. TODO: Convert attributes to proper types</p> \DOMNode $attribute getViewCount getViewCount Get the value for this element's viewCount attribute. int setViewCount setViewCount Set the value for this element's viewCount attribute. int \Zend_Gdata_YouTube_Extension_Statistics $value getVideoWatchCount getVideoWatchCount Get the value for this element's videoWatchCount attribute. int setVideoWatchCount setVideoWatchCount Set the value for this element's videoWatchCount attribute. int \Zend_Gdata_YouTube_Extension_Statistics $value getSubscriberCount getSubscriberCount Get the value for this element's subscriberCount attribute. int setSubscriberCount setSubscriberCount Set the value for this element's subscriberCount attribute. int \Zend_Gdata_YouTube_Extension_Statistics $value getLastWebAccess getLastWebAccess Get the value for this element's lastWebAccess attribute. int setLastWebAccess setLastWebAccess Set the value for this element's lastWebAccess attribute. int \Zend_Gdata_YouTube_Extension_Statistics $value getFavoriteCount getFavoriteCount Get the value for this element's favoriteCount attribute. int setFavoriteCount setFavoriteCount Set the value for this element's favoriteCount attribute. int \Zend_Gdata_YouTube_Extension_Statistics $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 string No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $viewCount does not match with the DocBlock's name $viewCount(optional) in __construct() Name of argument $videoWatchCount does not match with the DocBlock's name $videoWatchCount(optional) in __construct() Name of argument $subscriberCount does not match with the DocBlock's name $subscriberCount(optional) in __construct() Name of argument $lastWebAccess does not match with the DocBlock's name $lastWebAccess(optional) in __construct() Name of argument $favoriteCount does not match with the DocBlock's name $favoriteCount(optional) in __construct() Parameter $viewCount(optional) could not be found in __construct() Parameter $videoWatchCount(optional) could not be found in __construct() Parameter $subscriberCount(optional) could not be found in __construct() Parameter $lastWebAccess(optional) could not be found in __construct() Parameter $favoriteCount(optional) could not be found in __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Hometown \Zend_Gdata_YouTube_Extension_Hometown Represents the yt:hometown element $_rootElement 'hometown' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Location \Zend_Gdata_YouTube_Extension_Location Represents the yt:location element $_rootElement 'location' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_PlaylistId \Zend_Gdata_YouTube_Extension_PlaylistId Represents the yt:playlistId element $_rootElement 'playlistId' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_FirstName \Zend_Gdata_YouTube_Extension_FirstName Represents the yt:firstName element $_rootElement 'firstName' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Link.php Zend/Gdata/YouTube/Extension/Token.php \Zend_Gdata_App_Extension_Link Zend_Gdata_YouTube_Extension_Link \Zend_Gdata_YouTube_Extension_Link Specialized Link class for use with YouTube. <p>Enables use of yt extension elements.</p> $_token null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Link object. \Zend_Gdata_YouTube_Extension_Token $href null $rel null $type null $hrefLang null $title null $length null $token null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getToken getToken Get the value for this element's token attribute. \Zend_Gdata_YouTube_Extension_Token setToken setToken Set the value for this element's token attribute. \Zend_Gdata_YouTube_Extension_Token \Zend_YouTube_Extension_Link $value getTokenValue getTokenValue Get the value of this element's token attribute. string No DocBlock was found for property $_token Name of argument $href does not match with the DocBlock's name $token in __construct() Argument $rel is missing from the Docblock of __construct() Argument $type is missing from the Docblock of __construct() Argument $hrefLang is missing from the Docblock of __construct() Argument $title is missing from the Docblock of __construct() Argument $length is missing from the Docblock of __construct() Argument $token is missing from the Docblock of __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Uploaded \Zend_Gdata_YouTube_Extension_Uploaded Represents the yt:uploaded element $_rootElement 'uploaded' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Occupation \Zend_Gdata_YouTube_Extension_Occupation Represents the yt:occupation element $_rootElement 'occupation' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Position \Zend_Gdata_YouTube_Extension_Position Data model class to represent a playlist item's position in the list (yt:position) $_rootElement 'position' $_rootNamespace 'yt' __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_Position object. string $value null getValue getValue Get the value for the position in the playlist int setValue setValue Set the value for the position in the playlist int \Zend_Gdata_Extension_Visibility $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 string No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Control.php Zend/Gdata/YouTube/Extension/State.php \Zend_Gdata_App_Extension_Control Zend_Gdata_YouTube_Extension_Control \Zend_Gdata_YouTube_Extension_Control Specialized Control class for use with YouTube. <p>Enables use of yt extension elements.</p> $_state null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Control object. \Zend_Gdata_App_Extension_Draft \Zend_Gdata_YouTube_Extension_State $draft null $state null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getState getState Get the value for this element's state attribute. \Zend_Gdata_YouTube_Extension_State setState setState Set the value for this element's state attribute. \Zend_Gdata_YouTube_Extension_State \Zend_YouTube_Extension_Control $value getStateValue getStateValue Get the value of this element's state attribute. string No DocBlock was found for property $_state Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Movies \Zend_Gdata_YouTube_Extension_Movies Represents the yt:movies element $_rootElement 'movies' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_ReleaseDate \Zend_Gdata_YouTube_Extension_ReleaseDate Represents the yt:releaseDate element $_rootElement 'releaseDate' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Description \Zend_Gdata_YouTube_Extension_Description Represents the yt:description element $_rootElement 'description' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Extension/MediaGroup.php Zend/Gdata/YouTube/Extension/MediaContent.php Zend/Gdata/YouTube/Extension/Duration.php Zend/Gdata/YouTube/Extension/MediaRating.php Zend/Gdata/YouTube/Extension/MediaCredit.php Zend/Gdata/YouTube/Extension/Private.php Zend/Gdata/YouTube/Extension/VideoId.php Zend/Gdata/YouTube/Extension/Uploaded.php \Zend_Gdata_Media_Extension_MediaGroup Zend_Gdata_YouTube_Extension_MediaGroup \Zend_Gdata_YouTube_Extension_MediaGroup This class represents the media:group element of Media RSS. <p>It allows the grouping of media:content elements that are different representations of the same content. When it exists, it is a child of an Entry (Atom) or Item (RSS).</p> $_rootElement 'group' $_rootNamespace 'media' $_duration null \Zend_Gdata_YouTube_Extension_Duration $_private null \Zend_Gdata_YouTube_Extension_Private $_videoid null \Zend_Gdata_YouTube_Extension_VideoId $_mediarating null \Zend_Gdata_YouTube_Extension_MediaRating $_mediacredit null \Zend_Gdata_YouTube_Extension_MediaCredit $_uploaded null \Zend_Gdata_YouTube_Extension_Uploaded __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child getDuration getDuration Returns the duration value of this element \Zend_Gdata_YouTube_Extension_Duration setDuration setDuration Sets the duration value of this element \Zend_Gdata_YouTube_Extension_Duration \Zend_Gdata_YouTube_Extension_MediaGroup $value getVideoId getVideoId Returns the videoid value of this element \Zend_Gdata_YouTube_Extension_VideoId setVideoId setVideoId Sets the videoid value of this element \Zend_Gdata_YouTube_Extension_VideoId \Zend_Gdata_YouTube_Extension_MediaGroup $value getUploaded getUploaded Returns the yt:uploaded element \Zend_Gdata_YouTube_Extension_Uploaded setUploaded setUploaded Sets the yt:uploaded element \Zend_Gdata_YouTube_Extension_Uploaded \Zend_Gdata_YouTube_Extension_MediaGroup $value getPrivate getPrivate Returns the private value of this element \Zend_Gdata_YouTube_Extension_Private setPrivate setPrivate Sets the private value of this element \Zend_Gdata_YouTube_Extension_Private \Zend_Gdata_YouTube_Extension_MediaGroup $value getMediaRating getMediaRating Returns the rating value of this element \Zend_Gdata_YouTube_Extension_MediaRating setMediaRating setMediaRating Sets the media:rating value of this element \Zend_Gdata_YouTube_Extension_MediaRating \Zend_Gdata_YouTube_Extension_MediaGroup $value getMediaCredit getMediaCredit Returns the media:credit value of this element \Zend_Gdata_YouTube_Extension_MediaCredit setMediaCredit setMediaCredit Sets the media:credit value of this element \Zend_Gdata_YouTube_Extension_MediaCredit \Zend_Gdata_YouTube_Extension_MediaGroup $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_duration No short description for property $_private No short description for property $_videoid No short description for property $_mediarating No short description for property $_mediacredit No short description for property $_uploaded No DocBlock was found for method __construct() No DocBlock was found for method getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Private \Zend_Gdata_YouTube_Extension_Private Represents the yt:private element used by the YouTube data API $_rootNamespace 'yt' $_rootElement 'private' __construct __construct Constructs a new Zend_Gdata_YouTube_Extension_Private object. getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and valueare stored in an array.</p> \DOMNode $attribute No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_MediaCredit \Zend_Gdata_YouTube_Extension_MediaCredit Represents the YouTube specific media:credit element $_rootElement 'credit' $_rootNamespace 'media' $_role null string $_scheme null string $_yttype null Represents the value of the yt:type attribute. <p>Set to 'partner' if the uploader of this video is a YouTube partner.</p> string __construct __construct Creates an individual MediaCredit object. string string string $text null $role null $scheme null $yttype null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getRole getRole string setRole setRole string \Zend_Gdata_Media_Extension_MediaCredit $value getScheme getScheme string setScheme setScheme string \Zend_Gdata_Media_Extension_MediaCredit $value getYTtype getYTtype string setYTtype setYTtype string \Zend_Gdata_Media_Extension_MediaCredit $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_role No short description for property $_scheme Argument $yttype is missing from the Docblock of __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getRole() No short description for method setRole() No short description for method getScheme() No short description for method setScheme() No short description for method getYTtype() No short description for method setYTtype() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Username \Zend_Gdata_YouTube_Extension_Username Represents the yt:username element $_rootElement 'username' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Extension/MediaContent.php \Zend_Gdata_Media_Extension_MediaContent Zend_Gdata_YouTube_Extension_MediaContent \Zend_Gdata_YouTube_Extension_MediaContent Represents the media:content element of Media RSS. <p>Represents media objects. Multiple media objects representing the same content can be represented using a media:group (Zend_Gdata_Media_Extension_MediaGroup) element.</p> $_rootElement 'content' $_rootNamespace 'media' $_format null __construct __construct getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getFormat getFormat Returns the format of the media Optional. int setFormat setFormat Sets the format of the media int \Zend_Gdata_YouTube_Extension_MediaContent $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_format No DocBlock was found for method __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Gender \Zend_Gdata_YouTube_Extension_Gender Represents the yt:gender element $_rootElement 'gender' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_PlaylistTitle \Zend_Gdata_YouTube_Extension_PlaylistTitle Represents the yt:playlistTitle element $_rootElement 'playlistTitle' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Company \Zend_Gdata_YouTube_Extension_Company Represents the yt:company element $_rootElement 'company' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_CountHint \Zend_Gdata_YouTube_Extension_CountHint Represents the yt:countHint element $_rootElement 'countHint' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Relationship \Zend_Gdata_YouTube_Extension_Relationship Represents the yt:relationship element $_rootElement 'relationship' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_VideoId \Zend_Gdata_YouTube_Extension_VideoId Represents the yt:videoid element $_rootElement 'videoid' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_YouTube_Extension_Age \Zend_Gdata_YouTube_Extension_Age Represents the yt:age element $_rootElement 'age' $_rootNamespace 'yt' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media.php Zend/Gdata/Media/Entry.php Zend/Gdata/YouTube/Extension/MediaGroup.php \Zend_Gdata_Media_Entry Zend_Gdata_YouTube_MediaEntry \Zend_Gdata_YouTube_MediaEntry Represents the YouTube flavor of a Gdata Media Entry $_entryClassName 'Zend_Gdata_YouTube_MediaEntry' $_mediaGroup null media:group element \Zend_Gdata_YouTube_Extension_MediaGroup takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child No DocBlock was found for property $_entryClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/YouTube/Extension/VideoId.php Zend/Gdata/YouTube/Extension/Username.php Zend/Gdata/Extension/Rating.php \Zend_Gdata_Entry Zend_Gdata_YouTube_ActivityEntry \Zend_Gdata_YouTube_ActivityEntry A concrete class for working with YouTube user activity entries. ACTIVITY_CATEGORY_SCHEME ACTIVITY_CATEGORY_SCHEME 'http://gdata.youtube.com/schemas/2007/userevents.cat' $_entryClassName 'Zend_Gdata_YouTube_ActivityEntry' The classname for individual user activity entry elements. string $_videoId null The ID of the video that was part of the activity \Zend_Gdata_YouTube_VideoId $_username null The username for the user that was part of the activity \Zend_Gdata_YouTube_Username $_rating null The rating element that was part of the activity \Zend_Gdata_Extension_Rating __construct __construct Constructs a new Zend_Gdata_YouTube_ActivityEntry object. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getVideoId getVideoId Returns the video ID for this activity entry. null \Zend_Gdata_YouTube_Extension_VideoId getUsername getUsername Returns the username for this activity entry. null \Zend_Gdata_YouTube_Extension_Username getRating getRating Returns the rating for this activity entry. null \Zend_Gdata_YouTube_Extension_Rating getRatingValue getRatingValue Return the value of the rating for this video entry. <p>Convenience method to save needless typing.</p> integer null getActivityType getActivityType Return the activity type that was performed. <p>Convenience method that inspects category where scheme is http://gdata.youtube.com/schemas/2007/userevents.cat.</p> string null getAuthorName getAuthorName Convenience method to quickly get access to the author of the activity string Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/YouTube/UserProfileEntry.php Zend/Gdata/YouTube/Extension/Status.php \Zend_Gdata_YouTube_UserProfileEntry Zend_Gdata_YouTube_ContactEntry \Zend_Gdata_YouTube_ContactEntry The YouTube contacts flavor of an Atom Entry with media support Represents a an individual contact $_entryClassName 'Zend_Gdata_YouTube_ContactEntry' The classname for individual feed elements. string $_status null Status of the user as a contact string __construct __construct Constructs a new Contact Entry object, to represent an individual contact for a user \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child setStatus setStatus Sets the status \Zend_Gdata_YouTube_Extension_Status \Zend_Gdata_YouTube_ContactEntry $status null getStatus getStatus Returns the status \Zend_Gdata_YouTube_Extension_Status Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension/FeedLink.php Zend/Gdata/YouTube/Extension/Description.php Zend/Gdata/YouTube/Extension/AboutMe.php Zend/Gdata/YouTube/Extension/Age.php Zend/Gdata/YouTube/Extension/Username.php Zend/Gdata/YouTube/Extension/Books.php Zend/Gdata/YouTube/Extension/Company.php Zend/Gdata/YouTube/Extension/Hobbies.php Zend/Gdata/YouTube/Extension/Hometown.php Zend/Gdata/YouTube/Extension/Location.php Zend/Gdata/YouTube/Extension/Movies.php Zend/Gdata/YouTube/Extension/Music.php Zend/Gdata/YouTube/Extension/Occupation.php Zend/Gdata/YouTube/Extension/School.php Zend/Gdata/YouTube/Extension/Gender.php Zend/Gdata/YouTube/Extension/Relationship.php Zend/Gdata/YouTube/Extension/FirstName.php Zend/Gdata/YouTube/Extension/LastName.php Zend/Gdata/YouTube/Extension/Statistics.php Zend/Gdata/Media/Extension/MediaThumbnail.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php \Zend_Gdata_Entry Zend_Gdata_YouTube_UserProfileEntry \Zend_Gdata_YouTube_UserProfileEntry Represents the YouTube video playlist flavor of an Atom entry $_entryClassName 'Zend_Gdata_YouTube_UserProfileEntry' $_feedLink array() Nested feed links array $_username null The username for this profile entry string $_description null The description of the user string $_aboutMe null The contents of the 'About Me' field. string $_age null The age of the user int $_books null Books of interest to the user string $_company null Company string $_hobbies null Hobbies string $_hometown null Hometown string $_location null Location string $_movies null Movies string $_music null Music string $_occupation null Occupation string $_school null School string $_gender null Gender string $_relationship null Relationship string $_firstName null First name string $_lastName null Last name string $_statistics null Statistics \Zend_Gdata_YouTube_Extension_Statistics $_thumbnail null Thumbnail \Zend_Gdata_Media_Extension_MediaThumbnail __construct __construct Creates a User Profile entry, representing an individual user and their attributes. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child setAboutMe setAboutMe Sets the content of the 'about me' field. \Zend_Gdata_YouTube_Extension_AboutMe \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_UserProfileEntry $aboutMe null getAboutMe getAboutMe Returns the contents of the 'about me' field. \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_AboutMe setFirstName setFirstName Sets the content of the 'first name' field. \Zend_Gdata_YouTube_Extension_FirstName \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_UserProfileEntry $firstName null getFirstName getFirstName Returns the first name \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_FirstName setLastName setLastName Sets the content of the 'last name' field. \Zend_Gdata_YouTube_Extension_LastName \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_UserProfileEntry $lastName null getLastName getLastName Returns the last name \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_LastName getStatistics getStatistics Returns the statistics \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_Statistics getThumbnail getThumbnail Returns the thumbnail \Zend_Gdata_App_VersionException \Zend_Gdata_Media_Extension_MediaThumbnail setAge setAge Sets the age \Zend_Gdata_YouTube_Extension_Age \Zend_Gdata_YouTube_UserProfileEntry $age null getAge getAge Returns the age \Zend_Gdata_YouTube_Extension_Age setUsername setUsername Sets the username \Zend_Gdata_YouTube_Extension_Username \Zend_Gdata_YouTube_UserProfileEntry $username null getUsername getUsername Returns the username \Zend_Gdata_YouTube_Extension_Username setBooks setBooks Sets the books \Zend_Gdata_YouTube_Extension_Books \Zend_Gdata_YouTube_UserProfileEntry $books null getBooks getBooks Returns the books \Zend_Gdata_YouTube_Extension_Books setCompany setCompany Sets the company \Zend_Gdata_YouTube_Extension_Company \Zend_Gdata_YouTube_UserProfileEntry $company null getCompany getCompany Returns the company \Zend_Gdata_YouTube_Extension_Company setHobbies setHobbies Sets the hobbies \Zend_Gdata_YouTube_Extension_Hobbies \Zend_Gdata_YouTube_UserProfileEntry $hobbies null getHobbies getHobbies Returns the hobbies \Zend_Gdata_YouTube_Extension_Hobbies setHometown setHometown Sets the hometown \Zend_Gdata_YouTube_Extension_Hometown \Zend_Gdata_YouTube_UserProfileEntry $hometown null getHometown getHometown Returns the hometown \Zend_Gdata_YouTube_Extension_Hometown setLocation setLocation Sets the location \Zend_Gdata_YouTube_Extension_Location \Zend_Gdata_YouTube_UserProfileEntry $location null getLocation getLocation Returns the location \Zend_Gdata_YouTube_Extension_Location setMovies setMovies Sets the movies \Zend_Gdata_YouTube_Extension_Movies \Zend_Gdata_YouTube_UserProfileEntry $movies null getMovies getMovies Returns the movies \Zend_Gdata_YouTube_Extension_Movies setMusic setMusic Sets the music \Zend_Gdata_YouTube_Extension_Music \Zend_Gdata_YouTube_UserProfileEntry $music null getMusic getMusic Returns the music \Zend_Gdata_YouTube_Extension_Music setOccupation setOccupation Sets the occupation \Zend_Gdata_YouTube_Extension_Occupation \Zend_Gdata_YouTube_UserProfileEntry $occupation null getOccupation getOccupation Returns the occupation \Zend_Gdata_YouTube_Extension_Occupation setSchool setSchool Sets the school \Zend_Gdata_YouTube_Extension_School \Zend_Gdata_YouTube_UserProfileEntry $school null getSchool getSchool Returns the school \Zend_Gdata_YouTube_Extension_School setGender setGender Sets the gender \Zend_Gdata_YouTube_Extension_Gender \Zend_Gdata_YouTube_UserProfileEntry $gender null getGender getGender Returns the gender \Zend_Gdata_YouTube_Extension_Gender setRelationship setRelationship Sets the relationship \Zend_Gdata_YouTube_Extension_Relationship \Zend_Gdata_YouTube_UserProfileEntry $relationship null getRelationship getRelationship Returns the relationship \Zend_Gdata_YouTube_Extension_Relationship setFeedLink setFeedLink Sets the array of embedded feeds related to the video array \Zend_Gdata_YouTube_UserProfileEntry $feedLink null getFeedLink getFeedLink Get the feed link property for this entry. string mixed $rel null getFeedLinkHref getFeedLinkHref Returns the URL in the gd:feedLink with the provided rel value string mixed $rel getPlaylistListFeedUrl getPlaylistListFeedUrl Returns the URL of the playlist list feed string getUploadsFeedUrl getUploadsFeedUrl Returns the URL of the uploads feed string getSubscriptionsFeedUrl getSubscriptionsFeedUrl Returns the URL of the subscriptions feed string getContactsFeedUrl getContactsFeedUrl Returns the URL of the contacts feed string getFavoritesFeedUrl getFavoritesFeedUrl Returns the URL of the favorites feed string No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Feed.php \Zend_Gdata_Entry Zend_Gdata_YouTube_CommentEntry \Zend_Gdata_YouTube_CommentEntry The YouTube comments flavor of an Atom Entry $_entryClassName 'Zend_Gdata_YouTube_CommentEntry' The classname for individual feed elements. string __construct __construct Constructs a new Zend_Gdata_YouTube_CommentEntry object. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Feed.php Zend/Gdata/YouTube/InboxEntry.php \Zend_Gdata_Media_Feed Zend_Gdata_YouTube_InboxFeed \Zend_Gdata_YouTube_InboxFeed The YouTube inbox feed list flavor of an Atom Feed with media support Represents a list of individual inbox entries, where each contained entry is a message. $_entryClassName 'Zend_Gdata_YouTube_InboxEntry' The classname for individual feed elements. string __construct __construct Creates an Inbox feed, representing a list of messages, associated with an individual user. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Feed.php Zend/Gdata/YouTube/ContactEntry.php \Zend_Gdata_Media_Feed Zend_Gdata_YouTube_ContactFeed \Zend_Gdata_YouTube_ContactFeed The YouTube contacts flavor of an Atom Feed with media support Represents a list of individual contacts, where each contained entry is a contact. $_entryClassName 'Zend_Gdata_YouTube_ContactEntry' The classname for individual feed elements. string __construct __construct Constructs a new YouTube Contact Feed object, to represent a feed of contacts for a user \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/YouTube/ActivityEntry.php \Zend_Gdata_Feed Zend_Gdata_YouTube_ActivityFeed \Zend_Gdata_YouTube_ActivityFeed A feed of user activity entries for YouTube $_entryClassName 'Zend_Gdata_YouTube_ActivityEntry' The classname for individual feed elements. string __construct __construct Creates an Activity feed, representing a list of activity entries \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Feed.php Zend/Gdata/YouTube/PlaylistVideoEntry.php \Zend_Gdata_Media_Feed Zend_Gdata_YouTube_PlaylistVideoFeed \Zend_Gdata_YouTube_PlaylistVideoFeed The YouTube video playlist flavor of an Atom Feed with media support Represents a list of videos contained in a playlist. <p>Each entry in this feed represents an individual video.</p> $_entryClassName 'Zend_Gdata_YouTube_PlaylistVideoEntry' The classname for individual feed elements. string __construct __construct Creates a Play Video feed, representing a list of videos contained within a single playlist. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Feed.php Zend/Gdata/YouTube/VideoEntry.php \Zend_Gdata_Media_Feed Zend_Gdata_YouTube_VideoFeed \Zend_Gdata_YouTube_VideoFeed The YouTube video flavor of an Atom Feed with media support $_entryClassName 'Zend_Gdata_YouTube_VideoEntry' The classname for individual feed elements. string __construct __construct Creates a Video feed, representing a list of videos \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/YouTube.php Zend_Gdata_YouTube Zend/Gdata/Query.php Zend_Gdata_Query Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/Exception.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php \Zend_Gdata_Query Zend_Gdata_YouTube_VideoQuery \Zend_Gdata_YouTube_VideoQuery Assists in constructing queries for YouTube videos __construct __construct Create Gdata_YouTube_VideoQuery object $url null setFeedType setFeedType Sets the type of feed this query should be used to search string string string $feedType $videoId null $entry null setLocation setLocation Sets the location parameter for the query string \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_YouTube_VideoQuery $value getLocation getLocation Get the value of the location parameter string null setLocationRadius setLocationRadius Sets the location-radius parameter for the query string \Zend_Gdata_YouTube_VideoQuery $value getLocationRadius getLocationRadius Get the value of the location-radius parameter string null setTime setTime Sets the time period over which this query should apply string \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_YouTube_VideoQuery $value null setUploader setUploader Sets the value of the uploader parameter string \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_YouTube_VideoQuery $value null setVideoQuery setVideoQuery Sets the formatted video query (vq) URL param value string \Zend_Gdata_YouTube_VideoQuery $value null setFormat setFormat Sets the param to return videos of a specific format string \Zend_Gdata_YouTube_VideoQuery $value null setRacy setRacy Sets whether or not to include racy videos in the search results string \Zend_Gdata_YouTube_VideoQuery $value null getRacy getRacy Whether or not to include racy videos in the search results string null setSafeSearch setSafeSearch Set the safeSearch parameter string \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_YouTube_VideoQuery $value getSafeSearch getSafeSearch Return the value of the safeSearch parameter string null setOrderBy setOrderBy Set the value of the orderby parameter string \Zend_Gdata_YouTube_Query $value getFormat getFormat Return the value of the format parameter string null getVideoQuery getVideoQuery Return the value of the video query that has been set string null getTime getTime Return the value of the time parameter string null getOrderBy getOrderBy Return the value of the orderby parameter if it exists string null getQueryString getQueryString Generate the query string from the URL parameters, optionally modifying them based on protocol version. integer integer \Zend_Gdata_App_VersionException string $majorProtocolVersion null $minorProtocolVersion null getQueryUrl getQueryUrl Returns the generated full query URL, optionally modifying it based on the protocol version. integer integer string $majorProtocolVersion null $minorProtocolVersion null Argument $url is missing from the Docblock of __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/YouTube.php Zend/Gdata/Entry.php Zend/Gdata/Extension/FeedLink.php Zend/Gdata/YouTube/Extension/Description.php Zend/Gdata/YouTube/Extension/PlaylistId.php Zend/Gdata/YouTube/Extension/CountHint.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php \Zend_Gdata_Entry Zend_Gdata_YouTube_PlaylistListEntry \Zend_Gdata_YouTube_PlaylistListEntry Represents the YouTube video playlist flavor of an Atom entry $_entryClassName 'Zend_Gdata_YouTube_PlaylistListEntry' $_feedLink array() Nested feed links array $_description null Description of this playlist \Zend_Gdata_YouTube_Extension_Description $_playlistId null Id of this playlist \Zend_Gdata_YouTube_Extension_PlaylistId $_countHint null CountHint for this playlist. \Zend_Gdata_YouTube_Extension_CountHint __construct __construct Creates a Playlist list entry, representing an individual playlist in a list of playlists, usually associated with an individual user. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child setDescription setDescription Sets the description relating to the playlist. \Zend_Gdata_YouTube_Extension_Description \Zend_Gdata_YouTube_PlaylistListEntry $description null getDescription getDescription Returns the description relating to the video. \Zend_Gdata_YouTube_Extension_Description getCountHint getCountHint Returns the countHint relating to the playlist. <p>The countHint is the number of videos on a playlist.</p> \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_CountHint getPlaylistId getPlaylistId Returns the Id relating to the playlist. \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_PlaylistId setFeedLink setFeedLink Sets the array of embedded feeds related to the playlist array \Zend_Gdata_YouTube_PlaylistListEntry $feedLink null getFeedLink getFeedLink Get the feed link property for this entry. string mixed $rel null getPlaylistVideoFeedUrl getPlaylistVideoFeedUrl Returns the URL of the playlist video feed string No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Entry.php Zend/Gdata/Extension/Rating.php Zend/Gdata/Extension/Comments.php Zend/Gdata/YouTube/Extension/Statistics.php Zend/Gdata/YouTube/Extension/Description.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php \Zend_Gdata_Media_Entry Zend_Gdata_YouTube_InboxEntry \Zend_Gdata_YouTube_InboxEntry Represents the YouTube message flavor of an Atom entry $_entryClassName 'Zend_Gdata_YouTube_InboxEntry' $_comments null The gd:comments element of this entry. \Zend_Gdata_Extension_Comments $_rating null The gd:rating element of this entry. \Zend_Gdata_Extension_Rating $_statistics null The yt:statistics element of this entry. \Zend_Gdata_YouTube_Extension_Statistics $_description null The yt:description element of this entry. \Zend_Gdata_YouTube_Extension_Description __construct __construct Creates a subscription entry, representing an individual subscription in a list of subscriptions, usually associated with an individual user. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child getDescription getDescription Get the yt:description \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_Description null setDescription setDescription Sets the yt:description element for a new inbox entry. \Zend_Gdata_YouTube_Extension_Description \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_InboxEntry $description null getRating getRating Get the gd:rating element for the inbox entry \Zend_Gdata_Extension_Rating null setRating setRating Sets the gd:rating element for the inbox entry \Zend_Gdata_Extension_Rating \Zend_Gdata_YouTube_InboxEntry $rating null getComments getComments Get the gd:comments element of the inbox entry. \Zend_Gdata_Extension_Comments null setComments setComments Sets the gd:comments element for the inbox entry \Zend_Gdata_Extension_Comments \Zend_Gdata_YouTube_InboxEntry $comments null getStatistics getStatistics Get the yt:statistics element for the inbox entry \Zend_Gdata_YouTube_Extension_Statistics null setStatistics setStatistics Sets the yt:statistics element for the inbox entry \Zend_Gdata_YouTube_Extension_Statistics \Zend_Gdata_YouTube_InboxEntry $statistics null No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension/Comments.php Zend/Gdata/Extension/FeedLink.php Zend/Gdata/YouTube/MediaEntry.php Zend/Gdata/YouTube/Extension/MediaGroup.php Zend/Gdata/YouTube/Extension/NoEmbed.php Zend/Gdata/YouTube/Extension/Statistics.php Zend/Gdata/YouTube/Extension/Link.php Zend/Gdata/YouTube/Extension/Racy.php Zend/Gdata/Extension/Rating.php Zend/Gdata/Geo/Extension/GeoRssWhere.php Zend/Gdata/YouTube/Extension/Control.php Zend/Gdata/YouTube/Extension/Recorded.php Zend/Gdata/YouTube/Extension/Location.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/Exception.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/Extension/Rating.php \Zend_Gdata_YouTube_MediaEntry Zend_Gdata_YouTube_VideoEntry \Zend_Gdata_YouTube_VideoEntry Represents the YouTube video flavor of an Atom entry YOUTUBE_DEVELOPER_TAGS_SCHEMA YOUTUBE_DEVELOPER_TAGS_SCHEMA 'http://gdata.youtube.com/schemas/2007/developertags.cat' YOUTUBE_CATEGORY_SCHEMA YOUTUBE_CATEGORY_SCHEMA 'http://gdata.youtube.com/schemas/2007/categories.cat' $_entryClassName 'Zend_Gdata_YouTube_VideoEntry' $_noEmbed null If null, the video can be embedded \Zend_Gdata_YouTube_Extension_NoEmbed null $_statistics null Specifies the statistics relating to the video. \Zend_Gdata_YouTube_Extension_Statistics $_racy null If not null, specifies that the video has racy content. \Zend_Gdata_YouTube_Extension_Racy null $_private null If not null, specifies that the video is private. \Zend_Gdata_YouTube_Extension_Private null $_rating null Specifies the video's rating. \Zend_Gdata_Extension_Rating $_comments null Specifies the comments associated with a video. \Zend_Gdata_Extensions_Comments $_feedLink array() Nested feed links array $_where null Geo location for the video \Zend_Gdata_Geo_Extension_GeoRssWhere $_recorded null Recording date for the video \Zend_Gdata_YouTube_Extension_Recorded null $_location null Location informtion for the video \Zend_Gdata_YouTube_Extension_Location null __construct __construct Creates a Video entry, representing an individual video \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child setRecorded setRecorded Sets when the video was recorded. \Zend_Gdata_YouTube_Extension_Recorded \Zend_Gdata_YouTube_VideoEntry $recorded null getRecorded getRecorded Gets the date that the video was recorded. \Zend_Gdata_YouTube_Extension_Recorded null setLocation setLocation Sets the location information. \Zend_Gdata_YouTube_Extension_Location \Zend_Gdata_YouTube_VideoEntry $location null getLocation getLocation Gets the location where the video was recorded. \Zend_Gdata_YouTube_Extension_Location null setNoEmbed setNoEmbed If an instance of Zend_Gdata_YouTube_Extension_NoEmbed is passed in, the video cannot be embedded. <p>Otherwise, if null is passsed in, the video is able to be embedded.</p> \Zend_Gdata_YouTube_Extension_NoEmbed \Zend_Gdata_YouTube_VideoEntry $noEmbed null getNoEmbed getNoEmbed If the return value is an instance of Zend_Gdata_YouTube_Extension_NoEmbed, this video cannot be embedded. \Zend_Gdata_YouTube_Extension_NoEmbed null isVideoEmbeddable isVideoEmbeddable Checks whether the video is embeddable. bool setStatistics setStatistics Sets the statistics relating to the video. \Zend_Gdata_YouTube_Extension_Statistics \Zend_Gdata_YouTube_VideoEntry $statistics null getStatistics getStatistics Returns the statistics relating to the video. \Zend_Gdata_YouTube_Extension_Statistics setRacy setRacy Specifies that the video has racy content. \Zend_Gdata_YouTube_Extension_Racy \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_VideoEntry $racy null getRacy getRacy Returns the racy flag object. \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_Racy null setRating setRating Sets the rating relating to the video. \Zend_Gdata_Extension_Rating \Zend_Gdata_YouTube_VideoEntry $rating null getRating getRating Returns the rating relating to the video. \Zend_Gdata_Extension_Rating setComments setComments Sets the comments relating to the video. \Zend_Gdata_Extension_Comments \Zend_Gdata_YouTube_VideoEntry $comments null getComments getComments Returns the comments relating to the video. \Zend_Gdata_Extension_Comments setFeedLink setFeedLink Sets the array of embedded feeds related to the video array \Zend_Gdata_YouTube_VideoEntry $feedLink null getFeedLink getFeedLink Get the feed link property for this entry. string mixed $rel null getVideoResponsesLink getVideoResponsesLink Returns the link element relating to video responses. \Zend_Gdata_App_Extension_Link getVideoRatingsLink getVideoRatingsLink Returns the link element relating to video ratings. \Zend_Gdata_App_Extension_Link getVideoComplaintsLink getVideoComplaintsLink Returns the link element relating to video complaints. \Zend_Gdata_App_Extension_Link getVideoId getVideoId Gets the YouTube video ID based upon the atom:id value string getVideoRecorded getVideoRecorded Gets the date that the video was recorded. string null setVideoRecorded setVideoRecorded Sets the date that the video was recorded. string $recorded getWhere getWhere Gets the georss:where element \Zend_Gdata_Geo_Extension_GeoRssWhere setWhere setWhere Sets the georss:where element \Zend_Gdata_Geo_Extension_GeoRssWhere \Zend_Gdata_YouTube_VideoEntry $value getVideoTitle getVideoTitle Gets the title of the video as a string. <p>null is returned if the video title is not available.</p> string null setVideoTitle setVideoTitle Sets the title of the video as a string. string \Zend_Gdata_YouTube_VideoEntry $title setVideoDescription setVideoDescription Sets the description of the video as a string. string \Zend_Gdata_YouTube_VideoEntry $description getVideoDescription getVideoDescription Gets the description of the video as a string. <p>null is returned if the video description is not available.</p> string null getVideoWatchPageUrl getVideoWatchPageUrl Gets the URL of the YouTube video watch page. <p>null is returned if the video watch page URL is not available.</p> string null getVideoThumbnails getVideoThumbnails Gets an array of the thumbnails representing the video. <p>Each thumbnail is an element of the array, and is an array of the thumbnail properties - time, height, width, and url. For convient usage inside a foreach loop, an empty array is returned if there are no thumbnails.</p> array getFlashPlayerUrl getFlashPlayerUrl Gets the URL of the flash player SWF. <p>null is returned if the duration value is not available.</p> string null getVideoDuration getVideoDuration Gets the duration of the video, in seconds. <p>null is returned if the duration value is not available.</p> string null isVideoPrivate isVideoPrivate Checks whether the video is private. bool setVideoPrivate setVideoPrivate Sets video to private. \Zend_Gdata_YouTube_VideoEntry setVideoPublic setVideoPublic Sets a private video to be public. \Zend_Gdata_YouTube_VideoEntry getVideoTags getVideoTags Gets an array of the tags assigned to this video. <p>For convient usage inside a foreach loop, an empty array is returned when there are no tags assigned.</p> array setVideoTags setVideoTags Sets the keyword tags for a video. mixed \Zend_Gdata_YouTube_VideoEntry $tags getVideoViewCount getVideoViewCount Gets the number of views for this video. <p>null is returned if the number of views is not available.</p> string null getVideoGeoLocation getVideoGeoLocation Gets the location specified for this video, if available. <p>The location is returned as an array containing the keys 'longitude' and 'latitude'. null is returned if the location is not available.</p> array null getVideoRatingInfo getVideoRatingInfo Gets the rating information for this video, if available. <p>The rating is returned as an array containing the keys 'average' and 'numRaters'. null is returned if the rating information is not available.</p> array null getVideoCategory getVideoCategory Gets the category of this video, if available. <p>The category is returned as a string. Valid categories are found at: http://gdata.youtube.com/schemas/2007/categories.cat If the category is not set, null is returned.</p> string null setVideoCategory setVideoCategory Sets the category of the video as a string. string \Zend_Gdata_YouTube_VideoEntry $category getVideoDeveloperTags getVideoDeveloperTags Gets the developer tags for the video, if available and if client is authenticated with a valid developerKey. <p>The tags are returned as an array. If no tags are set, null is returned.</p> array null addVideoDeveloperTag addVideoDeveloperTag Adds a developer tag to array of tags for the video. string \Zend_Gdata_YouTube_VideoEntry $developerTag setVideoDeveloperTags setVideoDeveloperTags Set multiple developer tags for the video as strings. array \Zend_Gdata_YouTube_VideoEntry $developerTags getVideoState getVideoState Get the current publishing state of the video. \Zend_Gdata_YouTube_Extension_State null ensureMediaGroupIsNotNull ensureMediaGroupIsNotNull Get the VideoEntry's Zend_Gdata_YouTube_Extension_MediaGroup object. <p>If the mediaGroup does not exist, then set it.</p> void setVideoRating setVideoRating Helper function to conveniently set a video's rating. integer \Zend_Gdata_Exception \Zend_Gdata_YouTube_VideoEntry $ratingValue getVideoCommentFeedUrl getVideoCommentFeedUrl Retrieve the URL for a video's comment feed. string null No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/YouTube/CommentEntry.php \Zend_Gdata_Feed Zend_Gdata_YouTube_CommentFeed \Zend_Gdata_YouTube_CommentFeed The YouTube comments flavor of an Atom Feed $_entryClassName 'Zend_Gdata_YouTube_CommentEntry' The classname for individual feed elements. string __construct __construct Constructs a new YouTube Comment Feed object, to represent a feed of comments for an individual video \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension/FeedLink.php Zend/Gdata/YouTube/Extension/Description.php Zend/Gdata/YouTube/Extension/PlaylistTitle.php Zend/Gdata/YouTube/Extension/PlaylistId.php Zend/Gdata/Media/Extension/MediaThumbnail.php Zend/Gdata/YouTube/Extension/Username.php Zend/Gdata/YouTube/Extension/CountHint.php Zend/Gdata/YouTube/Extension/QueryString.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php Zend/Gdata/App/VersionException.php \Zend_Gdata_Entry Zend_Gdata_YouTube_SubscriptionEntry \Zend_Gdata_YouTube_SubscriptionEntry Represents the YouTube video subscription flavor of an Atom entry $_entryClassName 'Zend_Gdata_YouTube_SubscriptionEntry' $_feedLink array() Nested feed links array $_username null The username of this entry. \Zend_Gdata_YouTube_Extension_Username $_playlistTitle null The playlist title for this entry. <p>This element is only used on subscriptions to playlists.</p> \Zend_Gdata_YouTube_Extension_PlaylistTitle $_playlistId null The playlist id for this entry. <p>This element is only used on subscriptions to playlists.</p> \Zend_Gdata_YouTube_Extension_PlaylistId $_mediaThumbnail null The media:thumbnail element for this entry. <p>This element is only used on subscriptions to playlists.</p> \Zend_Gdata_Media_Extension_MediaThumbnail $_countHint null The countHint for this entry. \Zend_Gdata_YouTube_Extension_CountHint $_queryString null The queryString for this entry. \Zend_Gdata_YouTube_Extension_QueryString __construct __construct Creates a subscription entry, representing an individual subscription in a list of subscriptions, usually associated with an individual user. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child setFeedLink setFeedLink Sets the array of embedded feeds related to the video array \Zend_Gdata_YouTube_SubscriptionEntry $feedLink null getFeedLink getFeedLink Get the feed link property for this entry. string mixed $rel null getPlaylistId getPlaylistId Get the playlist title for a 'playlist' subscription. \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_PlaylistId setPlaylistId setPlaylistId Sets the yt:playlistId element for a new playlist subscription. \Zend_Gdata_YouTube_Extension_PlaylistId \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_SubscriptionEntry $id null getQueryString getQueryString Get the queryString of the subscription \Zend_Gdata_YouTube_Extension_QueryString setQueryString setQueryString Sets the yt:queryString element for a new keyword subscription. \Zend_Gdata_YouTube_Extension_QueryString \Zend_Gdata_YouTube_SubscriptionEntry $queryString null getPlaylistTitle getPlaylistTitle Get the playlist title for a 'playlist' subscription. \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_PlaylistTitle setPlaylistTitle setPlaylistTitle Sets the yt:playlistTitle element for a new playlist subscription. \Zend_Gdata_YouTube_Extension_PlaylistTitle \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_SubscriptionEntry $title null getCountHint getCountHint Get the counthint for a subscription. \Zend_Gdata_App_VersionException \Zend_Gdata_YouTube_Extension_CountHint getMediaThumbnail getMediaThumbnail Get the thumbnail for a subscription. \Zend_Gdata_App_VersionException \Zend_Gdata_Media_Extension_MediaThumbnail getUsername getUsername Get the username for a channel subscription. \Zend_Gdata_YouTube_Extension_Username setUsername setUsername Sets the username for a new channel subscription. \Zend_Gdata_YouTube_Extension_Username \Zend_Gdata_YouTube_SubscriptionEntry $username null No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Feed.php Zend/Gdata/YouTube/PlaylistListEntry.php \Zend_Gdata_Media_Feed Zend_Gdata_YouTube_PlaylistListFeed \Zend_Gdata_YouTube_PlaylistListFeed The YouTube video playlist flavor of an Atom Feed with media support Represents a list of individual playlists, where each contained entry is a playlist. $_entryClassName 'Zend_Gdata_YouTube_PlaylistListEntry' The classname for individual feed elements. string __construct __construct Creates a Playlist list feed, representing a list of playlists, usually associated with an individual user. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/YouTube/VideoEntry.php Zend/Gdata/YouTube/Extension/Position.php \Zend_Gdata_YouTube_VideoEntry Zend_Gdata_YouTube_PlaylistVideoEntry \Zend_Gdata_YouTube_PlaylistVideoEntry Represents the YouTube video playlist flavor of an Atom entry $_entryClassName 'Zend_Gdata_YouTube_PlaylistVideoEntry' $_position null Position of the entry in the feed, as specified by the user \Zend_Gdata_YouTube_Extension_Position __construct __construct Creates a Playlist video entry, representing an individual video in a list of videos contained within a specific playlist \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child setPosition setPosition Sets the array of embedded feeds related to the video \Zend_Gdata_YouTube_Extension_Position \Zend_Gdata_YouTube_PlaylistVideoEntry $position null getPosition getPosition Returns the position of the entry in the feed, as specified by the user \Zend_Gdata_YouTube_Extension_Position No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php \Zend_Gdata Zend_Gdata_Geo \Zend_Gdata_Geo Service class for interacting with the services which use the GeoRSS + GML extensions. $namespaces array(array('georss', 'http://www.georss.org/georss', 1, 0), array('gml', 'http://www.opengis.net/gml', 1, 0)) Namespaces used for Zend_Gdata_Geo array __construct __construct Create Zend_Gdata_Geo object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/Docs/DocumentListFeed.php Zend/Gdata/Docs/DocumentListEntry.php Zend/Gdata/App/Extension/Category.php Zend/Gdata/App/Extension/Title.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata Zend_Gdata_Docs \Zend_Gdata_Docs Service class for interacting with the Google Document List data API DOCUMENTS_LIST_FEED_URI DOCUMENTS_LIST_FEED_URI 'https://docs.google.com/feeds/documents/private/full' DOCUMENTS_FOLDER_FEED_URI DOCUMENTS_FOLDER_FEED_URI 'https://docs.google.com/feeds/folders/private/full' DOCUMENTS_CATEGORY_SCHEMA DOCUMENTS_CATEGORY_SCHEMA 'http://schemas.google.com/g/2005#kind' DOCUMENTS_CATEGORY_TERM DOCUMENTS_CATEGORY_TERM 'http://schemas.google.com/docs/2007#folder' AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'writely' $_defaultPostUri self::DOCUMENTS_LIST_FEED_URI $SUPPORTED_FILETYPES array('TXT' => 'text/plain', 'CSV' => 'text/csv', 'TSV' => 'text/tab-separated-values', 'TAB' => 'text/tab-separated-values', 'HTML' => 'text/html', 'HTM' => 'text/html', 'DOC' => 'application/msword', 'ODS' => 'application/vnd.oasis.opendocument.spreadsheet', 'ODT' => 'application/vnd.oasis.opendocument.text', 'RTF' => 'application/rtf', 'SXW' => 'application/vnd.sun.xml.writer', 'XLS' => 'application/vnd.ms-excel', 'XLSX' => 'application/vnd.ms-excel', 'PPT' => 'application/vnd.ms-powerpoint', 'PPS' => 'application/vnd.ms-powerpoint') __construct __construct Create Gdata_Docs object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' lookupMimeType lookupMimeType Looks up the mime type based on the file name extension. <p>For example, calling this method with 'csv' would return 'text/comma-separated-values'. The Mime type is sent as a header in the upload HTTP POST request.</p> string string $fileExtension getDocumentListFeed getDocumentListFeed Retreive feed object containing entries for the user's documents. mixed \Zend_Gdata_Docs_DocumentListFeed $location null getDocumentListEntry getDocumentListEntry Retreive entry object representing a single document. mixed \Zend_Gdata_Docs_DocumentListEntry $location null getDoc getDoc Retreive entry object representing a single document. <p>This method builds the URL where this item is stored using the type and the id of the document.</p> string string \Zend_Gdata_Docs_DocumentListEntry $docId $docType getDocument getDocument Retreive entry object for the desired word processing document. string $id getSpreadsheet getSpreadsheet Retreive entry object for the desired spreadsheet. string $id getPresentation getPresentation Retreive entry object for the desired presentation. string $id uploadFile uploadFile Upload a local file to create a new Google Document entry. string string string string \Zend_Gdata_Docs_DocumentListEntry $fileLocation $title null $mimeType null $uri null createFolder createFolder Creates a new folder in Google Docs string string null \Zend_Gdata_Entry $folderName $folderResourceId null insertDocument insertDocument Inserts an entry to a given URI and returns the response as an Entry. mixed string string \Zend_Gdata_Docs_DocumentListEntry $data $uri $className 'Zend_Gdata_Docs_DocumentListEntry' No DocBlock was found for property $_defaultPostUri No DocBlock was found for property $SUPPORTED_FILETYPES Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/DublinCore.php Zend/Gdata/Books/CollectionEntry.php Zend/Gdata/Books/CollectionFeed.php Zend/Gdata/Books/VolumeEntry.php Zend/Gdata/Books/VolumeFeed.php \Zend_Gdata Zend_Gdata_Books \Zend_Gdata_Books Service class for interacting with the Books service VOLUME_FEED_URI VOLUME_FEED_URI 'https://books.google.com/books/feeds/volumes' MY_LIBRARY_FEED_URI MY_LIBRARY_FEED_URI 'https://books.google.com/books/feeds/users/me/collections/library/volumes' MY_ANNOTATION_FEED_URI MY_ANNOTATION_FEED_URI 'https://books.google.com/books/feeds/users/me/volumes' AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'print' $namespaces array(array('gbs', 'http://schemas.google.com/books/2008', 1, 0), array('dc', 'http://purl.org/dc/terms', 1, 0)) Namespaces used for Zend_Gdata_Books array __construct __construct Create Zend_Gdata_Books object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' getVolumeFeed getVolumeFeed Retrieves a feed of volumes. \Zend_Gdata_Query string null \Zend_Gdata_Books_VolumeFeed $location null getVolumeEntry getVolumeEntry Retrieves a specific volume entry. string null \Zend_Gdata_Query string null \Zend_Gdata_Books_VolumeEntry $volumeId null $location null getUserLibraryFeed getUserLibraryFeed Retrieves a feed of volumes, by default the User library feed. \Zend_Gdata_Query string null \Zend_Gdata_Books_VolumeFeed $location null getUserAnnotationFeed getUserAnnotationFeed Retrieves a feed of volumes, by default the User annotation feed \Zend_Gdata_Query string null \Zend_Gdata_Books_VolumeFeed $location null insertVolume insertVolume Insert a Volume / Annotation \Zend_Gdata_Books_VolumeEntry \Zend_Gdata_Query string null \Zend_Gdata_Books_VolumeEntry $entry $location null deleteVolume deleteVolume Delete a Volume \Zend_Gdata_Books_VolumeEntry void $entry Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/App/Feed.php Zend/Gdata/Entry.php Zend/Gdata/Extension/OpenSearchTotalResults.php Zend/Gdata/Extension/OpenSearchStartIndex.php Zend/Gdata/Extension/OpenSearchItemsPerPage.php Zend/Gdata/App/IOException.php \Zend_Gdata_App_Feed Zend_Gdata_Feed \Zend_Gdata_Feed The Gdata flavor of an Atom Feed $_entryClassName 'Zend_Gdata_Entry' The classname for individual feed elements. string $_totalResults null The openSearch:totalResults element \Zend_Gdata_Extension_OpenSearchTotalResults null $_startIndex null The openSearch:startIndex element \Zend_Gdata_Extension_OpenSearchStartIndex null $_itemsPerPage null The openSearch:itemsPerPage element \Zend_Gdata_Extension_OpenSearchItemsPerPage null __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute setTotalResults setTotalResults Set the value of the totalResults property. \Zend_Gdata_Extension_OpenSearchTotalResults null \Zend_Gdata_Feed $value getTotalResults getTotalResults Get the value of the totalResults property. \Zend_Gdata_Extension_OpenSearchTotalResults null setStartIndex setStartIndex Set the start index property for feed paging. \Zend_Gdata_Extension_OpenSearchStartIndex null \Zend_Gdata_Feed $value getStartIndex getStartIndex Get the value of the startIndex property. \Zend_Gdata_Extension_OpenSearchStartIndex null setItemsPerPage setItemsPerPage Set the itemsPerPage property. \Zend_Gdata_Extension_OpenSearchItemsPerPage null \Zend_Gdata_Feed $value getItemsPerPage getItemsPerPage Get the value of the itemsPerPage property. \Zend_Gdata_Extension_OpenSearchItemsPerPage null No DocBlock was found for method __construct() No DocBlock was found for method getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Util.php Zend_Gdata_App_Util Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend_Gdata_Query \Zend_Gdata_Query Provides a mechanism to build a query URL for Gdata services. <p>Queries are not defined for APP, but are provided by Gdata services as an extension.</p> $_params array() Query parameters. array $_defaultFeedUri null Default URL string $_url null Base URL TODO: Add setters and getters string $_category null Category for the query string __construct __construct Create Gdata_Query object $url null getQueryString getQueryString string resetParameters resetParameters getQueryUrl getQueryUrl string setParam setParam string string \Zend_Gdata_Query $name $value getParam getParam string $name setAlt setAlt string \Zend_Gdata_Query $value setMaxResults setMaxResults int \Zend_Gdata_Query $value setQuery setQuery string \Zend_Gdata_Query $value setStartIndex setStartIndex int \Zend_Gdata_Query $value setUpdatedMax setUpdatedMax string \Zend_Gdata_Query $value setUpdatedMin setUpdatedMin string \Zend_Gdata_Query $value setPublishedMax setPublishedMax string \Zend_Gdata_Query $value setPublishedMin setPublishedMin string \Zend_Gdata_Query $value setAuthor setAuthor string \Zend_Gdata_Query $value getAlt getAlt string getMaxResults getMaxResults int getQuery getQuery string getStartIndex getStartIndex int getUpdatedMax getUpdatedMax string getUpdatedMin getUpdatedMin string getPublishedMax getPublishedMax string getPublishedMin getPublishedMin string getAuthor getAuthor string setCategory setCategory string \Zend_Gdata_Query $value getCategory getCategory __get __get $name __set __set $name $val Argument $url is missing from the Docblock of __construct() No short description for method getQueryString() No short description for method resetParameters() No short description for method getQueryUrl() No short description for method setParam() No short description for method getParam() No short description for method setAlt() No short description for method setMaxResults() No short description for method setQuery() No short description for method setStartIndex() No short description for method setUpdatedMax() No short description for method setUpdatedMin() No short description for method setPublishedMax() No short description for method setPublishedMin() No short description for method setAuthor() No short description for method getAlt() No short description for method getMaxResults() No short description for method getQuery() No short description for method getStartIndex() No short description for method getUpdatedMax() No short description for method getUpdatedMin() No short description for method getPublishedMax() No short description for method getPublishedMin() No short description for method getAuthor() No short description for method setCategory() No DocBlock was found for method getCategory() No DocBlock was found for method __get() No DocBlock was found for method __set() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Spreadsheets/Extension/Custom.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Entry Zend_Gdata_Spreadsheets_ListEntry \Zend_Gdata_Spreadsheets_ListEntry Concrete class for working with List entries. $_entryClassName 'Zend_Gdata_Spreadsheets_ListEntry' $_custom array() List of custom row elements (Zend_Gdata_Spreadsheets_Extension_Custom), indexed by order added to this entry. array $_customByName array() List of custom row elements (Zend_Gdata_Spreadsheets_Extension_Custom), indexed by element name. array __construct __construct Constructs a new Zend_Gdata_Spreadsheets_ListEntry object. \DOMElement $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getCustom getCustom Gets the row elements contained by this list entry. array getCustomByName getCustomByName Gets a single row element contained by this list entry using its name. string mixed $name null setCustom setCustom Sets the row elements contained by this list entry. <p>If any custom row elements were previously stored, they will be overwritten.</p> array \Zend_Gdata_Spreadsheets_ListEntry $custom addCustom addCustom Add an individual custom row element to this list entry. \Zend_Gdata_Spreadsheets_Extension_Custom \Zend_Gdata_Spreadsheets_ListEntry $custom removeCustom removeCustom Remove an individual row element from this list entry by index. <p>This will cause the array to be re-indexed.</p> int \Zend_Gdata_Spreadsheets_ListEntry \Zend_Gdata_App_InvalidArgumentException $index removeCustomByName removeCustomByName Remove an individual row element from this list entry by name. string \Zend_Gdata_Spreadsheets_ListEntry \Zend_Gdata_App_InvalidArgumentException $name No DocBlock was found for property $_entryClassName No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Util.php Zend_Gdata_App_util Zend/Gdata/Query.php Zend_Gdata_Query Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php \Zend_Gdata_Query Zend_Gdata_Spreadsheets_DocumentQuery \Zend_Gdata_Spreadsheets_DocumentQuery Assists in constructing queries for Google Spreadsheets documents SPREADSHEETS_FEED_URI SPREADSHEETS_FEED_URI 'https://spreadsheets.google.com/feeds' $_defaultFeedUri self::SPREADSHEETS_FEED_URI $_documentType $_visibility 'private' $_projection 'full' $_spreadsheetKey null $_worksheetId null __construct __construct Constructs a new Zend_Gdata_Spreadsheets_DocumentQuery object. setSpreadsheetKey setSpreadsheetKey Sets the spreadsheet key for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getSpreadsheetKey getSpreadsheetKey Gets the spreadsheet key for this query. string setWorksheetId setWorksheetId Sets the worksheet id for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getWorksheetId getWorksheetId Gets the worksheet id for this query. string setDocumentType setDocumentType Sets the document type for this query. string \Zend_Gdata_Spreadsheets_DocumentQuery $value getDocumentType getDocumentType Gets the document type for this query. string setProjection setProjection Sets the projection for this query. string \Zend_Gdata_Spreadsheets_DocumentQuery $value setVisibility setVisibility Sets the visibility for this query. \Zend_Gdata_Spreadsheets_DocumentQuery $value getProjection getProjection Gets the projection for this query. string getVisibility getVisibility Gets the visibility for this query. string setTitle setTitle Sets the title attribute for this query. string \Zend_Gdata_Spreadsheets_DocumentQuery $value setTitleExact setTitleExact Sets the title-exact attribute for this query. string \Zend_Gdata_Spreadsheets_DocumentQuery $value getTitle getTitle Gets the title attribute for this query. string getTitleExact getTitleExact Gets the title-exact attribute for this query. string appendVisibilityProjection appendVisibilityProjection getQueryUrl getQueryUrl Gets the full query URL for this query. string getQueryString getQueryString Gets the attribute query string for this query. string No DocBlock was found for property $_defaultFeedUri No DocBlock was found for property $_documentType No DocBlock was found for property $_visibility No DocBlock was found for property $_projection No DocBlock was found for property $_spreadsheetKey No DocBlock was found for property $_worksheetId Argument $value is missing from the Docblock of setVisibility() No DocBlock was found for method appendVisibilityProjection() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Spreadsheets_Extension_RowCount \Zend_Gdata_Spreadsheets_Extension_RowCount Concrete class for working with RowCount elements. $_rootElement 'rowCount' $_rootNamespace 'gs' __construct __construct Constructs a new Zend_Gdata_Spreadsheets_Extension_RowCount object. string $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Spreadsheets_Extension_ColCount \Zend_Gdata_Spreadsheets_Extension_ColCount Concrete class for working with colCount elements. $_rootElement 'colCount' $_rootNamespace 'gs' __construct __construct Constructs a new Zend_Gdata_Spreadsheets_Extension_ColCount element. string $text null No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Spreadsheets_Extension_Custom \Zend_Gdata_Spreadsheets_Extension_Custom Concrete class for working with custom gsx elements. $_rootElement null $_rootNamespace 'gsx' __construct __construct Constructs a new Zend_Gdata_Spreadsheets_Extension_Custom object. string string $column null $value null getDOM getDOM $doc null $majorVersion 1 $minorVersion null transferFromDOM transferFromDOM Transfers each child and attribute into member variables. <p>This is called when XML is received over the wire and the data model needs to be built to represent this XML.</p> \DOMNode $node setColumnName setColumnName Sets the column/tag name of the element. string $column getColumnName getColumnName Gets the column name of the element string No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Spreadsheets_Extension_Cell \Zend_Gdata_Spreadsheets_Extension_Cell Concrete class for working with cell elements. $_rootElement 'cell' $_rootNamespace 'gs' $_row null The row attribute of this cell string $_col null The column attribute of this cell string $_inputValue null The inputValue attribute of this cell string $_numericValue null The numericValue attribute of this cell string __construct __construct Constructs a new Zend_Gdata_Spreadsheets_Extension_Cell element. string string string string string $text null $row null $col null $inputValue null $numericValue null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute getRow getRow Gets the row attribute of the Cell element. string getColumn getColumn Gets the column attribute of the Cell element. string getInputValue getInputValue Gets the input value attribute of the Cell element. string getNumericValue getNumericValue Gets the numeric value attribute of the Cell element. string setRow setRow Sets the row attribute of the Cell element. string $row setColumn setColumn Sets the column attribute of the Cell element. string $col setInputValue setInputValue Sets the input value attribute of the Cell element. string $inputValue setNumericValue setNumericValue Sets the numeric value attribute of the Cell element. string $numericValue No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Spreadsheets_SpreadsheetFeed \Zend_Gdata_Spreadsheets_SpreadsheetFeed $_entryClassName 'Zend_Gdata_Spreadsheets_SpreadsheetEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Spreadsheets_SpreadsheetFeed' The classname for the feed. string __construct __construct Constructs a new Zend_Gdata_Spreadsheets_SpreadsheetFeed object. \DOMElement $element null No short description for class \Zend_Gdata_Spreadsheets_SpreadsheetFeed Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Util.php Zend_Gdata_App_util Zend/Gdata/Query.php Zend_Gdata_Query Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php \Zend_Gdata_Query Zend_Gdata_Spreadsheets_CellQuery \Zend_Gdata_Spreadsheets_CellQuery Assists in constructing queries for Google Spreadsheets cells SPREADSHEETS_CELL_FEED_URI SPREADSHEETS_CELL_FEED_URI 'https://spreadsheets.google.com/feeds/cells' $_defaultFeedUri self::SPREADSHEETS_CELL_FEED_URI $_visibility 'private' $_projection 'full' $_spreadsheetKey null $_worksheetId 'default' $_cellId null __construct __construct Constructs a new Zend_Gdata_Spreadsheets_CellQuery object. string $url null setSpreadsheetKey setSpreadsheetKey Sets the spreadsheet key for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getSpreadsheetKey getSpreadsheetKey Gets the spreadsheet key for this query. string setWorksheetId setWorksheetId Sets the worksheet id for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getWorksheetId getWorksheetId Gets the worksheet id for this query. string setCellId setCellId Sets the cell id for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getCellId getCellId Gets the cell id for this query. string setProjection setProjection Sets the projection for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value setVisibility setVisibility Sets the visibility for this query. \Zend_Gdata_Spreadsheets_CellQuery $value getProjection getProjection Gets the projection for this query. string getVisibility getVisibility Gets the visibility for this query. string setMinRow setMinRow Sets the min-row attribute for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getMinRow getMinRow Gets the min-row attribute for this query. string setMaxRow setMaxRow Sets the max-row attribute for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getMaxRow getMaxRow Gets the max-row attribute for this query. string setMinCol setMinCol Sets the min-col attribute for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getMinCol getMinCol Gets the min-col attribute for this query. string setMaxCol setMaxCol Sets the max-col attribute for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getMaxCol getMaxCol Gets the max-col attribute for this query. string setRange setRange Sets the range attribute for this query. string \Zend_Gdata_Spreadsheets_CellQuery $value getRange getRange Gets the range attribute for this query. string setReturnEmpty setReturnEmpty Sets the return-empty attribute for this query. mixed \Zend_Gdata_Spreadsheets_CellQuery $value getReturnEmpty getReturnEmpty Gets the return-empty attribute for this query. string getQueryUrl getQueryUrl Gets the full query URL for this query. string getQueryString getQueryString Gets the attribute query string for this query. string No DocBlock was found for property $_defaultFeedUri No DocBlock was found for property $_visibility No DocBlock was found for property $_projection No DocBlock was found for property $_spreadsheetKey No DocBlock was found for property $_worksheetId No DocBlock was found for property $_cellId Argument $value is missing from the Docblock of setVisibility() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Spreadsheets/Extension/RowCount.php Zend/Gdata/Spreadsheets/Extension/ColCount.php \Zend_Gdata_Feed Zend_Gdata_Spreadsheets_CellFeed \Zend_Gdata_Spreadsheets_CellFeed $_entryClassName 'Zend_Gdata_Spreadsheets_CellEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Spreadsheets_CellFeed' The classname for the feed. string $_rowCount null The row count for the feed. \Zend_Gdata_Spreadsheets_Extension_RowCount $_colCount null The column count for the feed. \Zend_Gdata_Spreadsheets_Extension_ColCount __construct __construct Constructs a new Zend_Gdata_Spreadsheets_CellFeed object. \DOMElement $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getRowCount getRowCount Gets the row count for this feed. string getColumnCount getColumnCount Gets the column count for this feed. string setRowCount setRowCount Sets the row count for this feed. string $rowCount setColumnCount setColumnCount Sets the column count for this feed. string $colCount No short description for class \Zend_Gdata_Spreadsheets_CellFeed No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Util.php Zend_Gdata_App_util Zend/Gdata/Query.php Zend_Gdata_Query Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php \Zend_Gdata_Query Zend_Gdata_Spreadsheets_ListQuery \Zend_Gdata_Spreadsheets_ListQuery Assists in constructing queries for Google Spreadsheets lists SPREADSHEETS_LIST_FEED_URI SPREADSHEETS_LIST_FEED_URI 'https://spreadsheets.google.com/feeds/list' $_defaultFeedUri self::SPREADSHEETS_LIST_FEED_URI $_visibility 'private' $_projection 'full' $_spreadsheetKey null $_worksheetId 'default' $_rowId null __construct __construct Constructs a new Zend_Gdata_Spreadsheets_ListQuery object. setSpreadsheetKey setSpreadsheetKey Sets the spreadsheet key for the query. string \Zend_Gdata_Spreadsheets_CellQuery $value getSpreadsheetKey getSpreadsheetKey Gets the spreadsheet key for the query. string setWorksheetId setWorksheetId Sets the worksheet id for the query. string \Zend_Gdata_Spreadsheets_CellQuery $value getWorksheetId getWorksheetId Gets the worksheet id for the query. string setRowId setRowId Sets the row id for the query. string \Zend_Gdata_Spreadsheets_CellQuery $value getRowId getRowId Gets the row id for the query. string setProjection setProjection Sets the projection for the query. string \Zend_Gdata_Spreadsheets_ListQuery $value setVisibility setVisibility Sets the visibility for this query. string \Zend_Gdata_Spreadsheets_ListQuery $value getProjection getProjection Gets the projection for this query. string getVisibility getVisibility Gets the visibility for this query. string setSpreadsheetQuery setSpreadsheetQuery Sets the spreadsheet key for this query. string \Zend_Gdata_Spreadsheets_DocumentQuery $value getSpreadsheetQuery getSpreadsheetQuery Gets the spreadsheet key for this query. string setOrderBy setOrderBy Sets the orderby attribute for this query. string \Zend_Gdata_Spreadsheets_DocumentQuery $value getOrderBy getOrderBy Gets the orderby attribute for this query. string setReverse setReverse Sets the reverse attribute for this query. string \Zend_Gdata_Spreadsheets_DocumentQuery $value getReverse getReverse Gets the reverse attribute for this query. string getQueryUrl getQueryUrl Gets the full query URL for this query. string getQueryString getQueryString Gets the attribute query string for this query. string No DocBlock was found for property $_defaultFeedUri No DocBlock was found for property $_visibility No DocBlock was found for property $_projection No DocBlock was found for property $_spreadsheetKey No DocBlock was found for property $_worksheetId No DocBlock was found for property $_rowId Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php \Zend_Gdata_Entry Zend_Gdata_Spreadsheets_SpreadsheetEntry \Zend_Gdata_Spreadsheets_SpreadsheetEntry Concrete class for working with Atom entries. $_entryClassName 'Zend_Gdata_Spreadsheets_SpreadsheetEntry' __construct __construct Constructs a new Zend_Gdata_Spreadsheets_SpreadsheetEntry object. \DOMElement $element null getWorksheets getWorksheets Returns the worksheets in this spreadsheet \Zend_Gdata_Spreadsheets_WorksheetFeed No DocBlock was found for property $_entryClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Spreadsheets_ListFeed \Zend_Gdata_Spreadsheets_ListFeed $_entryClassName 'Zend_Gdata_Spreadsheets_ListEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Spreadsheets_ListFeed' The classname for the feed. string __construct __construct Constructs a new Zend_Gdata_Spreadsheets_ListFeed object. \DOMElement $element null No short description for class \Zend_Gdata_Spreadsheets_ListFeed Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Spreadsheets/Extension/RowCount.php Zend/Gdata/Spreadsheets/Extension/ColCount.php \Zend_Gdata_Entry Zend_Gdata_Spreadsheets_WorksheetEntry \Zend_Gdata_Spreadsheets_WorksheetEntry Concrete class for working with Worksheet entries. $_entryClassName 'Zend_Gdata_Spreadsheets_WorksheetEntry' $_rowCount null $_colCount null __construct __construct Constructs a new Zend_Gdata_Spreadsheets_WorksheetEntry object. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child getRowCount getRowCount Gets the row count for this entry. string getColumnCount getColumnCount Gets the column count for this entry. string setRowCount setRowCount Sets the row count for this entry. string $rowCount setColumnCount setColumnCount Sets the column count for this entry. string $colCount getContentsAsRows getContentsAsRows Returns the content of all rows as an associative array array getContentsAsCells getContentsAsCells Returns the content of all cells as an associative array, indexed off the cell location (ie 'A1', 'D4', etc). <p>Each element of the array is an associative array with a 'value' and a 'function'. Only non-empty cells are returned by default. 'range' is the value of the 'range' query parameter specified at: http://code.google.com/apis/spreadsheets/reference.html#cells_Parameters</p> string boolean array $range null $empty false No DocBlock was found for property $_entryClassName No DocBlock was found for property $_rowCount No DocBlock was found for property $_colCount Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Spreadsheets/Extension/Cell.php \Zend_Gdata_Entry Zend_Gdata_Spreadsheets_CellEntry \Zend_Gdata_Spreadsheets_CellEntry Concrete class for working with Cell entries. $_entryClassName 'Zend_Gdata_Spreadsheets_CellEntry' $_cell __construct __construct Constructs a new Zend_Gdata_Spreadsheets_CellEntry object. string \DOMElement $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getCell getCell Gets the Cell element of this Cell Entry. \Zend_Gdata_Spreadsheets_Extension_Cell setCell setCell Sets the Cell element of this Cell Entry. \Zend_Gdata_Spreadsheets_Extension_Cell \Zend_Gdata_Spreadsheets_CellEntry $cell No DocBlock was found for property $_entryClassName No DocBlock was found for property $_cell Name of argument $element does not match with the DocBlock's name $uri in __construct() Parameter $uri could not be found in __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Spreadsheets_WorksheetFeed \Zend_Gdata_Spreadsheets_WorksheetFeed $_entryClassName 'Zend_Gdata_Spreadsheets_WorksheetEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Spreadsheets_WorksheetFeed' The classname for the feed. string __construct __construct Constructs a new Zend_Gdata_Spreadsheets_WorksheetFeed object. \DOMElement $element null No short description for class \Zend_Gdata_Spreadsheets_WorksheetFeed Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/App/Extension.php Zend/Gdata/Extension/Where.php Zend/Gdata/Extension/When.php Zend/Gdata/Extension/Who.php Zend/Gdata/Extension/Recurrence.php Zend/Gdata/Extension/EventStatus.php Zend/Gdata/Extension/Comments.php Zend/Gdata/Extension/Transparency.php Zend/Gdata/Extension/Visibility.php Zend/Gdata/Extension/ExtendedProperty.php Zend/Gdata/Extension/OriginalEvent.php Zend/Gdata/Extension/EntryLink.php Zend/Gdata/Extension/RecurrenceException.php \Zend_Gdata_Entry Zend_Gdata_Kind_EventEntry \Zend_Gdata_Kind_EventEntry Data model for the Gdata Event "Kind". <p>Google Calendar has a separate EventEntry class which extends this.</p> $_who array() $_when array() $_where array() $_recurrence null $_eventStatus null $_comments null $_transparency null $_visibility null $_recurrenceException array() $_extendedProperty array() $_originalEvent null $_entryLink null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getWhen getWhen setWhen setWhen array \Zend_Gdata_Kind_EventEntry $value getWhere getWhere setWhere setWhere array \Zend_Gdata_Kind_EventEntry $value getWho getWho setWho setWho array \Zend_Gdata_Kind_EventEntry $value getRecurrence getRecurrence setRecurrence setRecurrence array \Zend_Gdata_Kind_EventEntry $value getEventStatus getEventStatus setEventStatus setEventStatus array \Zend_Gdata_Kind_EventEntry $value getComments getComments setComments setComments array \Zend_Gdata_Kind_EventEntry $value getTransparency getTransparency setTransparency setTransparency \Zend_Gdata_Transparency \Zend_Gdata_Kind_EventEntry $value getVisibility getVisibility setVisibility setVisibility \Zend_Gdata_Visibility \Zend_Gdata_Kind_EventEntry $value getRecurrenceExcption getRecurrenceExcption setRecurrenceException setRecurrenceException array \Zend_Gdata_Kind_EventEntry $value getExtendedProperty getExtendedProperty setExtendedProperty setExtendedProperty array \Zend_Gdata_Kind_EventEntry $value getOriginalEvent getOriginalEvent setOriginalEvent setOriginalEvent \Zend_Gdata_Extension_OriginalEvent \Zend_Gdata_Kind_EventEntry $value getEntryLink getEntryLink Get this entry's EntryLink element. \Zend_Gdata_Extension_EntryLink setEntryLink setEntryLink Set the child's EntryLink element. \Zend_Gdata_Extension_EntryLink \Zend_Gdata_Extension_Who $value No DocBlock was found for property $_who No DocBlock was found for property $_when No DocBlock was found for property $_where No DocBlock was found for property $_recurrence No DocBlock was found for property $_eventStatus No DocBlock was found for property $_comments No DocBlock was found for property $_transparency No DocBlock was found for property $_visibility No DocBlock was found for property $_recurrenceException No DocBlock was found for property $_extendedProperty No DocBlock was found for property $_originalEvent No DocBlock was found for property $_entryLink No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method getWhen() No short description for method setWhen() No DocBlock was found for method getWhere() No short description for method setWhere() No DocBlock was found for method getWho() No short description for method setWho() No DocBlock was found for method getRecurrence() No short description for method setRecurrence() No DocBlock was found for method getEventStatus() No short description for method setEventStatus() No DocBlock was found for method getComments() No short description for method setComments() No DocBlock was found for method getTransparency() No short description for method setTransparency() No DocBlock was found for method getVisibility() No short description for method setVisibility() No DocBlock was found for method getRecurrenceExcption() No short description for method setRecurrenceException() No DocBlock was found for method getExtendedProperty() No short description for method setExtendedProperty() No DocBlock was found for method getOriginalEvent() No short description for method setOriginalEvent() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/Gapps/UserFeed.php Zend/Gdata/Gapps/NicknameFeed.php Zend/Gdata/Gapps/GroupFeed.php Zend/Gdata/Gapps/MemberFeed.php Zend/Gdata/Gapps/OwnerFeed.php Zend/Gdata/Gapps/EmailListFeed.php Zend/Gdata/Gapps/EmailListRecipientFeed.php Zend/Gdata/App/IOException.php Zend/Gdata/Gapps/ServiceException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Loader.php Zend/Gdata/App/Exception.php \Zend_Gdata Zend_Gdata_Gapps \Zend_Gdata_Gapps Service class for interacting with the Google Apps Provisioning API. <p>Like other service classes in this module, this class provides access via an HTTP client to Google servers for working with entries and feeds.</p> <p>Because of the nature of this API, all access must occur over an authenticated connection.</p> APPS_BASE_FEED_URI APPS_BASE_FEED_URI 'https://apps-apis.google.com/a/feeds' AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'apps' APPS_USER_PATH APPS_USER_PATH '/user/2.0' Path to user feeds on the Google Apps server. APPS_NICKNAME_PATH APPS_NICKNAME_PATH '/nickname/2.0' Path to nickname feeds on the Google Apps server. APPS_GROUP_PATH APPS_GROUP_PATH '/group/2.0' Path to group feeds on the Google Apps server. APPS_EMAIL_LIST_PATH APPS_EMAIL_LIST_PATH '/emailList/2.0' Path to email list feeds on the Google Apps server. APPS_EMAIL_LIST_RECIPIENT_POSTFIX APPS_EMAIL_LIST_RECIPIENT_POSTFIX '/recipient' Path to email list recipient feeds on the Google Apps server. $_domain null The domain which is being administered via the Provisioning API. string $namespaces array(array('apps', 'http://schemas.google.com/apps/2006', 1, 0)) Namespaces used for Zend_Gdata_Gapps array __construct __construct Create Gdata_Gapps object \Zend_Http_Client string string $client null $domain null $applicationId 'MyCompany-MyApp-1.0' throwServiceExceptionIfDetected throwServiceExceptionIfDetected Convert an exception to an ServiceException if an AppsForYourDomain XML document is contained within the original exception's HTTP response. <p>If conversion fails, throw the original error.</p> \Zend_Gdata_Exception \Zend_Gdata_Gapps_ServiceException mixed $e import import Imports a feed located at $uri. <p>This method overrides the default behavior of Zend_Gdata_App, providing support for Zend_Gdata_Gapps_ServiceException.</p> string \Zend_Http_Client string \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException \Zend_Gdata_App_Feed $uri $client null $className 'Zend_Gdata_App_Feed' get get GET a URI using client object. <p>This method overrides the default behavior of Zend_Gdata_App, providing support for Zend_Gdata_Gapps_ServiceException.</p> string array \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException \Zend_Http_Response $uri $extraHeaders array() post post POST data with client object. <p>This method overrides the default behavior of Zend_Gdata_App, providing support for Zend_Gdata_Gapps_ServiceException.</p> mixed string integer string array \Zend_Http_Response \Zend_Gdata_App_HttpException \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_Gapps_ServiceException $data $uri null $remainingRedirects null $contentType null $extraHeaders null put put PUT data with client object This method overrides the default behavior of Zend_Gdata_App, providing support for Zend_Gdata_Gapps_ServiceException. mixed string integer string array \Zend_Http_Response \Zend_Gdata_App_HttpException \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_Gapps_ServiceException $data $uri null $remainingRedirects null $contentType null $extraHeaders null delete delete DELETE entry with client object This method overrides the default behavior of Zend_Gdata_App, providing support for Zend_Gdata_Gapps_ServiceException. mixed integer void \Zend_Gdata_App_HttpException \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_Gapps_ServiceException $data $remainingRedirects null setDomain setDomain Set domain for this service instance. <p>This should be a fully qualified domain, such as 'foo.example.com'.</p> <p>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.</p> string $value getDomain getDomain Get domain for this service instance. <p>This should be a fully qualified domain, such as 'foo.example.com'. If no domain is set, null will be returned.</p> string getBaseUrl getBaseUrl Returns the base URL used to access the Google Apps service, based on the current domain. <p>The current domain can be temporarily overridden by providing a fully qualified domain as $domain.</p> string \Zend_Gdata_App_InvalidArgumentException $domain null getUserFeed getUserFeed Retrieve a UserFeed containing multiple UserEntry objects. mixed \Zend_Gdata_Gapps_UserFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getNicknameFeed getNicknameFeed Retreive NicknameFeed object containing multiple NicknameEntry objects. mixed \Zend_Gdata_Gapps_NicknameFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getGroupFeed getGroupFeed Retreive GroupFeed object containing multiple GroupEntry objects. mixed \Zend_Gdata_Gapps_GroupFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getMemberFeed getMemberFeed Retreive MemberFeed object containing multiple MemberEntry objects. mixed \Zend_Gdata_Gapps_MemberFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getOwnerFeed getOwnerFeed Retreive OwnerFeed object containing multiple OwnerEntry objects. mixed \Zend_Gdata_Gapps_OwnerFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getEmailListFeed getEmailListFeed Retreive EmailListFeed object containing multiple EmailListEntry objects. mixed \Zend_Gdata_Gapps_EmailListFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getEmailListRecipientFeed getEmailListRecipientFeed Retreive EmailListRecipientFeed object containing multiple EmailListRecipientEntry objects. mixed \Zend_Gdata_Gapps_EmailListRecipientFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location getUserEntry getUserEntry Retreive a single UserEntry object. mixed \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location getNicknameEntry getNicknameEntry Retreive a single NicknameEntry object. mixed \Zend_Gdata_Gapps_NicknameEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location getGroupEntry getGroupEntry Retreive a single GroupEntry object. mixed \Zend_Gdata_Gapps_GroupEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getMemberEntry getMemberEntry Retreive a single MemberEntry object. mixed \Zend_Gdata_Gapps_MemberEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getOwnerEntry getOwnerEntry Retreive a single OwnerEntry object. mixed \Zend_Gdata_Gapps_OwnerEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location null getEmailListEntry getEmailListEntry Retreive a single EmailListEntry object. mixed \Zend_Gdata_Gapps_EmailListEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location getEmailListRecipientEntry getEmailListRecipientEntry Retreive a single EmailListRecipientEntry object. mixed \Zend_Gdata_Gapps_EmailListRecipientEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $location insertUser insertUser Create a new user from a UserEntry. \Zend_Gdata_Gapps_UserEntry string \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $user $uri null insertNickname insertNickname Create a new nickname from a NicknameEntry. \Zend_Gdata_Gapps_NicknameEntry string \Zend_Gdata_Gapps_NicknameEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $nickname $uri null insertGroup insertGroup Create a new group from a GroupEntry. \Zend_Gdata_Gapps_GroupEntry string \Zend_Gdata_Gapps_GroupEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $group $uri null insertMember insertMember Create a new member from a MemberEntry. \Zend_Gdata_Gapps_MemberEntry string \Zend_Gdata_Gapps_MemberEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $member $uri null insertOwner insertOwner Create a new group from a OwnerEntry. \Zend_Gdata_Gapps_OwnerEntry string \Zend_Gdata_Gapps_OwnerEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $owner $uri null insertEmailList insertEmailList Create a new email list from an EmailListEntry. \Zend_Gdata_Gapps_EmailListEntry string \Zend_Gdata_Gapps_EmailListEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $emailList $uri null insertEmailListRecipient insertEmailListRecipient Create a new email list recipient from an EmailListRecipientEntry. \Zend_Gdata_Gapps_EmailListRecipientEntry string \Zend_Gdata_Gapps_EmailListRecipientEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $recipient $uri null __call __call Provides a magic factory method to instantiate new objects with shorter syntax than would otherwise be required by the Zend Framework naming conventions. <p>For more information, see Zend_Gdata_App::__call().</p> <p>This overrides the default behavior of __call() so that query classes do not need to have their domain manually set when created with a magic factory method.</p> string array \Zend_Gdata_App_Exception $method $args createUser createUser Create a new user entry and send it to the Google Apps servers. string string string string string \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $username $givenName $familyName $password $passwordHashFunction null $quotaLimitInMB null retrieveUser retrieveUser Retrieve a user based on their username. string \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_App_HttpException $username retrievePageOfUsers retrievePageOfUsers Retrieve a page of users in alphabetical order, starting with the provided username. string \Zend_Gdata_Gapps_UserFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $startUsername null retrieveAllUsers retrieveAllUsers Retrieve all users in the current domain. <p>Be aware that calling this function on a domain with many users will take a signifigant amount of time to complete. On larger domains this may may cause execution to timeout without proper precautions in place.</p> \Zend_Gdata_Gapps_UserFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException updateUser updateUser Overwrite a specified username with the provided UserEntry. <p>The UserEntry does not need to contain an edit link.</p> <p>This method is provided for compliance with the Google Apps Provisioning API specification. Normally users will instead want to call UserEntry::save() instead.</p> string \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $username $userEntry suspendUser suspendUser Mark a given user as suspended. string \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $username restoreUser restoreUser Mark a given user as not suspended. string \Zend_Gdata_Gapps_UserEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $username deleteUser deleteUser Delete a user by username. string \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $username createNickname createNickname Create a nickname for a given user. string string \Zend_Gdata_Gapps_NicknameEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $username $nickname retrieveNickname retrieveNickname Retrieve the entry for a specified nickname. string \Zend_Gdata_Gapps_NicknameEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $nickname retrieveNicknames retrieveNicknames Retrieve all nicknames associated with a specific username. string \Zend_Gdata_Gapps_NicknameFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $username retrievePageOfNicknames retrievePageOfNicknames Retrieve a page of nicknames in alphabetical order, starting with the provided nickname. string \Zend_Gdata_Gapps_NicknameFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $startNickname null retrieveAllNicknames retrieveAllNicknames Retrieve all nicknames in the current domain. <p>Be aware that calling this function on a domain with many nicknames will take a signifigant amount of time to complete. On larger domains this may may cause execution to timeout without proper precautions in place.</p> \Zend_Gdata_Gapps_NicknameFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException deleteNickname deleteNickname Delete a specified nickname. string \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $nickname createGroup createGroup Create a new group. string string string string \Zend_Gdata_Gapps_GroupEntry $groupId $groupName $description null $emailPermission null retrieveGroup retrieveGroup Retrieves a group based on group id string \Zend_Gdata_Gapps_GroupEntry $groupId retrieveAllGroups retrieveAllGroups Retrieve all groups in the current domain. <p>Be aware that calling this function on a domain with many groups will take a signifigant amount of time to complete. On larger domains this may may cause execution to timeout without proper precautions in place.</p> \Zend_Gdata_Gapps_GroupFeed deleteGroup deleteGroup Delete a group string $groupId isMember isMember Check to see if a member id or group id is a member of group string string bool $memberId $groupId addMemberToGroup addMemberToGroup Add an email address to a group as a member string string \Zend_Gdata_Gapps_MemberEntry $recipientAddress $groupId removeMemberFromGroup removeMemberFromGroup Remove a member id from a group string string $memberId $groupId retrieveAllMembers retrieveAllMembers Retrieves all the members of a group string \Zend_Gdata_Gapps_MemberFeed $groupId addOwnerToGroup addOwnerToGroup Add an email as an owner of a group string string \Zend_Gdata_Gapps_OwnerEntry $email $groupId retrieveGroupOwners retrieveGroupOwners Retrieves all the owners of a group string \Zend_Gdata_Gapps_OwnerFeed $groupId isOwner isOwner Checks to see if an email is an owner of a group string string bool $email $groupId removeOwnerFromGroup removeOwnerFromGroup Remove email as an owner of a group string string $email $groupId updateGroup updateGroup Update group properties with new values. <p>any property not defined will not be updated</p> string string string string \Zend_Gdata_Gapps_GroupEntry $groupId $groupName null $description null $emailPermission null retrieveGroups retrieveGroups Retrieve all of the groups that a user is a member of string bool \Zend_Gdata_Gapps_GroupFeed $memberId $directOnly null retrievePageOfGroups retrievePageOfGroups Retrieve a page of groups in alphabetical order, starting with the provided group. string \Zend_Gdata_Gapps_GroupFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $startGroup null retrievePageOfMembers retrievePageOfMembers Gets page of Members string string \Zend_Gdata_Gapps_MemberFeed $groupId $startMember null createEmailList createEmailList Create a new email list. string \Zend_Gdata_Gapps_EmailListEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $emailList retrieveEmailLists retrieveEmailLists Retrieve all email lists associated with a recipient. string \Zend_Gdata_Gapps_EmailListFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $recipient retrievePageOfEmailLists retrievePageOfEmailLists Retrieve a page of email lists in alphabetical order, starting with the provided email list. string \Zend_Gdata_Gapps_EmailListFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $startNickname null retrieveAllEmailLists retrieveAllEmailLists Retrieve all email lists associated with the curent domain. <p>Be aware that calling this function on a domain with many email lists will take a signifigant amount of time to complete. On larger domains this may may cause execution to timeout without proper precautions in place.</p> \Zend_Gdata_Gapps_EmailListFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException deleteEmailList deleteEmailList Delete a specified email list. string \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $emailList addRecipientToEmailList addRecipientToEmailList Add a specified recipient to an existing emailList. string string \Zend_Gdata_Gapps_EmailListRecipientEntry \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $recipientAddress $emailList retrievePageOfRecipients retrievePageOfRecipients Retrieve a page of email list recipients in alphabetical order, starting with the provided email list recipient. string string \Zend_Gdata_Gapps_EmailListRecipientFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $emailList $startRecipient null retrieveAllRecipients retrieveAllRecipients Retrieve all recipients associated with an email list. <p>Be aware that calling this function on a domain with many email lists will take a signifigant amount of time to complete. On larger domains this may may cause execution to timeout without proper precautions in place.</p> string \Zend_Gdata_Gapps_EmailListRecipientFeed \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $emailList removeRecipientFromEmailList removeRecipientFromEmailList Remove a specified recipient from an email list. string string \Zend_Gdata_App_Exception \Zend_Gdata_App_HttpException \Zend_Gdata_Gapps_ServiceException $recipientAddress $emailList Name of argument $extraHeaders does not match with the DocBlock's name $extraHaders in post() Parameter $extraHaders could not be found in post() Name of argument $extraHeaders does not match with the DocBlock's name $extraHaders in put() Parameter $extraHaders could not be found in put() Name of argument $passwordHashFunction does not match with the DocBlock's name $quotaLimitInMB in createUser() Argument $quotaLimitInMB is missing from the Docblock of createUser() Name of argument $recipient does not match with the DocBlock's name $username in retrieveEmailLists() Parameter $username could not be found in retrieveEmailLists() Name of argument $startNickname does not match with the DocBlock's name $startEmailListName in retrievePageOfEmailLists() Parameter $startEmailListName could not be found in retrievePageOfEmailLists() Name of argument $emailList does not match with the DocBlock's name $emaiList in retrievePageOfRecipients() Parameter $emaiList could not be found in retrievePageOfRecipients() Name of argument $emailList does not match with the DocBlock's name $emaiList in retrieveAllRecipients() Parameter $emaiList could not be found in retrieveAllRecipients() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php \Zend_Gdata_Entry Zend_Gdata_Docs_DocumentListEntry \Zend_Gdata_Docs_DocumentListEntry Represents a Documents List entry in the Documents List data API meta feed of a user's documents. __construct __construct Create a new instance of an entry representing a document. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Query.php Zend_Gdata_Query Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php \Zend_Gdata_Query Zend_Gdata_Docs_Query \Zend_Gdata_Docs_Query Assists in constructing queries for Google Document List documents DOCUMENTS_LIST_FEED_URI DOCUMENTS_LIST_FEED_URI 'https://docs.google.com/feeds/documents' The base URL for retrieving a document list string $_defaultFeedUri self::DOCUMENTS_LIST_FEED_URI The generic base URL used by some inherited methods string $_visibility 'private' The visibility to be used when querying for the feed. <p>A request for a feed with private visbility requires the user to be authenricated. Private is the only avilable visibility for the documents list.</p> string $_projection 'full' The projection determines how much detail should be given in the result of the query. <p>Full is the only valid projection for the documents list.</p> string __construct __construct Constructs a new instance of a Zend_Gdata_Docs_Query object. setProjection setProjection Sets the projection for this query. <p>Common values for projection include 'full'.</p> string \Zend_Gdata_Docs_Query $value setVisibility setVisibility Sets the visibility for this query. <p>Common values for visibility include 'private'.</p> \Zend_Gdata_Docs_Query $value getProjection getProjection Gets the projection for this query. string getVisibility getVisibility Gets the visibility for this query. string setTitle setTitle Sets the title attribute for this query. <p>The title parameter is used to restrict the results to documents whose titles either contain or completely match the title.</p> string \Zend_Gdata_Docs_Query $value getTitle getTitle Gets the title attribute for this query. string setTitleExact setTitleExact Sets the title-exact attribute for this query. <p>If title-exact is set to true, the title query parameter will be used in an exact match. Only documents with a title identical to the title parameter will be returned.</p> boolean \Zend_Gdata_Docs_Query $value getTitleExact getTitleExact Gets the title-exact attribute for this query. string getQueryUrl getQueryUrl Gets the full query URL for this query. string Argument $value is missing from the Docblock of setVisibility() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Docs_DocumentListFeed \Zend_Gdata_Docs_DocumentListFeed Data model for a Google Documents List feed of documents $_entryClassName 'Zend_Gdata_Docs_DocumentListEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Docs_DocumentListFeed' The classname for the feed. string __construct __construct Create a new instance of a feed for a list of documents. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Rights \Zend_Gdata_DublinCore_Extension_Rights Information about rights held in and over the resource $_rootNamespace 'dc' $_rootElement 'rights' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Rights which Information about rights held in and over the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Date \Zend_Gdata_DublinCore_Extension_Date Point or period of time associated with an event in the lifecycle of the resource $_rootNamespace 'dc' $_rootElement 'date' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Date which Point or period of time associated with an event in the lifecycle of the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Language \Zend_Gdata_DublinCore_Extension_Language Language of the resource $_rootNamespace 'dc' $_rootElement 'language' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Language which Language of the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Creator \Zend_Gdata_DublinCore_Extension_Creator Entity primarily responsible for making the resource $_rootNamespace 'dc' $_rootElement 'creator' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Creator which Entity primarily responsible for making the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Description \Zend_Gdata_DublinCore_Extension_Description Account of the resource $_rootNamespace 'dc' $_rootElement 'description' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Description which Account of the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Identifier \Zend_Gdata_DublinCore_Extension_Identifier An unambiguous reference to the resource within a given context $_rootNamespace 'dc' $_rootElement 'identifier' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Identifier which An unambiguous reference to the resource within a given context \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Publisher \Zend_Gdata_DublinCore_Extension_Publisher Entity responsible for making the resource available $_rootNamespace 'dc' $_rootElement 'publisher' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Publisher which Entity responsible for making the resource available \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Format \Zend_Gdata_DublinCore_Extension_Format File format, physical medium, or dimensions of the resource $_rootNamespace 'dc' $_rootElement 'format' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Format which File format, physical medium, or dimensions of the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Title \Zend_Gdata_DublinCore_Extension_Title Name given to the resource $_rootNamespace 'dc' $_rootElement 'title' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Title which Name given to the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_DublinCore_Extension_Subject \Zend_Gdata_DublinCore_Extension_Subject Topic of the resource $_rootNamespace 'dc' $_rootElement 'subject' __construct __construct Constructor for Zend_Gdata_DublinCore_Extension_Subject which Topic of the resource \DOMElement $value null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Name of argument $value does not match with the DocBlock's name $element in __construct() Parameter $element could not be found in __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Geo.php Zend/Gdata/Geo/Extension/GmlPos.php \Zend_Gdata_Extension Zend_Gdata_Geo_Extension_GmlPoint \Zend_Gdata_Geo_Extension_GmlPoint Represents the gml:point element used by the Gdata Geo extensions. $_rootNamespace 'gml' $_rootElement 'Point' $_pos null The position represented by this GmlPoint \Zend_Gdata_Geo_Extension_GmlPos __construct __construct Create a new instance. \Zend_Gdata_Geo_Extension_GmlPos $pos null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getPos getPos Get the value for this element's pos attribute. \Zend_Gdata_Geo_Extension_GmlPos setPos setPos Set the value for this element's distance attribute. \Zend_Gdata_Geo_Extension_GmlPos \Zend_Gdata_Geo_Extension_GmlPoint $value No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Geo.php Zend/Gdata/Geo/Extension/GmlPoint.php \Zend_Gdata_Extension Zend_Gdata_Geo_Extension_GeoRssWhere \Zend_Gdata_Geo_Extension_GeoRssWhere Represents the georss:where element used by the Gdata Geo extensions. $_rootNamespace 'georss' $_rootElement 'where' $_point null The point location for this geo element \Zend_Gdata_Geo_Extension_GmlPoint __construct __construct Create a new instance. \Zend_Gdata_Geo_Extension_GmlPoint $point null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getPoint getPoint Get the value for this element's point attribute. \Zend_Gdata_Geo_Extension_GmlPoint setPoint setPoint Set the value for this element's point attribute. \Zend_Gdata_Geo_Extension_GmlPoint \Zend_Gdata_Geo_Extension_GeoRssWhere $value No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Geo.php \Zend_Gdata_Extension Zend_Gdata_Geo_Extension_GmlPos \Zend_Gdata_Geo_Extension_GmlPos Represents the gml:pos element used by the Gdata Geo extensions. $_rootNamespace 'gml' $_rootElement 'pos' __construct __construct Constructs a new Zend_Gdata_Geo_Extension_GmlPos object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Geo.php Zend/Gdata/Geo/Entry.php \Zend_Gdata_Feed Zend_Gdata_Geo_Feed \Zend_Gdata_Geo_Feed Feed for Gdata Geographic data entries. $_entryClassName 'Zend_Gdata_Geo_Entry' The classname for individual feed elements. string __construct __construct $element null No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Geo.php Zend/Gdata/Geo/Extension/GeoRssWhere.php \Zend_Gdata_Entry Zend_Gdata_Geo_Entry \Zend_Gdata_Geo_Entry An Atom entry containing Geograpic data. $_entryClassName 'Zend_Gdata_Geo_Entry' $_where null __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getWhere getWhere setWhere setWhere $value No DocBlock was found for property $_entryClassName No DocBlock was found for property $_where No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No DocBlock was found for method getWhere() No DocBlock was found for method setWhere() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend_Gdata_MimeFile \Zend_Gdata_MimeFile A wrapper for strings for buffered reading. $_fileHandle null A handle to the file that is part of the message. resource __construct __construct Create a new MimeFile object. string $fileHandle read read Read the next chunk of the file. integer string $bytesRequested Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php \Zend_Gdata Zend_Gdata_Media \Zend_Gdata_Media Service class for interacting with the services which use the media extensions $namespaces array(array('media', 'http://search.yahoo.com/mrss/', 1, 0)) Namespaces used for Zend_Gdata_Photos array __construct __construct Create Gdata_Media object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend_Gdata Zend/Gdata/Spreadsheets/SpreadsheetFeed.php Zend_Gdata_Spreadsheets_SpreadsheetFeed Zend/Gdata/Spreadsheets/WorksheetFeed.php Zend_Gdata_Spreadsheets_WorksheetFeed Zend/Gdata/Spreadsheets/CellFeed.php Zend_Gdata_Spreadsheets_CellFeed Zend/Gdata/Spreadsheets/ListFeed.php Zend_Gdata_Spreadsheets_ListFeed Zend/Gdata/Spreadsheets/SpreadsheetEntry.php Zend_Gdata_Spreadsheets_SpreadsheetEntry Zend/Gdata/Spreadsheets/WorksheetEntry.php Zend_Gdata_Spreadsheets_WorksheetEntry Zend/Gdata/Spreadsheets/CellEntry.php Zend_Gdata_Spreadsheets_CellEntry Zend/Gdata/Spreadsheets/ListEntry.php Zend_Gdata_Spreadsheets_ListEntry Zend/Gdata/Spreadsheets/DocumentQuery.php Zend_Gdata_Spreadsheets_DocumentQuery Zend/Gdata/Spreadsheets/ListQuery.php Zend_Gdata_Spreadsheets_ListQuery Zend/Gdata/Spreadsheets/CellQuery.php Zend_Gdata_Spreadsheets_CellQuery \Zend_Gdata Zend_Gdata_Spreadsheets \Zend_Gdata_Spreadsheets Gdata Spreadsheets SPREADSHEETS_FEED_URI SPREADSHEETS_FEED_URI 'https://spreadsheets.google.com/feeds/spreadsheets' SPREADSHEETS_POST_URI SPREADSHEETS_POST_URI 'https://spreadsheets.google.com/feeds/spreadsheets/private/full' WORKSHEETS_FEED_LINK_URI WORKSHEETS_FEED_LINK_URI 'http://schemas.google.com/spreadsheets/2006#worksheetsfeed' LIST_FEED_LINK_URI LIST_FEED_LINK_URI 'http://schemas.google.com/spreadsheets/2006#listfeed' CELL_FEED_LINK_URI CELL_FEED_LINK_URI 'http://schemas.google.com/spreadsheets/2006#cellsfeed' AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'wise' $namespaces array(array('gs', 'http://schemas.google.com/spreadsheets/2006', 1, 0), array('gsx', 'http://schemas.google.com/spreadsheets/2006/extended', 1, 0)) Namespaces used for Zend_Gdata_Photos array __construct __construct Create Gdata_Spreadsheets object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' getSpreadsheetFeed getSpreadsheetFeed Gets a spreadsheet feed. mixed \Zend_Gdata_Spreadsheets_SpreadsheetFeed $location null getSpreadsheetEntry getSpreadsheetEntry Gets a spreadsheet entry. string \SpreadsheetEntry $location getWorksheetFeed getWorksheetFeed Gets a worksheet feed. mixed \Zend_Gdata_Spreadsheets_WorksheetFeed $location GetWorksheetEntry GetWorksheetEntry Gets a worksheet entry. string \WorksheetEntry $location getCellFeed getCellFeed Gets a cell feed. string \CellFeed $location getCellEntry getCellEntry Gets a cell entry. string \CellEntry $location getListFeed getListFeed Gets a list feed. mixed \ListFeed $location getListEntry getListEntry Gets a list entry. string \ListEntry $location updateCell updateCell Updates an existing cell. int int int string string \CellEntry $row $col $inputValue $key $wkshtId 'default' insertRow insertRow Inserts a new row with provided data. array string string \ListEntry $rowData $key $wkshtId 'default' updateRow updateRow Updates an existing row with provided data. \ListEntry array $entry $newRowData deleteRow deleteRow Deletes an existing row . \ListEntry $entry getSpreadsheetListFeedContents getSpreadsheetListFeedContents Returns the content of all rows as an associative array mixed array $location getSpreadsheetCellFeedContents getSpreadsheetCellFeedContents Returns the content of all cells as an associative array, indexed off the cell location (ie 'A1', 'D4', etc). <p>Each element of the array is an associative array with a 'value' and a 'function'. Only non-empty cells are returned by default. 'range' is the value of the 'range' query parameter specified at: http://code.google.com/apis/spreadsheets/reference.html#cells_Parameters</p> mixed string boolean array $location $range null $empty false getSpreadsheets getSpreadsheets Alias for getSpreadsheetFeed mixed \Zend_Gdata_Spreadsheets_SpreadsheetFeed $location null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Analytics_Extension_Property \Zend_Gdata_Analytics_Extension_Property $_rootNamespace 'ga' $_rootElement 'property' $_value null $_name null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Timezone object. string $value null $name null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. string \Zend_Gdata_Analytics_Extension_Property $value setName setName string \Zend_Gdata_Analytics_Extension_Property $name getName getName string __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No short description for class \Zend_Gdata_Analytics_Extension_Property No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value No DocBlock was found for property $_name Argument $name is missing from the Docblock of __construct() No short description for method setName() No short description for method getName() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Analytics/Extension/Metric.php \Zend_Gdata_Analytics_Extension_Metric Zend_Gdata_Analytics_Extension_Dimension \Zend_Gdata_Analytics_Extension_Dimension $_rootNamespace 'ga' $_rootElement 'dimension' $_value null $_name null No short description for class \Zend_Gdata_Analytics_Extension_Dimension No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value No DocBlock was found for property $_name Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Analytics_Goal \Zend_Gdata_Analytics_Goal $_rootNamespace 'ga' $_rootElement 'goal' __construct __construct __toString __toString string No short description for class \Zend_Gdata_Analytics_Goal No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() No short description for method __toString() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Analytics_Extension_TableId \Zend_Gdata_Analytics_Extension_TableId $_rootNamespace 'ga' $_rootElement 'tableId' $_value null __construct __construct Constructs a new Zend_Gdata_Calendar_Extension_Timezone object. string $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $child getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. string \Zend_Gdata_Calendar_Extension_Timezone $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No short description for class \Zend_Gdata_Analytics_Extension_TableId No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Name of argument $child does not match with the DocBlock's name $attribute in takeChildFromDOM() Parameter $attribute could not be found in takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Analytics/Extension/Property.php \Zend_Gdata_Analytics_Extension_Property Zend_Gdata_Analytics_Extension_Metric \Zend_Gdata_Analytics_Extension_Metric $_rootNamespace 'ga' $_rootElement 'metric' $_value null $_name null takeAttributeFromDOM takeAttributeFromDOM $attribute No short description for class \Zend_Gdata_Analytics_Extension_Metric No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_value No DocBlock was found for property $_name No DocBlock was found for method takeAttributeFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Analytics.php Zend/Gdata/Analytics/DataEntry.php \Zend_Gdata_Feed Zend_Gdata_Analytics_DataFeed \Zend_Gdata_Analytics_DataFeed $_entryClassName 'Zend_Gdata_Analytics_DataEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Analytics_DataFeed' The classname for the feed. string __construct __construct $element null No short description for class \Zend_Gdata_Analytics_DataFeed No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php \Zend_Gdata_Feed Zend_Gdata_Analytics_AccountFeed \Zend_Gdata_Analytics_AccountFeed $_entryClassName 'Zend_Gdata_Analytics_AccountEntry' The classname for individual feed elements. string $_feedClassName 'Zend_Gdata_Analytics_AccountFeed' The classname for the feed. string __construct __construct $element null No short description for class \Zend_Gdata_Analytics_AccountFeed No short description for method __construct() Argument $element is missing from the Docblock of __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Analytics/Extension/Dimension.php Zend/Gdata/Analytics/Extension/Metric.php Zend/Gdata/Analytics/Extension/Property.php Zend/Gdata/Analytics/Extension/TableId.php \Zend_Gdata_Entry Zend_Gdata_Analytics_AccountEntry \Zend_Gdata_Analytics_AccountEntry $_accountId $_accountName $_profileId $_webPropertyId $_currency $_timezone $_tableId $_profileName $_goal __construct __construct $element null takeChildFromDOM takeChildFromDOM \DOMElement void $child No short description for class \Zend_Gdata_Analytics_AccountEntry No DocBlock was found for property $_accountId No DocBlock was found for property $_accountName No DocBlock was found for property $_profileId No DocBlock was found for property $_webPropertyId No DocBlock was found for property $_currency No DocBlock was found for property $_timezone No DocBlock was found for property $_tableId No DocBlock was found for property $_profileName No DocBlock was found for property $_goal No short description for method __construct() Argument $element is missing from the Docblock of __construct() No short description for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Query.php \Zend_Gdata_Query Zend_Gdata_Analytics_DataQuery \Zend_Gdata_Analytics_DataQuery ANALYTICS_FEED_URI ANALYTICS_FEED_URI 'https://www.googleapis.com/analytics/v2.4/data' DIMENSION_BROWSER DIMENSION_BROWSER 'ga:browser' DIMENSION_BROWSER_VERSION DIMENSION_BROWSER_VERSION 'ga:browserVersion' DIMENSION_CITY DIMENSION_CITY 'ga:city' DIMENSION_CONNECTIONSPEED DIMENSION_CONNECTIONSPEED 'ga:connectionSpeed' DIMENSION_CONTINENT DIMENSION_CONTINENT 'ga:continent' DIMENSION_COUNTRY DIMENSION_COUNTRY 'ga:country' DIMENSION_DATE DIMENSION_DATE 'ga:date' DIMENSION_DAY DIMENSION_DAY 'ga:day' DIMENSION_DAYS_SINCE_LAST_VISIT DIMENSION_DAYS_SINCE_LAST_VISIT 'ga:daysSinceLastVisit' DIMENSION_FLASH_VERSION DIMENSION_FLASH_VERSION 'ga:flashVersion' DIMENSION_HOSTNAME DIMENSION_HOSTNAME 'ga:hostname' DIMENSION_HOUR DIMENSION_HOUR 'ga:hour' DIMENSION_JAVA_ENABLED DIMENSION_JAVA_ENABLED 'ga:javaEnabled' DIMENSION_LANGUAGE DIMENSION_LANGUAGE 'ga:language' DIMENSION_LATITUDE DIMENSION_LATITUDE 'ga:latitude' DIMENSION_LONGITUDE DIMENSION_LONGITUDE 'ga:longitude' DIMENSION_MONTH DIMENSION_MONTH 'ga:month' DIMENSION_NETWORK_DOMAIN DIMENSION_NETWORK_DOMAIN 'ga:networkDomain' DIMENSION_NETWORK_LOCATION DIMENSION_NETWORK_LOCATION 'ga:networkLocation' DIMENSION_OPERATING_SYSTEM DIMENSION_OPERATING_SYSTEM 'ga:operatingSystem' DIMENSION_OPERATING_SYSTEM_VERSION DIMENSION_OPERATING_SYSTEM_VERSION 'ga:operatingSystemVersion' DIMENSION_PAGE_DEPTH DIMENSION_PAGE_DEPTH 'ga:pageDepth' DIMENSION_REGION DIMENSION_REGION 'ga:region' DIMENSION_SCREEN_COLORS DIMENSION_SCREEN_COLORS 'ga:screenColors' DIMENSION_SCREEN_RESOLUTION DIMENSION_SCREEN_RESOLUTION 'ga:screenResolution' DIMENSION_SUB_CONTINENT DIMENSION_SUB_CONTINENT 'ga:subContinent' DIMENSION_USER_DEFINED_VALUE DIMENSION_USER_DEFINED_VALUE 'ga:userDefinedValue' DIMENSION_VISIT_COUNT DIMENSION_VISIT_COUNT 'ga:visitCount' DIMENSION_VISIT_LENGTH DIMENSION_VISIT_LENGTH 'ga:visitLength' DIMENSION_VISITOR_TYPE DIMENSION_VISITOR_TYPE 'ga:visitorType' DIMENSION_WEEK DIMENSION_WEEK 'ga:week' DIMENSION_YEAR DIMENSION_YEAR 'ga:year' DIMENSION_AD_CONTENT DIMENSION_AD_CONTENT 'ga:adContent' DIMENSION_AD_GROUP DIMENSION_AD_GROUP 'ga:adGroup' DIMENSION_AD_SLOT DIMENSION_AD_SLOT 'ga:adSlot' DIMENSION_AD_SLOT_POSITION DIMENSION_AD_SLOT_POSITION 'ga:adSlotPosition' DIMENSION_CAMPAIGN DIMENSION_CAMPAIGN 'ga:campaign' DIMENSION_KEYWORD DIMENSION_KEYWORD 'ga:keyword' DIMENSION_MEDIUM DIMENSION_MEDIUM 'ga:medium' DIMENSION_REFERRAL_PATH DIMENSION_REFERRAL_PATH 'ga:referralPath' DIMENSION_SOURCE DIMENSION_SOURCE 'ga:source' DIMENSION_EXIT_PAGE_PATH DIMENSION_EXIT_PAGE_PATH 'ga:exitPagePath' DIMENSION_LANDING_PAGE_PATH DIMENSION_LANDING_PAGE_PATH 'ga:landingPagePath' DIMENSION_PAGE_PATH DIMENSION_PAGE_PATH 'ga:pagePath' DIMENSION_PAGE_TITLE DIMENSION_PAGE_TITLE 'ga:pageTitle' DIMENSION_SECOND_PAGE_PATH DIMENSION_SECOND_PAGE_PATH 'ga:secondPagePath' DIMENSION_AFFILIATION DIMENSION_AFFILIATION 'ga:affiliation' DIMENSION_DAYS_TO_TRANSACTION DIMENSION_DAYS_TO_TRANSACTION 'ga:daysToTransaction' DIMENSION_PRODUCT_CATEGORY DIMENSION_PRODUCT_CATEGORY 'ga:productCategory' DIMENSION_PRODUCT_NAME DIMENSION_PRODUCT_NAME 'ga:productName' DIMENSION_PRODUCT_SKU DIMENSION_PRODUCT_SKU 'ga:productSku' DIMENSION_TRANSACTION_ID DIMENSION_TRANSACTION_ID 'ga:transactionId' DIMENSION_VISITS_TO_TRANSACTION DIMENSION_VISITS_TO_TRANSACTION 'ga:visitsToTransaction' DIMENSION_SEARCH_CATEGORY DIMENSION_SEARCH_CATEGORY 'ga:searchCategory' DIMENSION_SEARCH_DESTINATION_PAGE DIMENSION_SEARCH_DESTINATION_PAGE 'ga:searchDestinationPage' DIMENSION_SEARCH_KEYWORD DIMENSION_SEARCH_KEYWORD 'ga:searchKeyword' DIMENSION_SEARCH_KEYWORD_REFINEMENT DIMENSION_SEARCH_KEYWORD_REFINEMENT 'ga:searchKeywordRefinement' DIMENSION_SEARCH_START_PAGE DIMENSION_SEARCH_START_PAGE 'ga:searchStartPage' DIMENSION_SEARCH_USED DIMENSION_SEARCH_USED 'ga:searchUsed' DIMENSION_NEXT_PAGE_PATH DIMENSION_NEXT_PAGE_PATH 'ga:nextPagePath' DIMENSION_PREV_PAGE_PATH DIMENSION_PREV_PAGE_PATH 'ga:previousPagePath' DIMENSION_EVENT_CATEGORY DIMENSION_EVENT_CATEGORY 'ga:eventCategory' DIMENSION_EVENT_ACTION DIMENSION_EVENT_ACTION 'ga:eventAction' DIMENSION_EVENT_LABEL DIMENSION_EVENT_LABEL 'ga:eventLabel' DIMENSION_CUSTOM_VAR_NAME_1 DIMENSION_CUSTOM_VAR_NAME_1 'ga:customVarName1' DIMENSION_CUSTOM_VAR_NAME_2 DIMENSION_CUSTOM_VAR_NAME_2 'ga:customVarName2' DIMENSION_CUSTOM_VAR_NAME_3 DIMENSION_CUSTOM_VAR_NAME_3 'ga:customVarName3' DIMENSION_CUSTOM_VAR_NAME_4 DIMENSION_CUSTOM_VAR_NAME_4 'ga:customVarName4' DIMENSION_CUSTOM_VAR_NAME_5 DIMENSION_CUSTOM_VAR_NAME_5 'ga:customVarName5' DIMENSION_CUSTOM_VAR_VALUE_1 DIMENSION_CUSTOM_VAR_VALUE_1 'ga:customVarValue1' DIMENSION_CUSTOM_VAR_VALUE_2 DIMENSION_CUSTOM_VAR_VALUE_2 'ga:customVarValue2' DIMENSION_CUSTOM_VAR_VALUE_3 DIMENSION_CUSTOM_VAR_VALUE_3 'ga:customVarValue3' DIMENSION_CUSTOM_VAR_VALUE_4 DIMENSION_CUSTOM_VAR_VALUE_4 'ga:customVarValue4' DIMENSION_CUSTOM_VAR_VALUE_5 DIMENSION_CUSTOM_VAR_VALUE_5 'ga:customVarValue5' METRIC_BOUNCES METRIC_BOUNCES 'ga:bounces' METRIC_ENTRANCES METRIC_ENTRANCES 'ga:entrances' METRIC_EXITS METRIC_EXITS 'ga:exits' METRIC_NEW_VISITS METRIC_NEW_VISITS 'ga:newVisits' METRIC_PAGEVIEWS METRIC_PAGEVIEWS 'ga:pageviews' METRIC_TIME_ON_PAGE METRIC_TIME_ON_PAGE 'ga:timeOnPage' METRIC_TIME_ON_SITE METRIC_TIME_ON_SITE 'ga:timeOnSite' METRIC_VISITORS METRIC_VISITORS 'ga:visitors' METRIC_VISITS METRIC_VISITS 'ga:visits' METRIC_AD_CLICKS METRIC_AD_CLICKS 'ga:adClicks' METRIC_AD_COST METRIC_AD_COST 'ga:adCost' METRIC_CPC METRIC_CPC 'ga:CPC' METRIC_CPM METRIC_CPM 'ga:CPM' METRIC_CTR METRIC_CTR 'ga:CTR' METRIC_IMPRESSIONS METRIC_IMPRESSIONS 'ga:impressions' METRIC_UNIQUE_PAGEVIEWS METRIC_UNIQUE_PAGEVIEWS 'ga:uniquePageviews' METRIC_ITEM_REVENUE METRIC_ITEM_REVENUE 'ga:itemRevenue' METRIC_ITEM_QUANTITY METRIC_ITEM_QUANTITY 'ga:itemQuantity' METRIC_TRANSACTIONS METRIC_TRANSACTIONS 'ga:transactions' METRIC_TRANSACTION_REVENUE METRIC_TRANSACTION_REVENUE 'ga:transactionRevenue' METRIC_TRANSACTION_SHIPPING METRIC_TRANSACTION_SHIPPING 'ga:transactionShipping' METRIC_TRANSACTION_TAX METRIC_TRANSACTION_TAX 'ga:transactionTax' METRIC_UNIQUE_PURCHASES METRIC_UNIQUE_PURCHASES 'ga:uniquePurchases' METRIC_SEARCH_DEPTH METRIC_SEARCH_DEPTH 'ga:searchDepth' METRIC_SEARCH_DURATION METRIC_SEARCH_DURATION 'ga:searchDuration' METRIC_SEARCH_EXITS METRIC_SEARCH_EXITS 'ga:searchExits' METRIC_SEARCH_REFINEMENTS METRIC_SEARCH_REFINEMENTS 'ga:searchRefinements' METRIC_SEARCH_UNIQUES METRIC_SEARCH_UNIQUES 'ga:searchUniques' METRIC_SEARCH_VISIT METRIC_SEARCH_VISIT 'ga:searchVisits' METRIC_GOAL_COMPLETIONS_ALL METRIC_GOAL_COMPLETIONS_ALL 'ga:goalCompletionsAll' METRIC_GOAL_STARTS_ALL METRIC_GOAL_STARTS_ALL 'ga:goalStartsAll' METRIC_GOAL_VALUE_ALL METRIC_GOAL_VALUE_ALL 'ga:goalValueAll' METRIC_GOAL_1_COMPLETION METRIC_GOAL_1_COMPLETION 'ga:goal1Completions' METRIC_GOAL_1_STARTS METRIC_GOAL_1_STARTS 'ga:goal1Starts' METRIC_GOAL_1_VALUE METRIC_GOAL_1_VALUE 'ga:goal1Value' METRIC_TOTAL_EVENTS METRIC_TOTAL_EVENTS 'ga:totalEvents' METRIC_UNIQUE_EVENTS METRIC_UNIQUE_EVENTS 'ga:uniqueEvents' METRIC_EVENT_VALUE METRIC_EVENT_VALUE 'ga:eventValue' EQUALS EQUALS "==" EQUALS_NOT EQUALS_NOT "!=" GREATER GREATER ">" LESS LESS ">" GREATER_EQUAL GREATER_EQUAL ">=" LESS_EQUAL LESS_EQUAL "<=" CONTAINS CONTAINS "=@" CONTAINS_NOT CONTAINS_NOT "!@" REGULAR REGULAR "=~" REGULAR_NOT REGULAR_NOT "!~" $_defaultFeedUri self::ANALYTICS_FEED_URI The default URI used for feeds. $_profileId string $_dimensions array() array $_metrics array() array $_sort array() array $_filters array() array setProfileId setProfileId string \Zend_Gdata_Analytics_DataQuery $id getProfileId getProfileId string addDimension addDimension string \Zend_Gdata_Analytics_DataQuery $dimension addMetric addMetric string \Zend_Gdata_Analytics_DataQuery $metric getDimensions getDimensions array getMetrics getMetrics array removeDimension removeDimension string \Zend_Gdata_Analytics_DataQuery $dimension removeMetric removeMetric string \Zend_Gdata_Analytics_DataQuery $metric setStartDate setStartDate string \Zend_Gdata_Analytics_DataQuery $date setEndDate setEndDate string \Zend_Gdata_Analytics_DataQuery $date addFilter addFilter string \Zend_Gdata_Analytics_DataQuery $filter addOrFilter addOrFilter string \Zend_Gdata_Analytics_DataQuery $filter addSort addSort string \boolean[optional] \Zend_Gdata_Analytics_DataQuery $sort $descending false clearSort clearSort \Zend_Gdata_Analytics_DataQuery setSegment setSegment string \Zend_Gdata_Analytics_DataQuery $segment getQueryUrl getQueryUrl string goals 1-20 No short description for class \Zend_Gdata_Analytics_DataQuery No short description for property $_profileId No short description for property $_dimensions No short description for property $_metrics No short description for property $_sort No short description for property $_filters No short description for method setProfileId() No short description for method getProfileId() No short description for method addDimension() No short description for method addMetric() No short description for method getDimensions() No short description for method getMetrics() No short description for method removeDimension() No short description for method removeMetric() No short description for method setStartDate() Name of argument $date does not match with the DocBlock's name $value in setStartDate() Parameter $value could not be found in setStartDate() No short description for method setEndDate() Name of argument $date does not match with the DocBlock's name $value in setEndDate() Parameter $value could not be found in setEndDate() No short description for method addFilter() No short description for method addOrFilter() No short description for method addSort() No short description for method clearSort() No short description for method setSegment() No short description for method getQueryUrl() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Query.php \Zend_Gdata_Query Zend_Gdata_Analytics_AccountQuery \Zend_Gdata_Analytics_AccountQuery ANALYTICS_FEED_URI ANALYTICS_FEED_URI 'https://www.googleapis.com/analytics/v2.4/management/accounts' $_defaultFeedUri self::ANALYTICS_FEED_URI The default URI used for feeds. $_accountId '~all' string $_webpropertyId '~all' string $_profileId '~all' string $_webproperties false bool $_profiles false bool $_goals false bool setAccountId setAccountId string \Zend_Gdata_Analytics_AccountQuery $accountId getAccountId getAccountId string setWebpropertyId setWebpropertyId string \Zend_Gdata_Analytics_AccountQuery $webpropertyId getWebpropertyId getWebpropertyId string setProfileId setProfileId string \Zend_Gdata_Analytics_AccountQuery $profileId getProfileId getProfileId string webproperties webproperties string \Zend_Gdata_Analytics_AccountQuery $accountId '~all' profiles profiles string string \Zend_Gdata_Analytics_AccountQuery $webpropertyId '~all' $accountId '~all' goals goals string string string \Zend_Gdata_Analytics_AccountQuery $profileId '~all' $webpropertyId '~all' $accountId '~all' getQueryUrl getQueryUrl string No short description for class \Zend_Gdata_Analytics_AccountQuery No short description for property $_accountId No short description for property $_webpropertyId No short description for property $_profileId No short description for property $_webproperties No short description for property $_profiles No short description for property $_goals No short description for method setAccountId() No short description for method getAccountId() No short description for method setWebpropertyId() No short description for method getWebpropertyId() No short description for method setProfileId() No short description for method getProfileId() No short description for method webproperties() No short description for method profiles() No short description for method goals() Name of argument $profileId does not match with the DocBlock's name $webpropertyId in goals() Name of argument $webpropertyId does not match with the DocBlock's name $accountId in goals() No short description for method getQueryUrl() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php \Zend_Gdata_Entry Zend_Gdata_Analytics_DataEntry \Zend_Gdata_Analytics_DataEntry $_dimensions array() array $_metrics array() array __construct __construct \DOMElement $element null takeChildFromDOM takeChildFromDOM \DOMElement void $child getDimension getDimension string mixed $name getMetric getMetric string mixed $name getValue getValue string mixed $name No short description for class \Zend_Gdata_Analytics_DataEntry No short description for property $_dimensions No short description for property $_metrics No short description for method __construct() No short description for method takeChildFromDOM() No short description for method getDimension() No short description for method getMetric() No short description for method getValue() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend/Gdata.php \Zend_Gdata Zend_Gdata_Gbase \Zend_Gdata_Gbase Service class for interacting with the Google Base data API GBASE_ITEM_FEED_URI GBASE_ITEM_FEED_URI 'https://www.google.com/base/feeds/items' Path to the customer items feeds on the Google Base server. GBASE_SNIPPET_FEED_URI GBASE_SNIPPET_FEED_URI 'https://www.google.com/base/feeds/snippets' Path to the snippets feeds on the Google Base server. AUTH_SERVICE_NAME AUTH_SERVICE_NAME 'gbase' Authentication service name for Google Base __construct __construct Create Zend_Gdata_Gbase object \Zend_Http_Client string $client null $applicationId 'MyCompany-MyApp-1.0' Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Person.php \Zend_Gdata_App_Extension_Person Zend_Gdata_App_Extension_Author \Zend_Gdata_App_Extension_Author Represents the atom:author element $_rootElement 'author' No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Icon \Zend_Gdata_App_Extension_Icon Represents the atom:icon element $_rootElement 'icon' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Updated \Zend_Gdata_App_Extension_Updated Represents the atom:updated element $_rootElement 'updated' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Category \Zend_Gdata_App_Extension_Category Represents the atom:category element $_rootElement 'category' $_term null $_scheme null $_label null __construct __construct $term null $scheme null $label null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute getTerm getTerm string null setTerm setTerm string null \Zend_Gdata_App_Extension_Category $value getScheme getScheme string null setScheme setScheme string null \Zend_Gdata_App_Extension_Category $value getLabel getLabel string null setLabel setLabel string null \Zend_Gdata_App_Extension_Category $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_term No DocBlock was found for property $_scheme No DocBlock was found for property $_label No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No short description for method getTerm() No short description for method setTerm() No short description for method getScheme() No short description for method setScheme() No short description for method getLabel() No short description for method setLabel() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an uri to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Uri \Zend_Gdata_App_Extension_Uri Represents the atom:uri element $_rootElement 'uri' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Name \Zend_Gdata_App_Extension_Name Represents the atom:name element $_rootElement 'name' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Draft \Zend_Gdata_App_Extension_Draft Represents the app:draft element $_rootNamespace 'app' $_rootElement 'draft' __construct __construct $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Text.php \Zend_Gdata_App_Extension_Text Zend_Gdata_App_Extension_Subtitle \Zend_Gdata_App_Extension_Subtitle Represents the atom:subtitle element $_rootElement 'subtitle' No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Text.php \Zend_Gdata_App_Extension_Text Zend_Gdata_App_Extension_Content \Zend_Gdata_App_Extension_Content Represents the atom:content element $_rootElement 'content' $_src null __construct __construct $text null $type 'text' $src null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute getSrc getSrc string setSrc setSrc string \Zend_Gdata_App_Entry $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_src No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No short description for method getSrc() No short description for method setSrc() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Text \Zend_Gdata_App_Extension_Text Abstract class for data models that require only text and type-- such as: title, summary, etc. $_rootElement null $_type 'text' __construct __construct $text null $type 'text' getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute getType getType setType setType $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_type No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No DocBlock was found for method getType() No DocBlock was found for method setType() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Text.php \Zend_Gdata_App_Extension_Text Zend_Gdata_App_Extension_Rights \Zend_Gdata_App_Extension_Rights Represents the atom:rights element $_rootElement 'rights' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Person.php \Zend_Gdata_App_Extension_Person Zend_Gdata_App_Extension_Contributor \Zend_Gdata_App_Extension_Contributor Represents the atom:contributor element $_rootElement 'contributor' No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Edited \Zend_Gdata_App_Extension_Edited Represents the app:edited element $_rootElement 'edited' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Text.php \Zend_Gdata_App_Extension_Text Zend_Gdata_App_Extension_Summary \Zend_Gdata_App_Extension_Summary Represents the atom:summary element $_rootElement 'summary' No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Entry.php Zend/Gdata/App/FeedSourceParent.php \Zend_Gdata_App_FeedSourceParent Zend_Gdata_App_Extension_Source \Zend_Gdata_App_Extension_Source $_rootElement 'source' No short description for class \Zend_Gdata_App_Extension_Source No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Element \Zend_Gdata_App_Extension_Element Class that represents elements which were not handled by other parsing code in the library. __construct __construct $rootElement null $rootNamespace null $rootNamespaceURI null $text null transferFromDOM transferFromDOM $node No DocBlock was found for method __construct() No DocBlock was found for method transferFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Link \Zend_Gdata_App_Extension_Link Data model for representing an atom:link element $_rootElement 'link' $_href null $_rel null $_type null $_hrefLang null $_title null $_length null __construct __construct $href null $rel null $type null $hrefLang null $title null $length null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute getHref getHref string null setHref setHref string null \Zend_Gdata_App_Entry $value getRel getRel string null setRel setRel string null \Zend_Gdata_App_Entry $value getType getType string null setType setType string null \Zend_Gdata_App_Entry $value getHrefLang getHrefLang string null setHrefLang setHrefLang string null \Zend_Gdata_App_Entry $value getTitle getTitle string null setTitle setTitle string null \Zend_Gdata_App_Entry $value getLength getLength string null setLength setLength string null \Zend_Gdata_App_Entry $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_href No DocBlock was found for property $_rel No DocBlock was found for property $_type No DocBlock was found for property $_hrefLang No DocBlock was found for property $_title No DocBlock was found for property $_length No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No short description for method getHref() No short description for method setHref() No short description for method getRel() No short description for method setRel() No short description for method getType() No short description for method setType() No short description for method getHrefLang() No short description for method setHrefLang() No short description for method getTitle() No short description for method setTitle() No short description for method getLength() No short description for method setLength() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php Zend/Gdata/App/Extension/Draft.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Control \Zend_Gdata_App_Extension_Control Represents the app:control element $_rootNamespace 'app' $_rootElement 'control' $_draft null __construct __construct $draft null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getDraft getDraft \Zend_Gdata_App_Extension_Draft setDraft setDraft \Zend_Gdata_App_Extension_Draft \Zend_Gdata_App_Entry $value No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement No DocBlock was found for property $_draft No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No short description for method getDraft() No short description for method setDraft() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Published \Zend_Gdata_App_Extension_Published Represents the atom:published element $_rootElement 'published' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Email \Zend_Gdata_App_Extension_Email Represents the atom:email element $_rootElement 'email' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Generator \Zend_Gdata_App_Extension_Generator Represents the atom:generator element $_rootElement 'generator' $_uri null $_version null __construct __construct $text null $uri null $version null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM $attribute getUri getUri \Zend_Gdata_App_Extension_Uri setUri setUri \Zend_Gdata_App_Extension_Uri \Zend_Gdata_App_Entry $value getVersion getVersion \Zend_Gdata_App_Extension_Version setVersion setVersion \Zend_Gdata_App_Extension_Version \Zend_Gdata_App_Entry $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_uri No DocBlock was found for property $_version No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeAttributeFromDOM() No short description for method getUri() No short description for method setUri() No short description for method getVersion() No short description for method setVersion() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php Zend/Gdata/App/Extension/Name.php Zend/Gdata/App/Extension/Email.php Zend/Gdata/App/Extension/Uri.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Person \Zend_Gdata_App_Extension_Person Base class for people (currently used by atom:author, atom:contributor) $_rootElement null $_name null $_email null $_uri null __construct __construct $name null $email null $uri null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getName getName \Zend_Gdata_App_Extension_Name setName setName \Zend_Gdata_App_Extension_Name \Zend_Gdata_App_Entry $value getEmail getEmail \Zend_Gdata_App_Extension_Email setEmail setEmail \Zend_Gdata_App_Extension_Email \Zend_Gdata_App_Extension_Person $value getUri getUri \Zend_Gdata_App_Extension_Uri setUri setUri \Zend_Gdata_App_Extension_Uri \Zend_Gdata_App_Extension_Person $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_name No DocBlock was found for property $_email No DocBlock was found for property $_uri No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No short description for method getName() No short description for method setName() No short description for method getEmail() No short description for method setEmail() No short description for method getUri() No short description for method setUri() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Logo \Zend_Gdata_App_Extension_Logo Represents the atom:logo element $_rootElement 'logo' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_App_Extension Zend_Gdata_App_Extension_Id \Zend_Gdata_App_Extension_Id Represents the atom:id element $_rootElement 'id' __construct __construct $text null No DocBlock was found for property $_rootElement No DocBlock was found for method __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Text.php \Zend_Gdata_App_Extension_Text Zend_Gdata_App_Extension_Title \Zend_Gdata_App_Extension_Title Represents the atom:title element $_rootElement 'title' No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Entry.php Zend/Gdata/App/MediaSource.php Zend/Gdata/MediaMimeStream.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_App_Entry Zend_Gdata_App_MediaEntry \Zend_Gdata_App_MediaEntry Concrete class for working with Atom entries containing multi-part data. $_mediaSource null The attached MediaSource/file \Zend_Gdata_App_MediaSource __construct __construct Constructs a new MediaEntry, representing XML data and optional file to upload \DOMElement $element null $mediaSource null encode encode Return the MIME multipart representation of this MediaEntry. string \Zend_Gdata_MediaMimeStream getMediaSource getMediaSource Return the MediaSource object representing the file attached to this MediaEntry. \Zend_Gdata_App_MediaSource setMediaSource setMediaSource Set the MediaSource object (file) for this MediaEntry \Zend_Gdata_App_MediaSource \Zend_Gdata_App_MediaEntry $value Argument $mediaSource is missing from the Docblock of __construct() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Exception.php Zend_Gdata_App_Exception \Zend_Gdata_App_Exception Zend_Gdata_App_VersionException \Zend_Gdata_App_VersionException Gdata APP exceptions <p>Class to represent version exceptions that occur during Gdata APP operations.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Util.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend_Gdata_App_Base \Zend_Gdata_App_Base Abstract class for all XML elements $_rootElement null string $_rootNamespace 'atom' string $_rootNamespaceURI null string $_extensionElements array() array $_extensionAttributes array() array $_text null string $_namespaceLookupCache array() array $_namespaces array('atom' => array(1 => array(0 => 'http://www.w3.org/2005/Atom')), 'app' => array(1 => array(0 => 'http://purl.org/atom/app#'), 2 => array(0 => 'http://www.w3.org/2007/app'))) List of namespaces, as a three-dimensional array. <p>The first dimension represents the namespace prefix, the second dimension represents the minimum major protocol version, and the third dimension is the minimum minor protocol version. Null keys are NOT allowed.</p> <p>When looking up a namespace for a given prefix, the greatest version number (both major and minor) which is less than the effective version should be used.</p> array __construct __construct getText getText Returns the child text node of this element This represents any raw text contained within the XML element string $trim true setText setText Sets the child text node of this element This represents any raw text contained within the XML element string \Zend_Gdata_App_Base $value getExtensionElements getExtensionElements Returns an array of all elements not matched to data model classes during the parsing of the XML array setExtensionElements setExtensionElements Sets an array of all elements not matched to data model classes during the parsing of the XML. <p>This method can be used to add arbitrary child XML elements to any data model class.</p> array \Zend_Gdata_App_Base $value getExtensionAttributes getExtensionAttributes Returns an array of all extension attributes not transformed into data model properties during parsing of the XML. <p>Each element of the array is a hashed array of the format: array('namespaceUri' => string, 'name' => string, 'value' => string);</p> array setExtensionAttributes setExtensionAttributes Sets an array of all extension attributes not transformed into data model properties during parsing of the XML. <p>Each element of the array is a hashed array of the format: array('namespaceUri' => string, 'name' => string, 'value' => string); This can be used to add arbitrary attributes to any data model element</p> array \Zend_Gdata_App_Base $value getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Given a child DOMNode, tries to determine how to map the data into object instance members. <p>If no mapping is defined, Extension_Element objects are created and stored in an array.</p> \DOMNode $child takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute transferFromDOM transferFromDOM Transfers each child and attribute into member variables. <p>This is called when XML is received over the wire and the data model needs to be built to represent this XML.</p> \DOMNode $node transferFromXML transferFromXML Parses the provided XML text and generates data model classes for each know element by turning the XML text into a DOM tree and calling transferFromDOM($element). <p>The first data model element with the same name as $this->_rootElement is used and the child elements are recursively parsed.</p> string $xml saveXML saveXML Converts this element and all children into XML text using getDOM() string getXML getXML Alias for saveXML() returns XML content for this element and all children string encode encode Alias for saveXML() <p>Can be overridden by children to provide more complex representations of entries.</p> string lookupNamespace lookupNamespace Get the full version of a namespace prefix <p>Looks up a prefix (atom:, etc.) in the list of registered namespaces and returns the full namespace URI if available. Returns the prefix, unmodified, if it's not registered.</p> string integer integer string $prefix $majorVersion 1 $minorVersion null registerNamespace registerNamespace Add a namespace and prefix to the registered list <p>Takes a prefix and a full namespace URI and adds them to the list of registered namespaces for use by $this->lookupNamespace().</p> <p>WARNING: Currently, registering a namespace will NOT invalidate any memoized data stored in $_namespaceLookupCache. Under normal use, this behavior is acceptable. If you are adding contradictory data to the namespace lookup table, you must call flushNamespaceLookupCache().</p> string string integer integer void $prefix $namespaceUri $majorVersion 1 $minorVersion 0 flushNamespaceLookupCache flushNamespaceLookupCache Flush namespace lookup cache. <p>Empties the namespace lookup cache. Call this function if you have added data to the namespace lookup table that contradicts values that may have been cached during a previous call to lookupNamespace().</p> registerAllNamespaces registerAllNamespaces Add an array of namespaces to the registered list. <p>Takes an array in the format of: namespace prefix, namespace URI, major protocol version, minor protocol version and adds them with calls to ->registerNamespace()</p> array void $namespaceArray __get __get Magic getter to allow access like $entry->foo to call $entry->getFoo() Alternatively, if no getFoo() is defined, but a $_foo protected variable is defined, this is returned. <p>TODO Remove ability to bypass getFoo() methods??</p> string $name __set __set Magic setter to allow acces like $entry->foo='bar' to call $entry->setFoo('bar') automatically. <p>Alternatively, if no setFoo() is defined, but a $_foo protected variable is defined, this is returned.</p> <p>TODO Remove ability to bypass getFoo() methods??</p> string string $name $val __isset __isset Magic __isset method string $name __unset __unset Magic __unset method string $name __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 string No DocBlock was found for method __construct() Argument $trim is missing from the Docblock of getText() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Name of argument $val does not match with the DocBlock's name $value in __set() Parameter $value could not be found in __set() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Exception.php \Zend_Gdata_App_Exception Zend_Gdata_App_AuthException \Zend_Gdata_App_AuthException Gdata exceptions <p>Class to represent exceptions that occur during Gdata operations.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Base.php \Zend_Gdata_App_Base Zend_Gdata_App_Extension \Zend_Gdata_App_Extension Gdata App extensions Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Http/Client/Adapter/Socket.php \Zend_Http_Client_Adapter_Socket Zend_Gdata_App_LoggingHttpClientAdapterSocket \Zend_Gdata_App_LoggingHttpClientAdapterSocket Overrides the traditional socket-based adapter class for Zend_Http_Client to enable logging of requests. <p>All requests are logged to a location specified in the config as $config['logfile']. Requests and responses are logged after they are sent and received/processed, thus an error could prevent logging.</p> $log_handle null The file handle for writing logs resource null log log Log the given message to the log file. <p>The log file is configured as the config param 'logfile'. This method opens the file for writing if necessary.</p> string $message connect connect Connect to the remote server string int boolean int $host $port 80 $secure false write write Send request to the remote server string \Zend_Uri_Http string array string string $method $uri $http_ver '1.1' $headers array() $body '' read read Read response from server string close close Close the connection to the server Parameter $timeout could not be found in connect() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension/Element.php Zend/Gdata/App/Extension/Author.php Zend/Gdata/App/Extension/Category.php Zend/Gdata/App/Extension/Contributor.php Zend/Gdata/App/Extension/Id.php Zend/Gdata/App/Extension/Link.php Zend/Gdata/App/Extension/Rights.php Zend/Gdata/App/Extension/Title.php Zend/Gdata/App/Extension/Updated.php Zend/Version.php Zend_Version Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_App_Base Zend_Gdata_App_FeedEntryParent \Zend_Gdata_App_FeedEntryParent Abstract class for common functionality in entries and feeds $_service null Service instance used to make network requests. $_etag NULL The HTTP ETag associated with this entry. <p>Used for optimistic concurrency in protoco v2 or greater.</p> string null $_author array() $_category array() $_contributor array() $_id null $_link array() $_rights null $_title null $_updated null $_majorProtocolVersion 1 Indicates the major protocol version that should be used. <p>At present, recognized values are either 1 or 2. However, any integer value >= 1 is considered valid.</p> $_minorProtocolVersion null Indicates the minor protocol version that should be used. <p>Can be set to either an integer >= 0, or NULL if no minor version should be sent to the server.</p> __construct __construct Constructs a Feed or Entry $element null setHttpClient setHttpClient Set the HTTP client instance <p>Sets the HTTP client object to use for retrieving the feed.</p> \Zend_Http_Client \Zend_Gdata_App_FeedEntryParent $httpClient \Zend_Http_Client getHttpClient getHttpClient Gets the HTTP client object. <p>If none is set, a new Zend_Http_Client will be used.</p> \Zend_Http_Client_Abstract setService setService Set the active service instance for this object. <p>This will be used to perform network requests, such as when calling save() and delete().</p> \Zend_Gdata_App \Zend_Gdata_App_FeedEntryParent $instance getService getService Get the active service instance for this object. <p>This will be used to perform network requests, such as when calling save() and delete().</p> \Zend_Gdata_App null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getAuthor getAuthor \Zend_Gdata_App_Extension_Author setAuthor setAuthor Sets the list of the authors of this feed/entry. <p>In an atom feed, each author is represented by an atom:author element</p> array \Zend_Gdata_App_FeedEntryParent $value getCategory getCategory Returns the array of categories that classify this feed/entry. <p>Each category is represented in an atom feed by an atom:category element.</p> array setCategory setCategory Sets the array of categories that classify this feed/entry. <p>Each category is represented in an atom feed by an atom:category element.</p> array \Zend_Gdata_App_FeedEntryParent $value getContributor getContributor Returns the array of contributors to this feed/entry. <p>Each contributor is represented in an atom feed by an atom:contributor XML element</p> array setContributor setContributor Sets the array of contributors to this feed/entry. <p>Each contributor is represented in an atom feed by an atom:contributor XML element</p> array \Zend_Gdata_App_FeedEntryParent $value getId getId \Zend_Gdata_App_Extension_Id setId setId \Zend_Gdata_App_Extension_Id \Zend_Gdata_App_FeedEntryParent $value getLink getLink Given a particular 'rel' value, this method returns a matching Zend_Gdata_App_Extension_Link element. <p>If the 'rel' value is not provided, the full array of Zend_Gdata_App_Extension_Link elements is returned. In an atom feed, each link is represented by an atom:link element. The 'rel' value passed to this function is the atom:link/@rel attribute. Example rel values include 'self', 'edit', and 'alternate'.</p> string mixed $rel null getEditLink getEditLink Returns the Zend_Gdata_App_Extension_Link element which represents the URL used to edit this resource. <p>This link is in the atom feed/entry as an atom:link with a rel attribute value of 'edit'.</p> \Zend_Gdata_App_Extension_Link getNextLink getNextLink Returns the Zend_Gdata_App_Extension_Link element which represents the URL used to retrieve the next chunk of results when paging through a feed. <p>This link is in the atom feed as an atom:link with a rel attribute value of 'next'.</p> \Zend_Gdata_App_Extension_Link getPreviousLink getPreviousLink Returns the Zend_Gdata_App_Extension_Link element which represents the URL used to retrieve the previous chunk of results when paging through a feed. <p>This link is in the atom feed as an atom:link with a rel attribute value of 'previous'.</p> \Zend_Gdata_App_Extension_Link getLicenseLink getLicenseLink \Zend_Gdata_App_Extension_Link getSelfLink getSelfLink Returns the Zend_Gdata_App_Extension_Link element which represents the URL used to retrieve the entry or feed represented by this object This link is in the atom feed/entry as an atom:link with a rel attribute value of 'self'. \Zend_Gdata_App_Extension_Link getAlternateLink getAlternateLink Returns the Zend_Gdata_App_Extension_Link element which represents the URL for an alternate view of the data represented by this feed or entry. <p>This alternate view is commonly a user-facing webpage, blog post, etc. The MIME type for the data at the URL is available from the returned Zend_Gdata_App_Extension_Link element. This link is in the atom feed/entry as an atom:link with a rel attribute value of 'self'.</p> \Zend_Gdata_App_Extension_Link setLink setLink array \Zend_Gdata_App_FeedEntryParent $value getRights getRights \Zend_Gdata_AppExtension_Rights setRights setRights \Zend_Gdata_App_Extension_Rights \Zend_Gdata_App_FeedEntryParent $value getTitle getTitle Returns the title of this feed or entry. <p>The title is an extremely short textual representation of this resource and is found as an atom:title element in a feed or entry</p> \Zend_Gdata_App_Extension_Title getTitleValue getTitleValue Returns a string representation of the title of this feed or entry. <p>The title is an extremely short textual representation of this resource and is found as an atom:title element in a feed or entry</p> string setTitle setTitle Returns the title of this feed or entry. <p>The title is an extremely short textual representation of this resource and is found as an atom:title element in a feed or entry</p> \Zend_Gdata_App_Extension_Title \Zend_Gdata_App_FeedEntryParent $value getUpdated getUpdated \Zend_Gdata_App_Extension_Updated setUpdated setUpdated \Zend_Gdata_App_Extension_Updated \Zend_Gdata_App_FeedEntryParent $value setEtag setEtag Set the Etag for the current entry to $value. <p>Setting $value to null unsets the Etag.</p> string null \Zend_Gdata_App_Entry $value getEtag getEtag Return the Etag for the current entry, or null if not set. string null setMajorProtocolVersion setMajorProtocolVersion Set the major protocol version that should be used. <p>Values &lt; 1 (excluding NULL) will cause a Zend_Gdata_App_InvalidArgumentException to be thrown.</p> \(int \NULL) \Zend_Gdata_App_InvalidArgumentException $value getMajorProtocolVersion getMajorProtocolVersion Get the major protocol version that is in use. \(int \NULL) setMinorProtocolVersion setMinorProtocolVersion Set the minor protocol version that should be used. <p>If set to NULL, no minor protocol version will be sent to the server. Values &lt; 0 will cause a Zend_Gdata_App_InvalidArgumentException to be thrown.</p> \(int \NULL) \Zend_Gdata_App_InvalidArgumentException $value getMinorProtocolVersion getMinorProtocolVersion Get the minor protocol version that is in use. \(int \NULL) lookupNamespace lookupNamespace Get the full version of a namespace prefix <p>Looks up a prefix (atom:, etc.) in the list of registered namespaces and returns the full namespace URI if available. Returns the prefix, unmodified, if it's not registered.</p> <p>The current entry or feed's version will be used when performing the namespace lookup unless overridden using $majorVersion and $minorVersion. If the entry/fee has a null version, then the latest protocol version will be used by default.</p> string integer integer string $prefix $majorVersion null $minorVersion null No DocBlock was found for property $_author No DocBlock was found for property $_category No DocBlock was found for property $_contributor No DocBlock was found for property $_id No DocBlock was found for property $_link No DocBlock was found for property $_rights No DocBlock was found for property $_title No DocBlock was found for property $_updated Argument $element is missing from the Docblock of __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() No short description for method getAuthor() No short description for method getId() No short description for method setId() No short description for method getLicenseLink() No short description for method setLink() No short description for method getRights() No short description for method setRights() No short description for method getUpdated() No short description for method setUpdated() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/AuthException.php \Zend_Gdata_App_AuthException Zend_Gdata_App_CaptchaRequiredException \Zend_Gdata_App_CaptchaRequiredException Gdata exceptions <p>Class to represent an exception that occurs during the use of ClientLogin. This particular exception happens when a CAPTCHA challenge is issued. This challenge is a visual puzzle presented to the user to prove that they are not an automated system.</p> ACCOUNTS_URL ACCOUNTS_URL 'https://www.google.com/accounts/' The Google Accounts URL prefix. $captchaToken The token identifier from the server. string $captchaUrl The URL of the CAPTCHA image. string __construct __construct Constructs the exception to handle a CAPTCHA required response. string string $captchaToken $captchaUrl getCaptchaToken getCaptchaToken Retrieves the token identifier as provided by the server. string getCaptchaUrl getCaptchaUrl Retrieves the URL CAPTCHA image as provided by the server. string Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Exception.php Zend_Gdata_App_Exception Zend/Http/Client/Exception.php Zend_Http_Client_Exception \Zend_Gdata_App_Exception Zend_Gdata_App_HttpException \Zend_Gdata_App_HttpException Gdata exceptions <p>Class to represent exceptions that occur during Gdata operations.</p> $_httpClientException null $_response null __construct __construct Create a new Zend_Gdata_App_HttpException string \Zend_Http_Client_Exception \Zend_Http_Response $message null $e null $response null getHttpClientException getHttpClientException Get the Zend_Http_Client_Exception. \Zend_Http_Client_Exception setHttpClientException setHttpClientException Set the Zend_Http_Client_Exception. \Zend_Http_Client_Exception $value setResponse setResponse Set the Zend_Http_Response. \Zend_Http_Response $response getResponse getResponse Get the Zend_Http_Response. \Zend_Http_Response getRawResponseBody getRawResponseBody Get the body of the Zend_Http_Response string No DocBlock was found for property $_httpClientException No DocBlock was found for property $_response Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Entry.php Zend/Gdata/App/FeedSourceParent.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/HttpException.php \Zend_Gdata_App_FeedSourceParent \Iterator \ArrayAccess \Countable Zend_Gdata_App_Feed \Zend_Gdata_App_Feed Atom feed class $_rootElement 'feed' The root xml element of this data element string $_entry array() Cache of feed entries. array $_entryIndex 0 Current location in $_entry array int __get __get Make accessing some individual elements of the feed easier. <p>Special accessors 'entry' and 'entries' are provided so that if you wish to iterate over an Atom feed's entries, you can do so using foreach ($feed->entries as $entry) or foreach ($feed->entry as $entry).</p> string mixed $var getDOM getDOM Retrieves the DOM model representing this object and all children \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child count count Get the number of entries in this feed object. integer rewind rewind Required by the Iterator interface. void current current Required by the Iterator interface. mixed key key Required by the Iterator interface. mixed next next Required by the Iterator interface. mixed valid valid Required by the Iterator interface. boolean getEntry getEntry Gets the array of atom:entry elements contained within this atom:feed representation array setEntry setEntry Sets the array of atom:entry elements contained within this atom:feed representation array \Zend_Gdata_App_Feed $value addEntry addEntry Adds an entry representation to the array of entries contained within this feed \Zend_Gdata_App_Entry \Zend_Gdata_App_Feed $value offsetSet offsetSet Required by the ArrayAccess interface int \Zend_Gdata_App_Entry void $key $value offsetGet offsetGet Required by the ArrayAccess interface int \Zend_Gdata_App_Entry $key offsetUnset offsetUnset Required by the ArrayAccess interface int \Zend_Gdata_App_Entry $key offsetExists offsetExists Required by the ArrayAccess interface int boolean $key getNextFeed getNextFeed Retrieve the next set of results from this feed. \Zend_Gdata_App_Exception mixed null getPreviousFeed getPreviousFeed Retrieve the previous set of results from this feed. \Zend_Gdata_App_Exception mixed null setMajorProtocolVersion setMajorProtocolVersion Set the major protocol version that should be used. <p>Values &lt; 1 will cause a Zend_Gdata_App_InvalidArgumentException to be thrown.</p> <p>This value will be propogated to all child entries.</p> \(int \NULL) \Zend_Gdata_App_InvalidArgumentException $value setMinorProtocolVersion setMinorProtocolVersion Set the minor protocol version that should be used. <p>If set to NULL, no minor protocol version will be sent to the server. Values &lt; 0 will cause a Zend_Gdata_App_InvalidArgumentException to be thrown.</p> <p>This value will be propogated to all child entries.</p> \(int \NULL) \Zend_Gdata_App_InvalidArgumentException $value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Parameter $value could not be found in offsetGet() Parameter $value could not be found in offsetUnset() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend_Exception \Zend_Exception Zend_Gdata_App_Exception \Zend_Gdata_App_Exception Gdata App exceptions <p>Class to represent exceptions that occur during Gdata App operations.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend_Gdata_App_MediaSource \Zend_Gdata_App_MediaSource Interface for defining data that can be encoded and sent over the network. encode encode Return a byte stream representation of this object. string setContentType setContentType Set the content type for the file attached (example image/png) string \Zend_Gdata_App_MediaFileSource $value getContentType getContentType The content type for the file attached (example image/png) string setSlug setSlug Sets the Slug header value. <p>Used by some services to determine the title for the uploaded file. A null value indicates no slug header.</p> string \Zend_Gdata_App_MediaSource $value getSlug getSlug Returns the Slug header value. <p>Used by some services to determine the title for the uploaded file. Returns null if no slug should be used.</p> string Argument $value is missing from the Docblock of setSlug() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Exception.php Zend_Gdata_App_Exception \Zend_Gdata_App_Exception Zend_Gdata_App_InvalidArgumentException \Zend_Gdata_App_InvalidArgumentException Gdata exceptions <p>Class to represent exceptions that occur during Gdata operations.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Entry.php Zend/Gdata/App/FeedEntryParent.php Zend/Gdata/App/Extension/Generator.php Zend/Gdata/App/Extension/Icon.php Zend/Gdata/App/Extension/Logo.php Zend/Gdata/App/Extension/Subtitle.php \Zend_Gdata_App_FeedEntryParent Zend_Gdata_App_FeedSourceParent \Zend_Gdata_App_FeedSourceParent Atom feed class $_entryClassName 'Zend_Gdata_App_Entry' The classname for individual feed elements. string $_rootElement null Root XML element for Atom entries. string $_generator null $_icon null $_logo null $_subtitle null setHttpClient setHttpClient Set the HTTP client instance <p>Sets the HTTP client object to use for retrieving the feed.</p> \Zend_Http_Client \Zend_Gdata_App_FeedSourceParent $httpClient \Zend_Http_Client setService setService Set the active service instance for this feed and all enclosed entries. <p>This will be used to perform network requests, such as when calling save() and delete().</p> \Zend_Gdata_App \Zend_Gdata_App_FeedEntryParent $instance __get __get Make accessing some individual elements of the feed easier. <p>Special accessors 'entry' and 'entries' are provided so that if you wish to iterate over an Atom feed's entries, you can do so using foreach ($feed->entries as $entry) or foreach ($feed->entry as $entry).</p> string mixed $var getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child getGenerator getGenerator \Zend_Gdata_AppExtension_Generator setGenerator setGenerator \Zend_Gdata_App_Extension_Generator \Zend_Gdata_App_FeedSourceParent $value getIcon getIcon \Zend_Gdata_AppExtension_Icon setIcon setIcon \Zend_Gdata_App_Extension_Icon \Zend_Gdata_App_FeedSourceParent $value getlogo getlogo \Zend_Gdata_AppExtension_logo setlogo setlogo \Zend_Gdata_App_Extension_logo \Zend_Gdata_App_FeedSourceParent $value getSubtitle getSubtitle \Zend_Gdata_AppExtension_Subtitle setSubtitle setSubtitle \Zend_Gdata_App_Extension_Subtitle \Zend_Gdata_App_FeedSourceParent $value No DocBlock was found for property $_generator No DocBlock was found for property $_icon No DocBlock was found for property $_logo No DocBlock was found for property $_subtitle No DocBlock was found for method getDOM() No short description for method getGenerator() No short description for method setGenerator() No short description for method getIcon() No short description for method setIcon() No short description for method getlogo() No short description for method setlogo() No short description for method getSubtitle() No short description for method setSubtitle() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Exception.php Zend_Gdata_App_Exception \Zend_Gdata_App_Exception Zend_Gdata_App_IOException \Zend_Gdata_App_IOException Gdata App IO exceptions. <p>Class to represent IO exceptions that occur during Gdata App operations.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/FeedEntryParent.php Zend/Gdata/App/Extension/Content.php Zend/Gdata/App/Extension/Edited.php Zend/Gdata/App/Extension/Published.php Zend/Gdata/App/Extension/Source.php Zend/Gdata/App/Extension/Summary.php Zend/Gdata/App/Extension/Control.php \Zend_Gdata_App_FeedEntryParent Zend_Gdata_App_Entry \Zend_Gdata_App_Entry Concrete class for working with Atom entries. $_rootElement 'entry' Root XML element for Atom entries. string $_entryClassName 'Zend_Gdata_App_Entry' Class name for each entry in this feed* string $_content null atom:content element \Zend_Gdata_App_Extension_Content $_published null atom:published element \Zend_Gdata_App_Extension_Published $_source null atom:source element \Zend_Gdata_App_Extension_Source $_summary null atom:summary element \Zend_Gdata_App_Extension_Summary $_control null app:control element \Zend_Gdata_App_Extension_Control $_edited null app:edited element \Zend_Gdata_App_Extension_Edited getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child save save Uploads changes in this entry to the server using Zend_Gdata_App string null string null array \Zend_Gdata_App_Entry \Zend_Gdata_App_Exception $uri null $className null $extraHeaders array() delete delete Deletes this entry to the server using the referenced Zend_Http_Client to do a HTTP DELETE to the edit link stored in this entry's link collection. void \Zend_Gdata_App_Exception reload reload Reload the current entry. <p>Returns a new copy of the entry as returned by the server, or null if no changes exist. This does not modify the current entry instance.</p> string null string null array mixed \Zend_Gdata_App_Exception $uri null $className null $extraHeaders array() getContent getContent Gets the value of the atom:content element \Zend_Gdata_App_Extension_Content setContent setContent Sets the value of the atom:content element \Zend_Gdata_App_Extension_Content \Zend_Gdata_App_Entry $value getPublished getPublished Sets the value of the atom:published element This represents the publishing date for an entry \Zend_Gdata_App_Extension_Published setPublished setPublished Sets the value of the atom:published element This represents the publishing date for an entry \Zend_Gdata_App_Extension_Published \Zend_Gdata_App_Entry $value getSource getSource Gets the value of the atom:source element \Zend_Gdata_App_Extension_Source setSource setSource Sets the value of the atom:source element \Zend_Gdata_App_Extension_Source \Zend_Gdata_App_Entry $value getSummary getSummary Gets the value of the atom:summary element This represents a textual summary of this entry's content \Zend_Gdata_App_Extension_Summary setSummary setSummary Sets the value of the atom:summary element This represents a textual summary of this entry's content \Zend_Gdata_App_Extension_Summary \Zend_Gdata_App_Entry $value getControl getControl Gets the value of the app:control element \Zend_Gdata_App_Extension_Control setControl setControl Sets the value of the app:control element \Zend_Gdata_App_Extension_Control \Zend_Gdata_App_Entry $value No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend_Gdata_App_Util \Zend_Gdata_App_Util Utility class for static functions needed by Zend_Gdata_App formatTimestamp formatTimestamp Convert timestamp into RFC 3339 date string. <p>2005-04-19T15:30:00</p> int \Zend_Gdata_App_InvalidArgumentException $timestamp findGreatestBoundedValue findGreatestBoundedValue Find the greatest key that is less than or equal to a given upper bound, and return the value associated with that key. integer null array \Zend_Gdata_App_Exception $maximumKey $collection Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/BaseMediaSource.php Zend/Gdata/App/IOException.php Zend/Gdata/App/IOException.php \Zend_Gdata_App_BaseMediaSource Zend_Gdata_App_MediaFileSource \Zend_Gdata_App_MediaFileSource Concrete class to use a file handle as an attachment within a MediaEntry. $_filename null The filename which is represented string $_contentType null The content type for the file attached (example image/png) string __construct __construct Create a new Zend_Gdata_App_MediaFileSource object. string $filename encode encode Return the MIME multipart representation of this MediaEntry. string \Zend_Gdata_App_IOException getFilename getFilename Get the filename associated with this reader. string setFilename setFilename Set the filename which is to be read. string \Zend_Gdata_App_MediaFileSource $value getContentType getContentType The content type for the file attached (example image/png) string setContentType setContentType Set the content type for the file attached (example image/png) string \Zend_Gdata_App_MediaFileSource $value __toString __toString Alias for getFilename(). string Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/MediaSource.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_App_MediaSource Zend_Gdata_App_BaseMediaSource \Zend_Gdata_App_BaseMediaSource Concrete class to use a file handle as an attachment within a MediaEntry. $_contentType null The content type for the attached file (example image/png) string $_slug null The slug header value representing the attached file title, or null if no slug should be used. <p>The slug header is only necessary in some cases, usually when a multipart upload is not being performed.</p> string getContentType getContentType The content type for the attached file (example image/png) string setContentType setContentType Set the content type for the file attached (example image/png) string \Zend_Gdata_App_MediaFileSource $value getSlug getSlug Returns the Slug header value. <p>Used by some services to determine the title for the uploaded file. Returns null if no slug should be used.</p> string setSlug setSlug Sets the Slug header value. <p>Used by some services to determine the title for the uploaded file. A null value indicates no slug header.</p> string \Zend_Gdata_App_MediaSource $value __get __get Magic getter to allow acces like $source->foo to call $source->getFoo() Alternatively, if no getFoo() is defined, but a $_foo protected variable is defined, this is returned. <p>TODO Remove ability to bypass getFoo() methods??</p> string $name __set __set Magic setter to allow acces like $source->foo='bar' to call $source->setFoo('bar') automatically. <p>Alternatively, if no setFoo() is defined, but a $_foo protected variable is defined, this is returned.</p> string string $name $val __isset __isset Magic __isset method string $name Argument $value is missing from the Docblock of setSlug() Name of argument $val does not match with the DocBlock's name $value in __set() Parameter $value could not be found in __set() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Exception.php Zend_Gdata_App_Exception \Zend_Gdata_App_Exception Zend_Gdata_App_BadMethodCallException \Zend_Gdata_App_BadMethodCallException Gdata APP exceptions <p>Class to represent exceptions that occur during Gdata APP operations.</p> Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaRestriction \Zend_Gdata_Media_Extension_MediaRestriction Represents the media:restriction element $_rootElement 'restriction' $_rootNamespace 'media' $_relationship null string $_type null string __construct __construct Constructs a new MediaRestriction element string string string $text null $relationship null $type null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getRelationship getRelationship string setRelationship setRelationship string \Zend_Gdata_Media_Extension_MediaRestriction $value getType getType string setType setType string \Zend_Gdata_Media_Extension_MediaRestriction $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_relationship No short description for property $_type Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getRelationship() No short description for method setRelationship() No short description for method getType() No short description for method setType() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaRating \Zend_Gdata_Media_Extension_MediaRating Represents the media:rating element $_rootElement 'rating' $_rootNamespace 'media' $_scheme null string __construct __construct Constructs a new MediaRating element string string $text null $scheme null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getScheme getScheme string setScheme setScheme string \Zend_Gdata_Media_Extension_MediaRating $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_scheme Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getScheme() No short description for method setScheme() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaCategory \Zend_Gdata_Media_Extension_MediaCategory Represents the media:category element $_rootElement 'category' $_rootNamespace 'media' $_scheme null string $_label null __construct __construct Creates an individual MediaCategory object. string string string $text null $scheme null $label null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getScheme getScheme Returns the URI that identifies the categorization scheme Optional. string setScheme setScheme string \Zend_Gdata_Media_Extension_MediaCategory $value getLabel getLabel string setLabel setLabel string \Zend_Gdata_Media_Extension_MediaCategory $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_scheme No DocBlock was found for property $_label Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method setScheme() No short description for method getLabel() No short description for method setLabel() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaText \Zend_Gdata_Media_Extension_MediaText Represents the media:text element $_rootElement 'text' $_rootNamespace 'media' $_type null string $_lang null string $_start null string $_end null string __construct __construct Constructs a new MediaText element string string string string string $text null $type null $lang null $start null $end null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getType getType string setType setType string \Zend_Gdata_Media_Extension_MediaText $value getLang getLang string setLang setLang string \Zend_Gdata_Media_Extension_MediaText $value getStart getStart string setStart setStart string \Zend_Gdata_Media_Extension_MediaText $value getEnd getEnd string setEnd setEnd string \Zend_Gdata_Media_Extension_MediaText $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_type No short description for property $_lang No short description for property $_start No short description for property $_end Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getType() No short description for method setType() No short description for method getLang() No short description for method setLang() No short description for method getStart() No short description for method setStart() No short description for method getEnd() No short description for method setEnd() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaHash \Zend_Gdata_Media_Extension_MediaHash Represents the media:hash element $_rootElement 'hash' $_rootNamespace 'media' $_algo null __construct __construct Constructs a new MediaHash element string string $text null $algo null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode \Zend_Gdata_App_InvalidArgumentException $attribute getAlgo getAlgo string setAlgo setAlgo string \Zend_Gdata_Media_Extension_MediaHash $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_algo Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getAlgo() No short description for method setAlgo() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaCopyright \Zend_Gdata_Media_Extension_MediaCopyright Represents the media:copyright element $_rootElement 'copyright' $_rootNamespace 'media' $_url null string __construct __construct string string $text null $url null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getUrl getUrl string setUrl setUrl string \Zend_Gdata_Media_Extension_MediaCopyright $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_url No short description for method __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getUrl() No short description for method setUrl() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaTitle \Zend_Gdata_Media_Extension_MediaTitle Represents the media:title element in MediaRSS $_rootElement 'title' $_rootNamespace 'media' $_type null string __construct __construct Constructs a MediaTitle element string string $text null $type null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getType getType string setType setType string \Zend_Gdata_Media_Extension_MediaTitle $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_type Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getType() No short description for method setType() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Entry.php Zend/Gdata/Media/Extension/MediaContent.php Zend/Gdata/Media/Extension/MediaCategory.php Zend/Gdata/Media/Extension/MediaCopyright.php Zend/Gdata/Media/Extension/MediaCredit.php Zend/Gdata/Media/Extension/MediaDescription.php Zend/Gdata/Media/Extension/MediaHash.php Zend/Gdata/Media/Extension/MediaKeywords.php Zend/Gdata/Media/Extension/MediaPlayer.php Zend/Gdata/Media/Extension/MediaRating.php Zend/Gdata/Media/Extension/MediaRestriction.php Zend/Gdata/Media/Extension/MediaText.php Zend/Gdata/Media/Extension/MediaThumbnail.php Zend/Gdata/Media/Extension/MediaTitle.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaGroup \Zend_Gdata_Media_Extension_MediaGroup This class represents the media:group element of Media RSS. <p>It allows the grouping of media:content elements that are different representations of the same content. When it exists, it is a child of an Entry (Atom) or Item (RSS).</p> $_rootElement 'group' $_rootNamespace 'media' $_content array() array $_category array() array $_copyright null \Zend_Gdata_Media_Extension_MediaCopyright $_credit array() array $_description null \Zend_Gdata_Media_Extension_MediaDescription $_hash array() array $_keywords null \Zend_Gdata_Media_Extension_MediaKeywords $_player array() array $_rating array() array $_restriction array() array $_mediaText array() array $_thumbnail array() array $_title null string __construct __construct Creates an individual MediaGroup object. $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child getContent getContent array setContent setContent array \Zend_Gdata_Media_MediaGroup $value getCategory getCategory array setCategory setCategory array \Zend_Gdata_Media_Extension_MediaGroup $value getCopyright getCopyright \Zend_Gdata_Media_Extension_MediaCopyright setCopyright setCopyright \Zend_Gdata_Media_Extension_MediaCopyright \Zend_Gdata_Media_Extension_MediaGroup $value getCredit getCredit array setCredit setCredit array \Zend_Gdata_Media_Extension_MediaGroup $value getTitle getTitle \Zend_Gdata_Media_Extension_MediaTitle setTitle setTitle \Zend_Gdata_Media_Extension_MediaTitle \Zend_Gdata_Media_Extension_MediaGroup $value getDescription getDescription \Zend_Gdata_Media_Extension_MediaDescription setDescription setDescription \Zend_Gdata_Media_Extension_MediaDescription \Zend_Gdata_Media_Extension_MediaGroup $value getHash getHash array setHash setHash array \Zend_Gdata_Media_Extension_MediaGroup $value getKeywords getKeywords \Zend_Gdata_Media_Extension_MediaKeywords setKeywords setKeywords array \Zend_Gdata_Media_Extension_MediaGroup $value getPlayer getPlayer array setPlayer setPlayer array \Zend_Gdata_Media_Extension_MediaGroup $value getRating getRating array setRating setRating array \Zend_Gdata_Media_Extension_MediaGroup $value getRestriction getRestriction array setRestriction setRestriction array \Zend_Gdata_Media_Extension_MediaGroup $value getThumbnail getThumbnail array setThumbnail setThumbnail array \Zend_Gdata_Media_Extension_MediaGroup $value getMediaText getMediaText array setMediaText setMediaText array \Zend_Gdata_Media_Extension_MediaGroup $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_content No short description for property $_category No short description for property $_copyright No short description for property $_credit No short description for property $_description No short description for property $_hash No short description for property $_keywords No short description for property $_player No short description for property $_rating No short description for property $_restriction No short description for property $_mediaText No short description for property $_thumbnail No short description for property $_title Argument $element is missing from the Docblock of __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getContent() No short description for method setContent() No short description for method getCategory() No short description for method setCategory() No short description for method getCopyright() No short description for method setCopyright() No short description for method getCredit() No short description for method setCredit() No short description for method getTitle() No short description for method setTitle() No short description for method getDescription() No short description for method setDescription() No short description for method getHash() No short description for method setHash() No short description for method getKeywords() No short description for method setKeywords() No short description for method getPlayer() No short description for method setPlayer() No short description for method getRating() No short description for method setRating() No short description for method getRestriction() No short description for method setRestriction() No short description for method getThumbnail() No short description for method setThumbnail() No short description for method getMediaText() No short description for method setMediaText() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaCredit \Zend_Gdata_Media_Extension_MediaCredit Represents the media:credit element $_rootElement 'credit' $_rootNamespace 'media' $_role null string $_scheme null string __construct __construct Creates an individual MediaCredit object. string string string $text null $role null $scheme null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getRole getRole string setRole setRole string \Zend_Gdata_Media_Extension_MediaCredit $value getScheme getScheme string setScheme setScheme string \Zend_Gdata_Media_Extension_MediaCredit $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_role No short description for property $_scheme Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getRole() No short description for method setRole() No short description for method getScheme() No short description for method setScheme() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaKeywords \Zend_Gdata_Media_Extension_MediaKeywords Represents the media:keywords element $_rootElement 'keywords' $_rootNamespace 'media' __construct __construct Constructs a new MediaKeywords element No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaContent \Zend_Gdata_Media_Extension_MediaContent Represents the media:content element of Media RSS. <p>Represents media objects. Multiple media objects representing the same content can be represented using a media:group (Zend_Gdata_Media_Extension_MediaGroup) element.</p> $_rootElement 'content' $_rootNamespace 'media' $_url null string $_fileSize null int $_type null string $_medium null string $_isDefault null string $_expression null string $_bitrate null int $_framerate null int $_samplingrate null int $_channels null int $_duration null int $_height null int $_width null int $_lang null string __construct __construct Creates an individual MediaContent object. $url null $fileSize null $type null $medium null $isDefault null $expression null $bitrate null $framerate null $samplingrate null $channels null $duration null $height null $width null $lang null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute __toString __toString Returns the URL representing this MediaContent object string getUrl getUrl string setUrl setUrl string \Zend_Gdata_Media_Extension_MediaContent $value getFileSize getFileSize int setFileSize setFileSize int \Zend_Gdata_Media_Extension_MediaContent $value getType getType string setType setType string \Zend_Gdata_Media_Extension_MediaContent $value getMedium getMedium string setMedium setMedium string \Zend_Gdata_Media_Extension_MediaContent $value getIsDefault getIsDefault bool setIsDefault setIsDefault bool \Zend_Gdata_Media_Extension_MediaContent $value getExpression getExpression string setExpression setExpression string \Zend_Gdata_Media_Extension_MediaContent $value getBitrate getBitrate int setBitrate setBitrate int \Zend_Gdata_Media_Extension_MediaContent $value getFramerate getFramerate int setFramerate setFramerate int \Zend_Gdata_Media_Extension_MediaContent $value getSamplingrate getSamplingrate int setSamplingrate setSamplingrate int \Zend_Gdata_Media_Extension_MediaContent $value getChannels getChannels int setChannels setChannels int \Zend_Gdata_Media_Extension_MediaContent $value getDuration getDuration int setDuration setDuration int \Zend_Gdata_Media_Extension_MediaContent $value getHeight getHeight int setHeight setHeight int \Zend_Gdata_Media_Extension_MediaContent $value getWidth getWidth int setWidth setWidth int \Zend_Gdata_Media_Extension_MediaContent $value getLang getLang string setLang setLang string \Zend_Gdata_Media_Extension_MediaContent $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_url No short description for property $_fileSize No short description for property $_type No short description for property $_medium No short description for property $_isDefault No short description for property $_expression No short description for property $_bitrate No short description for property $_framerate No short description for property $_samplingrate No short description for property $_channels No short description for property $_duration No short description for property $_height No short description for property $_width No short description for property $_lang Argument $url is missing from the Docblock of __construct() Argument $fileSize is missing from the Docblock of __construct() Argument $type is missing from the Docblock of __construct() Argument $medium is missing from the Docblock of __construct() Argument $isDefault is missing from the Docblock of __construct() Argument $expression is missing from the Docblock of __construct() Argument $bitrate is missing from the Docblock of __construct() Argument $framerate is missing from the Docblock of __construct() Argument $samplingrate is missing from the Docblock of __construct() Argument $channels is missing from the Docblock of __construct() Argument $duration is missing from the Docblock of __construct() Argument $height is missing from the Docblock of __construct() Argument $width is missing from the Docblock of __construct() Argument $lang is missing from the Docblock of __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getUrl() No short description for method setUrl() No short description for method getFileSize() No short description for method setFileSize() No short description for method getType() No short description for method setType() No short description for method getMedium() No short description for method setMedium() No short description for method getIsDefault() No short description for method setIsDefault() No short description for method getExpression() No short description for method setExpression() No short description for method getBitrate() No short description for method setBitrate() No short description for method getFramerate() No short description for method setFramerate() No short description for method getSamplingrate() No short description for method setSamplingrate() No short description for method getChannels() No short description for method setChannels() No short description for method getDuration() No short description for method setDuration() No short description for method getHeight() No short description for method setHeight() No short description for method getWidth() No short description for method setWidth() No short description for method getLang() No short description for method setLang() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaPlayer \Zend_Gdata_Media_Extension_MediaPlayer Represents the media:player element $_rootElement 'player' $_rootNamespace 'media' $_url null string $_width null int $_height null int __construct __construct Constructs a new MediaPlayer element string int int $url null $width null $height null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getUrl getUrl string setUrl setUrl string \Zend_Gdata_Media_Extension_MediaPlayer $value getWidth getWidth int setWidth setWidth int \Zend_Gdata_Media_Extension_MediaPlayer $value getHeight getHeight int setHeight setHeight int \Zend_Gdata_Media_Extension_MediaPlayer $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_url No short description for property $_width No short description for property $_height Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getUrl() No short description for method setUrl() No short description for method getWidth() No short description for method setWidth() No short description for method getHeight() No short description for method setHeight() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaThumbnail \Zend_Gdata_Media_Extension_MediaThumbnail Represents the media:thumbnail element $_rootElement 'thumbnail' $_rootNamespace 'media' $_url null string $_width null int $_height null int $_time null string __construct __construct Constructs a new MediaThumbnail element string int int string $url null $width null $height null $time null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getUrl getUrl string setUrl setUrl string \Zend_Gdata_Media_Extension_MediaThumbnail $value getWidth getWidth int setWidth setWidth int \Zend_Gdata_Media_Extension_MediaThumbnail $value getHeight getHeight int setHeight setHeight int \Zend_Gdata_Media_Extension_MediaThumbnail $value getTime getTime string setTime setTime string \Zend_Gdata_Media_Extension_MediaThumbnail $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_url No short description for property $_width No short description for property $_height No short description for property $_time Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getUrl() No short description for method setUrl() No short description for method getWidth() No short description for method setWidth() No short description for method getHeight() No short description for method setHeight() No short description for method getTime() No short description for method setTime() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Extension.php \Zend_Gdata_Extension Zend_Gdata_Media_Extension_MediaDescription \Zend_Gdata_Media_Extension_MediaDescription Represents the media:description element $_rootElement 'description' $_rootNamespace 'media' $_type null string __construct __construct string string $text null $type null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getType getType string setType setType string \Zend_Gdata_Media_Extension_MediaDescription $value No DocBlock was found for property $_rootElement No DocBlock was found for property $_rootNamespace No short description for property $_type No short description for method __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() No short description for method getType() No short description for method setType() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Media.php Zend/Gdata/Media/Entry.php \Zend_Gdata_Feed Zend_Gdata_Media_Feed \Zend_Gdata_Media_Feed The Gdata flavor of an Atom Feed with media support $_entryClassName 'Zend_Gdata_Media_Entry' The classname for individual feed elements. string __construct __construct Create a new instance. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Media.php Zend/Gdata/Media/Extension/MediaGroup.php \Zend_Gdata_Entry Zend_Gdata_Media_Entry \Zend_Gdata_Media_Entry Represents the Gdata flavor of an Atom entry $_entryClassName 'Zend_Gdata_Media_Entry' $_mediaGroup null media:group element \Zend_Gdata_Media_Extension_MediaGroup __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getMediaGroup getMediaGroup Returns the entry's mediaGroup object. \Zend_Gdata_Media_Extension_MediaGroup setMediaGroup setMediaGroup Sets the entry's mediaGroup object. \Zend_Gdata_Media_Extension_MediaGroup \Zend_Gdata_Media_Entry $mediaGroup No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/MimeFile.php Zend/Gdata/MimeBodyString.php Zend/Gdata/App/IOException.php Zend_Gdata_MediaMimeStream \Zend_Gdata_MediaMimeStream A streaming Media MIME class that allows for buffered read operations. $_boundaryString null A valid MIME boundary. string $_fileHandle null A handle to the file that is part of the message. resource $_currentPart 0 The current part being read from. integer $_totalSize 0 The size of the MIME message. integer $_parts null An array of all the parts to be sent. <p>Array members are either a MimeFile or a MimeBodyString object.</p> array __construct __construct Create a new MimeMediaStream object. string string string \Zend_Gdata_App_IOException $xmlString null $filePath null $fileContentType null wrapEntry wrapEntry Sandwiches the entry body into a MIME message void $entry $fileMimeType read read Read a specific chunk of the the MIME multipart message. integer string $bytesRequested getTotalSize getTotalSize Return the total size of the mime message. integer closeFileHandle closeFileHandle Close the internal file that we are streaming to the socket. void getContentType getContentType Return a Content-type header that includes the current boundary string. string Argument $entry is missing from the Docblock of wrapEntry() Argument $fileMimeType is missing from the Docblock of wrapEntry() Name of argument $bytesRequested does not match with the DocBlock's name $bufferSize in read() Parameter $bufferSize could not be found in read() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata.php Zend/Gdata/App/MediaEntry.php Zend/Gdata/App/IOException.php \Zend_Gdata_App_MediaEntry Zend_Gdata_Entry \Zend_Gdata_Entry Represents the Gdata flavor of an Atom entry $_entryClassName 'Zend_Gdata_Entry' __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute No DocBlock was found for property $_entryClassName No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Http/Client/Adapter/Socket.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php \Zend_Http_Client_Adapter_Socket Zend_Gdata_HttpAdapterStreamingSocket \Zend_Gdata_HttpAdapterStreamingSocket Extends the default HTTP adapter to handle streams instead of discrete body strings. CHUNK_SIZE CHUNK_SIZE 1024 The amount read from a stream source at a time. integer write write Send request to the remote server with streaming support. string \Zend_Uri_Http string array string string $method $uri $http_ver '1.1' $headers array() $body '' Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Gapps_Query Zend_Gdata_Gapps_OwnerQuery \Zend_Gdata_Gapps_OwnerQuery Assists in constructing queries for Google Apps owner entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_groupId null Group owner is refering to string $_ownerEmail null The email of the owner string __construct __construct Create a new instance. string string string $domain null $groupId null $ownerEmail null setGroupId setGroupId Set the group id to query for. string $value getGroupId getGroupId Get the group id to query for. string setOwnerEmail setOwnerEmail Set the owner email to query for. string $value getOwnerEmail getOwnerEmail Get the owner email to query for. string getQueryUrl getQueryUrl Returns the query URL generated by this query instance. string Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension/FeedLink.php Zend/Gdata/Gapps/Extension/Login.php Zend/Gdata/Gapps/Extension/Name.php Zend/Gdata/Gapps/Extension/Quota.php \Zend_Gdata_Entry Zend_Gdata_Gapps_UserEntry \Zend_Gdata_Gapps_UserEntry Data model class for a Google Apps User Entry. <p>Each user entry describes a single user within a Google Apps hosted domain.</p> <p>To transfer user entries to and from the Google Apps servers, including creating new entries, refer to the Google Apps service class, Zend_Gdata_Gapps.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Gapps_UserEntry' $_login null <apps:login> element containing information about this user's account, including their username and permissions. \Zend_Gdata_Gapps_Extension_Login $_name null <apps:name> element containing the user's actual name. \Zend_Gdata_Gapps_Extension_Name $_quota null <apps:quotq> element describing any storage quotas in place for this user. \Zend_Gdata_Gapps_Extension_Quota $_feedLink array() <gd:feedLink> element containing information about other feeds relevant to this entry. \Zend_Gdata_Extension_FeedLink __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getLogin getLogin Get the value of the login property for this object. \Zend_Gdata_Gapps_Extension_Login setLogin setLogin Set the value of the login property for this object. <p>This property is used to store the username address of the current user.</p> \Zend_Gdata_Gapps_Extension_Login \Zend_Gdata_Gapps_UserEntry $value getName getName Get the value of the name property for this object. \Zend_Gdata_Gapps_Extension_Name setName setName Set the value of the name property for this object. <p>This property is used to store the full name of the current user.</p> \Zend_Gdata_Gapps_Extension_Name \Zend_Gdata_Gapps_UserEntry $value getQuota getQuota Get the value of the quota property for this object. \Zend_Gdata_Gapps_Extension_Quota setQuota setQuota Set the value of the quota property for this object. <p>This property is used to store the amount of storage available for the current user. Quotas may not be modifiable depending on the domain used.</p> \Zend_Gdata_Gapps_Extension_Quota \Zend_Gdata_Gapps_UserEntry $value getFeedLink getFeedLink Returns all feed links for this entry, or if a rel value is specified, the feed link associated with that value is returned. string mixed $rel null setFeedLink setFeedLink Set the value of the feed link property for this object. <p>This property is used to provide links to alternative feeds relevant to this entry.</p> array \Zend_Gdata_Gapps_EventEntry $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Gapps.php \Zend_Gdata_Extension Zend_Gdata_Gapps_Extension_Quota \Zend_Gdata_Gapps_Extension_Quota Represents the apps:quota element used by the Apps data API. <p>This is used to indicate the amount of storage space available to a user. Quotas may not be able to be set, depending on the domain used. This class is usually contained within an instance of Zend_Gdata_Gapps_UserEntry.</p> $_rootNamespace 'apps' $_rootElement 'quota' $_limit null The amount of storage space available to the user in megabytes. integer __construct __construct Constructs a new Zend_Gdata_Gapps_Extension_Quota object. string $limit null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getLimit getLimit Get the value for this element's limit attribute. string setLimit setLimit Set the value for this element's limit attribute. <p>This is the amount of storage space, in bytes, that should be made available to the associated user.</p> string \Zend_Gdata_Gapps_Extension_Quota $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Gapps.php \Zend_Gdata_Extension Zend_Gdata_Gapps_Extension_EmailList \Zend_Gdata_Gapps_Extension_EmailList Represents the apps:emailList element used by the Apps data API. <p>This class represents properties of an email list and is usually contained within an instance of Zend_Gdata_Gapps_EmailListEntry.</p> $_rootNamespace 'apps' $_rootElement 'emailList' $_name null The name of the email list. <p>This name is used as the email address for this list.</p> string __construct __construct Constructs a new Zend_Gdata_Gapps_Extension_EmailList object. string $name null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getName getName Get the value for this element's name attribute. string setName setName Set the value for this element's name attribute. <p>This is the unique name which will be used to identify this email list within this domain, and will be used to form this email list's email address.</p> string \Zend_Gdata_Gapps_Extension_EmailList $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 string No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Gapps.php \Zend_Gdata_Extension Zend_Gdata_Gapps_Extension_Property \Zend_Gdata_Gapps_Extension_Property Represents the apps:Property element used by the Apps data API. $_rootNamespace 'apps' $_rootElement 'property' $_name null The name of the property string $_value null The value of the property string __construct __construct Constructs a new Zend_Gdata_Gapps_Extension_Property object. string string $name null $value null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getName getName Get the value for this element's name attribute. string setName setName Set the value for this element's name attribute. string \Zend_Gdata_Gapps_Extension_Property $value getValue getValue Get the value for this element's value attribute. string setValue setValue Set the value for this element's value attribute. string \Zend_Gdata_Gapps_Extension_Property $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 string No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Gapps.php \Zend_Gdata_Extension Zend_Gdata_Gapps_Extension_Name \Zend_Gdata_Gapps_Extension_Name Represents the apps:name element used by the Apps data API. <p>This is used to represent a user's full name. This class is usually contained within instances of Zend_Gdata_Gapps_UserEntry.</p> $_rootNamespace 'apps' $_rootElement 'name' $_familyName null The associated user's family name. string $_givenName null The associated user's given name. string __construct __construct Constructs a new Zend_Gdata_Gapps_Extension_Name object. string string $familyName null $givenName null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getFamilyName getFamilyName Get the value for this element's familyName attribute. string setFamilyName setFamilyName Set the value for this element's familyName attribute. <p>This represents a user's family name.</p> string \Zend_Gdata_Gapps_Extension_Name $value getGivenName getGivenName Get the value for this element's givenName attribute. string setGivenName setGivenName Set the value for this element's givenName attribute. <p>This represents a user's given name.</p> string \Zend_Gdata_Gapps_Extension_Name $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Gapps.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Extension Zend_Gdata_Gapps_Extension_Login \Zend_Gdata_Gapps_Extension_Login Represents the apps:login element used by the Apps data API. <p>This class is used to describe properties of a user, and is usually contained within instances of Zene_Gdata_Gapps_UserEntry or any other class which is linked to a particular username.</p> $_rootNamespace 'apps' $_rootElement 'login' $_username null The username for this user. <p>This is used as the user's email address and when logging in to Google Apps-hosted services.</p> string $_password null The password for the user. <p>May be in cleartext or as an SHA-1 digest, depending on the value of _hashFunctionName.</p> string $_hashFunctionName null Specifies whether the password stored in _password is in cleartext or is an SHA-1 digest of a password. <p>If the password is cleartext, then this should be null. If the password is an SHA-1 digest, then this should be set to 'SHA-1'.</p> <p>At the time of writing, no other hash functions are supported</p> string $_admin null True if the user has administrative rights for this domain, false otherwise. boolean $_agreedToTerms null True if the user has agreed to the terms of service for Google Apps, false otherwise. \boolean. $_suspended null True if this user has been suspended, false otherwise. boolean $_changePasswordAtNextLogin null True if the user will be required to change their password at their next login, false otherwise. boolean __construct __construct Constructs a new Zend_Gdata_Gapps_Extension_Login object. string string string boolean boolean boolean boolean $username null $password null $hashFunctionName null $admin null $suspended null $changePasswordAtNextLogin null $agreedToTerms null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode \Zend_Gdata_App_InvalidArgumentException $attribute getUsername getUsername Get the value for this element's username attribute. string setUsername setUsername Set the value for this element's username attribute. <p>This string is used to uniquely identify the user in this domian and is used to form this user's email address.</p> string \Zend_Gdata_Gapps_Extension_Login $value getPassword getPassword Get the value for this element's password attribute. string setPassword setPassword Set the value for this element's password attribute. <p>As of this writing, this can be either be provided as plaintext or hashed using the SHA-1 algorithm for protection. If using a hash function, this must be indicated by calling setHashFunctionName().</p> string \Zend_Gdata_Gapps_Extension_Login $value getHashFunctionName getHashFunctionName Get the value for this element's hashFunctionName attribute. string setHashFunctionName setHashFunctionName Set the value for this element's hashFunctionName attribute. <p>This indicates whether the password supplied with setPassword() is in plaintext or has had a hash function applied to it. If null, plaintext is assumed. As of this writing, the only valid hash function is 'SHA-1'.</p> string \Zend_Gdata_Gapps_Extension_Login $value getAdmin getAdmin Get the value for this element's admin attribute. boolean \Zend_Gdata_App_InvalidArgumentException setAdmin setAdmin Set the value for this element's admin attribute. <p>This indicates whether this user is an administrator for this domain.</p> boolean \Zend_Gdata_Gapps_Extension_Login \Zend_Gdata_App_InvalidArgumentException $value getAgreedToTerms getAgreedToTerms Get the value for this element's agreedToTerms attribute. boolean \Zend_Gdata_App_InvalidArgumentException setAgreedToTerms setAgreedToTerms Set the value for this element's agreedToTerms attribute. <p>This indicates whether this user has agreed to the terms of service.</p> boolean \Zend_Gdata_Gapps_Extension_Login \Zend_Gdata_App_InvalidArgumentException $value getSuspended getSuspended Get the value for this element's suspended attribute. boolean \Zend_Gdata_App_InvalidArgumentException setSuspended setSuspended Set the value for this element's suspended attribute. <p>If true, the user will not be able to login to this domain until unsuspended.</p> boolean \Zend_Gdata_Gapps_Extension_Login \Zend_Gdata_App_InvalidArgumentException $value getChangePasswordAtNextLogin getChangePasswordAtNextLogin Get the value for this element's changePasswordAtNextLogin attribute. boolean \Zend_Gdata_App_InvalidArgumentException setChangePasswordAtNextLogin setChangePasswordAtNextLogin Set the value for this element's changePasswordAtNextLogin attribute. <p>If true, the user will be forced to set a new password the next time they login.</p> boolean \Zend_Gdata_Gapps_Extension_Login \Zend_Gdata_App_InvalidArgumentException $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Gapps.php \Zend_Gdata_Extension Zend_Gdata_Gapps_Extension_Nickname \Zend_Gdata_Gapps_Extension_Nickname Represents the apps:nickname element used by the Apps data API. <p>This is used to describe a nickname's properties, and is usually contained within instances of Zend_Gdata_Gapps_NicknameEntry.</p> $_rootNamespace 'apps' $_rootElement 'nickname' $_name null The name of the nickname. <p>This name is used as the email address for this nickname.</p> string __construct __construct Constructs a new Zend_Gdata_Gapps_Extension_Nickname object. string $name null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute getName getName Get the value for this element's name attribute. string setName setName Set the value for this element's name attribute. <p>This name uniquely describes this nickname within the domain. Emails addressed to this name will be delivered to the user who owns this nickname.</p> string \Zend_Gdata_Gapps_Extension_Nickname $value __toString __toString Magic toString method allows using this directly via echo Works best in PHP >= 4.2.0 No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension/FeedLink.php Zend/Gdata/Gapps/Extension/EmailList.php \Zend_Gdata_Entry Zend_Gdata_Gapps_EmailListEntry \Zend_Gdata_Gapps_EmailListEntry Data model class for a Google Apps Email List Entry. <p>Each email list entry describes a single email list within a Google Apps hosted domain. Email lists may contain multiple recipients, as described by instances of Zend_Gdata_Gapps_EmailListRecipient. Multiple entries are contained within instances of Zend_Gdata_Gapps_EmailListFeed.</p> <p>To transfer email list entries to and from the Google Apps servers, including creating new entries, refer to the Google Apps service class, Zend_Gdata_Gapps.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Gapps_EmailListEntry' $_emailList null <apps:emailList> child element containing general information about this email list. \Zend_Gdata_Gapps_Extension_EmailList $_feedLink array() <gd:feedLink> element containing information about other feeds relevant to this entry. \Zend_Gdata_Extension_FeedLink __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getEmailList getEmailList Retrieve the email list property for this entry. \Zend_Gdata_Gapps_Extension_EmailList setEmailList setEmailList Set the email list property for this entry. <p>This property contains information such as the name of this email list.</p> <p>This corresponds to the <apps:emailList> property in the Google Data protocol.</p> \Zend_Gdata_Gapps_Extension_EmailList \Zend_Gdata_Gapps_EventEntry $value getFeedLink getFeedLink Get the feed link property for this entry. string mixed $rel null setFeedLink setFeedLink Set the feed link property for this entry. <p>Feed links provide information about other feeds associated with this entry.</p> <p>This corresponds to the <gd:feedLink> property in the Google Data protocol.</p> array \Zend_Gdata_Gapps_EventEntry $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Gapps_Query Zend_Gdata_Gapps_MemberQuery \Zend_Gdata_Gapps_MemberQuery Assists in constructing queries for Google Apps member entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_groupId null If not null, specifies the group id string $_memberId null If not null, specifies the member id of the user who should be retrieved by this query. string __construct __construct Create a new instance. string string string string $domain null $groupId null $memberId null $startMemberId null setGroupId setGroupId Set the group id to query for. string $value getGroupId getGroupId Get the group id to query for. <p>If no group id is set, null will be returned.</p> string string setMemberId setMemberId Set the member id to query for. <p>When set, only users with a member id matching this value will be returned in search results. Set to null to disable filtering by member id.</p> string $value getMemberId getMemberId Get the member id to query for. <p>If no member id is set, null will be returned.</p> string \The setStartMemberId setStartMemberId Set the first member id which should be displayed when retrieving a list of members. string $value getStartMemberId getStartMemberId Get the first username which should be displayed when retrieving a list of users. string getQueryUrl getQueryUrl Returns the query URL generated by this query instance. string Parameter $value could not be found in getGroupId() Parameter $value could not be found in getMemberId() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/App/Base.php Zend_Gdata_App_Base \Zend_Gdata_App_Base Zend_Gdata_Gapps_Error \Zend_Gdata_Gapps_Error Gdata Gapps Error class. <p>This class is used to represent errors returned within an AppsForYourDomainErrors message received from the Google Apps servers.</p> <p>Several different errors may be represented by this class, determined by the error code returned by the server. For a list of error codes available at the time of this writing, see getErrorCode.</p> UNKNOWN_ERROR UNKNOWN_ERROR 1000 USER_DELETED_RECENTLY USER_DELETED_RECENTLY 1100 USER_SUSPENDED USER_SUSPENDED 1101 DOMAIN_USER_LIMIT_EXCEEDED DOMAIN_USER_LIMIT_EXCEEDED 1200 DOMAIN_ALIAS_LIMIT_EXCEEDED DOMAIN_ALIAS_LIMIT_EXCEEDED 1201 DOMAIN_SUSPENDED DOMAIN_SUSPENDED 1202 DOMAIN_FEATURE_UNAVAILABLE DOMAIN_FEATURE_UNAVAILABLE 1203 ENTITY_EXISTS ENTITY_EXISTS 1300 ENTITY_DOES_NOT_EXIST ENTITY_DOES_NOT_EXIST 1301 ENTITY_NAME_IS_RESERVED ENTITY_NAME_IS_RESERVED 1302 ENTITY_NAME_NOT_VALID ENTITY_NAME_NOT_VALID 1303 INVALID_GIVEN_NAME INVALID_GIVEN_NAME 1400 INVALID_FAMILY_NAME INVALID_FAMILY_NAME 1401 INVALID_PASSWORD INVALID_PASSWORD 1402 INVALID_USERNAME INVALID_USERNAME 1403 INVALID_HASH_FUNCTION_NAME INVALID_HASH_FUNCTION_NAME 1404 INVALID_HASH_DIGEST_LENGTH INVALID_HASH_DIGEST_LENGTH 1405 INVALID_EMAIL_ADDRESS INVALID_EMAIL_ADDRESS 1406 INVALID_QUERY_PARAMETER_VALUE INVALID_QUERY_PARAMETER_VALUE 1407 TOO_MANY_RECIPIENTS_ON_EMAIL_LIST TOO_MANY_RECIPIENTS_ON_EMAIL_LIST 1500 $_errorCode null $_reason null $_invalidInput null __construct __construct $errorCode null $reason null $invalidInput null setErrorCode setErrorCode Set the error code for this exception. <p>For more information about error codes, see getErrorCode.</p> integer $value getErrorCode getErrorCode Get the error code for this exception. <p>Currently valid values are available as constants within this class. These values are:</p> <p>UNKNOWN_ERROR (1000) USER_DELETED_RECENTLY (1100) USER_SUSPENDED (1101) DOMAIN_USER_LIMIT_EXCEEDED (1200) DOMAIN_ALIAS_LIMIT_EXCEEDED (1201) DOMAIN_SUSPENDED (1202) DOMAIN_FEATURE_UNAVAILABLE (1203) ENTITY_EXISTS (1300) ENTITY_DOES_NOT_EXIST (1301) ENTITY_NAME_IS_RESERVED (1302) ENTITY_NAME_NOT_VALID (1303) INVALID_GIVEN_NAME (1400) INVALID_FAMILY_NAME (1401) INVALID_PASSWORD (1402) INVALID_USERNAME (1403) INVALID_HASH_FUNCTION_NAME (1404) INVALID_HASH_DIGEST_LENGTH (1405) INVALID_EMAIL_ADDRESS (1406) INVALID_QUERY_PARAMETER_VALUE (1407) TOO_MANY_RECIPIENTS_ON_EMAIL_LIST (1500)</p> <p>Numbers in parenthesis indicate the actual integer value of the constant. This list should not be treated as exhaustive, as additional error codes may be added at any time.</p> <p>For more information about these codes and their meaning, please see Appendix D of the Google Apps Provisioning API Reference.</p> integer setReason setReason Set human-readable text describing the reason this exception occurred. string $value getReason getReason Get human-readable text describing the reason this exception occurred. string setInvalidInput setInvalidInput Set the invalid input which caused this exception. string $value getInvalidInput getInvalidInput Set the invalid input which caused this exception. string getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeAttributeFromDOM takeAttributeFromDOM Given a DOMNode representing an attribute, tries to map the data into instance members. <p>If no mapping is defined, the name and value are stored in an array.</p> \DOMNode $attribute __toString __toString Get a human readable version of this exception. string No DocBlock was found for property $_errorCode No DocBlock was found for property $_reason No DocBlock was found for property $_invalidInput No DocBlock was found for method __construct() Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php \Zend_Gdata_Gapps_Query Zend_Gdata_Gapps_EmailListQuery \Zend_Gdata_Gapps_EmailListQuery Assists in constructing queries for Google Apps email list entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_emailListName null A string which, if not null, indicates which email list should be retrieved by this query. string __construct __construct Create a new instance. string string string string $domain null $emailListName null $recipient null $startEmailListName null setEmailListName setEmailListName Set the email list name to query for. <p>When set, only lists with a name matching this value will be returned in search results. Set to null to disable filtering by list name.</p> string $value getEmailListName getEmailListName Get the email list name to query for. <p>If no name is set, null will be returned.</p> string setRecipient setRecipient Set the recipient to query for. <p>When set, only subscribers with an email address matching this value will be returned in search results. Set to null to disable filtering by username.</p> string $value getRecipient getRecipient Get the recipient email address to query for. <p>If no recipient is set, null will be returned.</p> string setStartEmailListName setStartEmailListName Set the first email list which should be displayed when retrieving a list of email lists. string $value getStartEmailListName getStartEmailListName Get the first email list which should be displayed when retrieving a list of email lists. string getQueryUrl getQueryUrl Returns the URL generated for this query, based on it's current parameters. string \Zend_Gdata_App_InvalidArgumentException Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Gapps/EmailListEntry.php \Zend_Gdata_Feed Zend_Gdata_Gapps_EmailListFeed \Zend_Gdata_Gapps_EmailListFeed Data model for a collection of Google Apps email list entries, usually provided by the Google Apps servers. <p>For information on requesting this feed from a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_entryClassName 'Zend_Gdata_Gapps_EmailListEntry' $_feedClassName 'Zend_Gdata_Gapps_EmailListFeed' No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Query.php Zend_Gdata_Query Zend/Gdata/Gapps.php Zend_Gdata_Gapps Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Query Zend_Gdata_Gapps_Query \Zend_Gdata_Gapps_Query Assists in constructing queries for Google Apps entries. <p>This class provides common methods used by all other Google Apps query classes.</p> <p>This class should never be instantiated directly. Instead, instantiate a class which inherits from this class.</p> $_domain null The domain which is being administered via the Provisioning API. string __construct __construct Create a new instance. string $domain null setDomain setDomain Set domain for this service instance. <p>This should be a fully qualified domain, such as 'foo.example.com'.</p> <p>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.</p> string $value getDomain getDomain Get domain for this service instance. <p>This should be a fully qualified domain, such as 'foo.example.com'. If no domain is set, null will be returned.</p> string getBaseUrl getBaseUrl Returns the base URL used to access the Google Apps service, based on the current domain. <p>The current domain can be temporarily overridden by providing a fully qualified domain as $domain.</p> string $domain null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Gapps/NicknameEntry.php \Zend_Gdata_Feed Zend_Gdata_Gapps_NicknameFeed \Zend_Gdata_Gapps_NicknameFeed Data model for a collection of Google Apps nickname entries, usually provided by the Google Apps servers. <p>For information on requesting this feed from a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_entryClassName 'Zend_Gdata_Gapps_NicknameEntry' $_feedClassName 'Zend_Gdata_Gapps_NicknameFeed' No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Gapps/Extension/Login.php Zend/Gdata/Gapps/Extension/Nickname.php \Zend_Gdata_Entry Zend_Gdata_Gapps_NicknameEntry \Zend_Gdata_Gapps_NicknameEntry Data model class for a Google Apps Nickname Entry. <p>Each nickname entry describes a single nickname within a Google Apps hosted domain. Each user may own several nicknames, but each nickname may only belong to one user. Multiple entries are contained within instances of Zend_Gdata_Gapps_NicknameFeed.</p> <p>To transfer nickname entries to and from the Google Apps servers, including creating new entries, refer to the Google Apps service class, Zend_Gdata_Gapps.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Gapps_NicknameEntry' $_login null <apps:login> element used to hold information about the owner of this nickname, including their username. \Zend_Gdata_Gapps_Extension_Login $_nickname null <apps:nickname> element used to hold the name of this nickname. \Zend_Gdata_Gapps_Extension_Nickname __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getLogin getLogin Get the value of the login property for this object. \Zend_Gdata_Gapps_Extension_Login setLogin setLogin Set the value of the login property for this object. <p>This property is used to store the username address of the current user.</p> \Zend_Gdata_Gapps_Extension_Login \Zend_Gdata_Gapps_NicknameEntry $value getNickname getNickname Get the value of the nickname property for this object. \Zend_Gdata_Gapps_Extension_Nickname setNickname setNickname Set the value of the nickname property for this object. <p>This property is used to store the the name of the current nickname.</p> \Zend_Gdata_Gapps_Extension_Nickname \Zend_Gdata_Gapps_NicknameEntry $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php \Zend_Gdata_Gapps_Query Zend_Gdata_Gapps_UserQuery \Zend_Gdata_Gapps_UserQuery Assists in constructing queries for Google Apps user entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_username null If not null, specifies the username of the user who should be retrieved by this query. string __construct __construct Create a new instance. string string string $domain null $username null $startUsername null setUsername setUsername Set the username to query for. <p>When set, only users with a username matching this value will be returned in search results. Set to null to disable filtering by username.</p> string $value getUsername getUsername Get the username to query for. <p>If no username is set, null will be returned.</p> string setStartUsername setStartUsername Set the first username which should be displayed when retrieving a list of users. string $value getStartUsername getStartUsername Get the first username which should be displayed when retrieving a list of users. string getQueryUrl getQueryUrl Returns the query URL generated by this query instance. string Parameter $value could not be found in getUsername() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php \Zend_Gdata_Gapps_Query Zend_Gdata_Gapps_NicknameQuery \Zend_Gdata_Gapps_NicknameQuery Assists in constructing queries for Google Apps nickname entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_nickname null If not null, indicates the name of the nickname entry which should be returned by this query. string __construct __construct Create a new instance. string string string string $domain null $nickname null $username null $startNickname null setNickname setNickname Set the nickname to query for. <p>When set, only users with a nickname matching this value will be returned in search results. Set to null to disable filtering by username.</p> string $value getNickname getNickname Get the nickname to query for. <p>If no nickname is set, null will be returned.</p> string setUsername setUsername Set the username to query for. <p>When set, only users with a username matching this value will be returned in search results. Set to null to disable filtering by username.</p> string $value getUsername getUsername Get the username to query for. <p>If no username is set, null will be returned.</p> string setStartNickname setStartNickname Set the first nickname which should be displayed when retrieving a list of nicknames. string $value getStartNickname getStartNickname Get the first nickname which should be displayed when retrieving a list of nicknames. string getQueryUrl getQueryUrl Returns the URL generated for this query, based on it's current parameters. string Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Extension/Who.php \Zend_Gdata_Entry Zend_Gdata_Gapps_EmailListRecipientEntry \Zend_Gdata_Gapps_EmailListRecipientEntry Data model class for a Google Apps Email List Recipient Entry. <p>Each instance of this class represents a recipient of an email list hosted on a Google Apps domain. Each email list may contain multiple recipients. Email lists themselves are described by Zend_Gdata_EmailListEntry. Multiple recipient entries are contained within instances of Zend_Gdata_Gapps_EmailListRecipientFeed.</p> <p>To transfer email list recipients to and from the Google Apps servers, including creating new recipients, refer to the Google Apps service class, Zend_Gdata_Gapps.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Gapps_EmailListRecipientEntry' $_who null <gd:who> element used to store the email address of the current recipient. <p>Only the email property of this element should be populated.</p> \Zend_Gdata_Extension_Who __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getWho getWho Get the value of the who property for this object. \Zend_Gdata_Extension_Who setWho setWho Set the value of the who property for this object. <p>This property is used to store the email address of the current recipient.</p> \Zend_Gdata_Extension_Who \Zend_Gdata_Gapps_EventEntry $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Gapps/Extension/Property.php \Zend_Gdata_Entry Zend_Gdata_Gapps_OwnerEntry \Zend_Gdata_Gapps_OwnerEntry Data model class for a Google Apps Owner Entry. <p>Each owner entry describes a single owner within a Google Apps hosted domain.</p> <p>To transfer owner entries to and from the Google Apps servers, including creating new entries, refer to the Google Apps service class, Zend_Gdata_Gapps.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Gapps_OwnerEntry' $_property array() <apps:property> element containing information about other items relevant to this entry. \Zend_Gdata_Gapps_Extension_Property __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as owners of this entry based upon DOM data. \DOMNode $child getProperty getProperty Returns all property tags for this entry string mixed $rel null setProperty setProperty Set the value of the property property for this object. array \Zend_Gdata_Gapps_OwnerEntry $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Gapps_Query Zend_Gdata_Gapps_EmailListRecipientQuery \Zend_Gdata_Gapps_EmailListRecipientQuery Assists in constructing queries for Google Apps email list recipient entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_emailListName null If not null, specifies the name of the email list which should be requested by this query. string __construct __construct Create a new instance. string string string $domain null $emailListName null $startRecipient null setEmailListName setEmailListName Set the email list name to query for. <p>When set, only lists with a name matching this value will be returned in search results. Set to null to disable filtering by list name.</p> string $value getEmailListName getEmailListName Get the email list name to query for. <p>If no name is set, null will be returned.</p> string setStartRecipient setStartRecipient Set the first recipient which should be displayed when retrieving a list of email list recipients. string $value getStartRecipient getStartRecipient Get the first recipient which should be displayed when retrieving a list of email list recipients. string getQueryUrl getQueryUrl Returns the URL generated for this query, based on it's current parameters. string \Zend_Gdata_App_InvalidArgumentException Parameter $value could not be found in getEmailListName() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Gapps/EmailListRecipientEntry.php \Zend_Gdata_Feed Zend_Gdata_Gapps_EmailListRecipientFeed \Zend_Gdata_Gapps_EmailListRecipientFeed Data model for a collection of Google Apps email list recipient entries, usually provided by the Google Apps servers. <p>For information on requesting this feed from a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_entryClassName 'Zend_Gdata_Gapps_EmailListRecipientEntry' $_feedClassName 'Zend_Gdata_Gapps_EmailListRecipientFeed' No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Gapps/Extension/Property.php \Zend_Gdata_Entry Zend_Gdata_Gapps_GroupEntry \Zend_Gdata_Gapps_GroupEntry Data model class for a Google Apps Group Entry. <p>Each group entry describes a single group within a Google Apps hosted domain.</p> <p>To transfer group entries to and from the Google Apps servers, including creating new entries, refer to the Google Apps service class, Zend_Gdata_Gapps.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Gapps_GroupEntry' $_property array() <apps:property> element containing information about other items relevant to this entry. \Zend_Gdata_Gapps_Extension_Property __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getProperty getProperty Returns all property tags for this entry string mixed $rel null setProperty setProperty Set the value of the property property for this object. array \Zend_Gdata_Gapps_GroupEntry $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php Zend_Exception Zend/Gdata/Gapps/Error.php Zend_Gdata_Gapps_Error Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php Zend/Gdata/App/Exception.php \Zend_Exception Zend_Gdata_Gapps_ServiceException \Zend_Gdata_Gapps_ServiceException Gdata Gapps Exception class. <p>This is thrown when an AppsForYourDomainErrors message is received from the Google Apps servers.</p> <p>Several different errors may be represented by this exception. For a list of error codes available, see getErrorCode.</p> $_rootElement "AppsForYourDomainErrors" $_errors array() Array of Zend_Gdata_Error objects indexed by error code. array __construct __construct Create a new ServiceException. array $errors null addError addError Add a single Error object to the list of errors received by the server. \Zend_Gdata_Gapps_Error \Zend_Gdata_App_Exception $error setErrors setErrors Set the list of errors as sent by the server inside of an AppsForYourDomainErrors tag. array \Zend_Gdata_App_Exception $array getErrors getErrors Get the list of errors as sent by the server inside of an AppsForYourDomainErrors tag. array getError getError Return the Error object associated with a specific error code. \Zend_Gdata_Gapps_Error $errorCode hasError hasError Check whether or not a particular error code was returned by the server. integer boolean $errorCode importFromString importFromString Import an AppsForYourDomain error from XML. string \Zend_Gdata_Gapps_ServiceException \Zend_Gdata_App_Exception $string __toString __toString Get a human readable version of this exception. string No DocBlock was found for property $_rootElement Argument $errors is missing from the Docblock of __construct() Argument $errorCode is missing from the Docblock of getError() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Gapps/OwnerEntry.php \Zend_Gdata_Feed Zend_Gdata_Gapps_OwnerFeed \Zend_Gdata_Gapps_OwnerFeed Data model for a collection of Google Apps owner entries, usually provided by the Google Apps servers. <p>For information on requesting this feed from a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_entryClassName 'Zend_Gdata_Gapps_OwnerEntry' $_feedClassName 'Zend_Gdata_Gapps_OwnerFeed' No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Gapps/GroupEntry.php \Zend_Gdata_Feed Zend_Gdata_Gapps_GroupFeed \Zend_Gdata_Gapps_GroupFeed Data model for a collection of Google Apps group entries, usually provided by the Google Apps servers. <p>For information on requesting this feed from a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_entryClassName 'Zend_Gdata_Gapps_GroupEntry' $_feedClassName 'Zend_Gdata_Gapps_GroupFeed' No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Gapps/UserEntry.php \Zend_Gdata_Feed Zend_Gdata_Gapps_UserFeed \Zend_Gdata_Gapps_UserFeed Data model for a collection of Google Apps user entries, usually provided by the Google Apps servers. <p>For information on requesting this feed from a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_entryClassName 'Zend_Gdata_Gapps_UserEntry' $_feedClassName 'Zend_Gdata_Gapps_UserFeed' No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Gapps/MemberEntry.php \Zend_Gdata_Feed Zend_Gdata_Gapps_MemberFeed \Zend_Gdata_Gapps_MemberFeed Data model for a collection of Google Apps member entries, usually provided by the Google Apps servers. <p>For information on requesting this feed from a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_entryClassName 'Zend_Gdata_Gapps_MemberEntry' $_feedClassName 'Zend_Gdata_Gapps_MemberFeed' No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Gapps/Extension/Property.php \Zend_Gdata_Entry Zend_Gdata_Gapps_MemberEntry \Zend_Gdata_Gapps_MemberEntry Data model class for a Google Apps Member Entry. <p>Each member entry describes a single member within a Google Apps hosted domain.</p> <p>To transfer member entries to and from the Google Apps servers, including creating new entries, refer to the Google Apps service class, Zend_Gdata_Gapps.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Gapps_MemberEntry' $_property array() <apps:property> element containing information about other items relevant to this entry. \Zend_Gdata_Gapps_Extension_Property __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getProperty getProperty Returns all property tags for this entry string mixed $rel null setProperty setProperty Set the value of the property property for this object. array \Zend_Gdata_Gapps_MemberEntry $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php \Zend_Gdata_Gapps_Query Zend_Gdata_Gapps_GroupQuery \Zend_Gdata_Gapps_GroupQuery Assists in constructing queries for Google Apps group entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the Google Apps service class, Zend_Gdata_Gapps.</p> $_groupId null If not null, specifies the group id of the group who should be retrieved by this query. string __construct __construct Create a new instance. string string string $domain null $groupId null $startGroupId null setGroupId setGroupId Set the group id to query for. <p>When set, only groups with a group id matching this value will be returned in search results. Set to null to disable filtering by group id.</p> string $value getGroupId getGroupId Get the group id to query for. <p>If no group id is set, null will be returned.</p> string setMember setMember Set the member to query for. <p>When set, only subscribers with an email address matching this value will be returned in search results. Set to null to disable filtering by username.</p> string $value getMember getMember Get the member email address to query for. <p>If no member is set, null will be returned.</p> string setDirectOnly setDirectOnly Sets the query parameter directOnly bool $value getDirectOnly getDirectOnly bool setStartGroupId setStartGroupId Set the first group id which should be displayed when retrieving a list of groups. string $value getStartGroupId getStartGroupId Get the first group id which should be displayed when retrieving a list of groups. string getQueryUrl getQueryUrl Returns the query URL generated by this query instance. string Name of argument $startGroupId does not match with the DocBlock's name $startGroupName in __construct() Parameter $startGroupName could not be found in __construct() Parameter $value could not be found in getGroupId() No short description for method getDirectOnly() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_FStop \Zend_Gdata_Exif_Extension_FStop Represents the exif:fStop element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'fstop' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_FStop object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Iso \Zend_Gdata_Exif_Extension_Iso Represents the exif:iso element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'iso' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Iso object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Make \Zend_Gdata_Exif_Extension_Make Represents the exif:make element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'make' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Make object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Time \Zend_Gdata_Exif_Extension_Time Represents the exif:time element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'time' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Time object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_ImageUniqueId \Zend_Gdata_Exif_Extension_ImageUniqueId Represents the exif:imageUniqueId element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'imageUniqueID' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_ImageUniqueId object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_FocalLength \Zend_Gdata_Exif_Extension_FocalLength Represents the exif:focalLength element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'focallength' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_FocalLength object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php Zend/Gdata/Exif/Extension/Distance.php Zend/Gdata/Exif/Extension/Exposure.php Zend/Gdata/Exif/Extension/Flash.php Zend/Gdata/Exif/Extension/FocalLength.php Zend/Gdata/Exif/Extension/FStop.php Zend/Gdata/Exif/Extension/ImageUniqueId.php Zend/Gdata/Exif/Extension/Iso.php Zend/Gdata/Exif/Extension/Make.php Zend/Gdata/Exif/Extension/Model.php Zend/Gdata/Exif/Extension/Time.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Tags \Zend_Gdata_Exif_Extension_Tags Represents the exif:tags element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'tags' $_distance null exif:distance value \Zend_Gdata_Exif_Extension_Distance $_exposure null exif:exposure value \Zend_Gdata_Exif_Extension_Exposure $_flash null exif:flash value \Zend_Gdata_Exif_Extension_Flash $_focalLength null exif:focalLength value \Zend_Gdata_Exif_Extension_FocalLength $_fStop null exif:fStop value \Zend_Gdata_Exif_Extension_FStop $_imageUniqueId null exif:imageUniqueID value \Zend_Gdata_Exif_Extension_ImageUniqueId $_iso null exif:iso value \Zend_Gdata_Exif_Extension_Iso $_make null exif:make value \Zend_Gdata_Exif_Extension_Make $_model null exif:model value \Zend_Gdata_Exif_Extension_Model $_time null exif:time value \Zend_Gdata_Exif_Extension_Time __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Tags object. \Zend_Gdata_Exif_Extension_Distance \Zend_Gdata_Exif_Extension_Exposure \Zend_Gdata_Exif_Extension_Flash \Zend_Gdata_Exif_Extension_FocalLength$focalLength \Zend_Gdata_Exif_Extension_FStop \Zend_Gdata_Exif_Extension_ImageUniqueId \Zend_Gdata_Exif_Extension_Iso \Zend_Gdata_Exif_Extension_Make \Zend_Gdata_Exif_Extension_Model \Zend_Gdata_Exif_Extension_Time $distance null $exposure null $flash null $focalLength null $fStop null $imageUniqueId null $iso null $make null $model null $time null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getDistance getDistance Get the value for this element's distance attribute. \Zend_Gdata_Exif_Extension_Distance setDistance setDistance Set the value for this element's distance attribute. \Zend_Gdata_Exif_Extension_Distance \Zend_Gdata_Exif_Extension_Tags $value getExposure getExposure Get the value for this element's exposure attribute. \Zend_Gdata_Exif_Extension_Exposure setExposure setExposure Set the value for this element's exposure attribute. \Zend_Gdata_Exif_Extension_Exposure \Zend_Gdata_Exif_Extension_Tags $value getFlash getFlash Get the value for this element's flash attribute. \Zend_Gdata_Exif_Extension_Flash setFlash setFlash Set the value for this element's flash attribute. \Zend_Gdata_Exif_Extension_Flash \Zend_Gdata_Exif_Extension_Tags $value getFocalLength getFocalLength Get the value for this element's name attribute. \Zend_Gdata_Exif_Extension_FocalLength setFocalLength setFocalLength Set the value for this element's focalLength attribute. \Zend_Gdata_Exif_Extension_FocalLength \Zend_Gdata_Exif_Extension_Tags $value getFStop getFStop Get the value for this element's fStop attribute. \Zend_Gdata_Exif_Extension_FStop setFStop setFStop Set the value for this element's fStop attribute. \Zend_Gdata_Exif_Extension_FStop \Zend_Gdata_Exif_Extension_Tags $value getImageUniqueId getImageUniqueId Get the value for this element's imageUniqueId attribute. \Zend_Gdata_Exif_Extension_ImageUniqueId setImageUniqueId setImageUniqueId Set the value for this element's imageUniqueId attribute. \Zend_Gdata_Exif_Extension_ImageUniqueId \Zend_Gdata_Exif_Extension_Tags $value getIso getIso Get the value for this element's iso attribute. \Zend_Gdata_Exif_Extension_Iso setIso setIso Set the value for this element's iso attribute. \Zend_Gdata_Exif_Extension_Iso \Zend_Gdata_Exif_Extension_Tags $value getMake getMake Get the value for this element's make attribute. \Zend_Gdata_Exif_Extension_Make setMake setMake Set the value for this element's make attribute. \Zend_Gdata_Exif_Extension_Make \Zend_Gdata_Exif_Extension_Tags $value getModel getModel Get the value for this element's model attribute. \Zend_Gdata_Exif_Extension_Model setModel setModel Set the value for this element's model attribute. \Zend_Gdata_Exif_Extension_Model \Zend_Gdata_Exif_Extension_Tags $value getTime getTime Get the value for this element's time attribute. \Zend_Gdata_Exif_Extension_Time setTime setTime Set the value for this element's time attribute. \Zend_Gdata_Exif_Extension_Time \Zend_Gdata_Exif_Extension_Tags $value No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Distance \Zend_Gdata_Exif_Extension_Distance Represents the exif:distance element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'distance' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Distance object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Model \Zend_Gdata_Exif_Extension_Model Represents the exif:model element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'model' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Model object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Exposure \Zend_Gdata_Exif_Extension_Exposure Represents the exif:exposure element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'exposure' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Exposure object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Exif.php \Zend_Gdata_Extension Zend_Gdata_Exif_Extension_Flash \Zend_Gdata_Exif_Extension_Flash Represents the exif:flash element used by the Gdata Exif extensions. $_rootNamespace 'exif' $_rootElement 'flash' __construct __construct Constructs a new Zend_Gdata_Exif_Extension_Flash object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Feed.php Zend/Gdata/Exif.php Zend/Gdata/Exif/Entry.php \Zend_Gdata_Feed Zend_Gdata_Exif_Feed \Zend_Gdata_Exif_Feed Feed for Gdata EXIF data entries. $_entryClassName 'Zend_Gdata_Exif_Entry' The classname for individual feed elements. string __construct __construct Create a new instance. \DOMElement $element null Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Exif.php Zend/Gdata/Exif/Extension/Tags.php \Zend_Gdata_Entry Zend_Gdata_Exif_Entry \Zend_Gdata_Exif_Entry An Atom entry containing EXIF metadata. $_entryClassName 'Zend_Gdata_Exif_Entry' The classname for individual feed elements. string $_tags null The tags that belong to the Exif group. string __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getTags getTags Retrieve the tags for this entry. \Zend_Gdata_Exif_Extension_Tags setTags setTags Set the tags property for this entry. <p>This property contains various Exif data.</p> <p>This corresponds to the <exif:tags> property in the Google Data protocol.</p> \Zend_Gdata_Exif_Extension_Tags \Zend_Gdata_Exif_Entry $value Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Gapps.php Zend/Gdata/Photos/Extension/Nickname.php Zend/Gdata/Photos/Extension/Thumbnail.php Zend/Gdata/Photos/Extension/QuotaCurrent.php Zend/Gdata/Photos/Extension/QuotaLimit.php Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php Zend/Gdata/Photos/Extension/User.php Zend/Gdata/App/Extension/Category.php \Zend_Gdata_Entry Zend_Gdata_Photos_UserEntry \Zend_Gdata_Photos_UserEntry Data model class for a User Entry. <p>To transfer user entries to and from the servers, including creating new entries, refer to the service class, Zend_Gdata_Photos.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Photos_UserEntry' $_gphotoNickname null gphoto:nickname element \Zend_Gdata_Photos_Extension_Nickname $_gphotoUser null gphoto:user element \Zend_Gdata_Photos_Extension_User $_gphotoThumbnail null gphoto:thumbnail element \Zend_Gdata_Photos_Extension_Thumbnail $_gphotoQuotaLimit null gphoto:quotalimit element \Zend_Gdata_Photos_Extension_QuotaLimit $_gphotoQuotaCurrent null gphoto:quotacurrent element \Zend_Gdata_Photos_Extension_QuotaCurrent $_gphotoMaxPhotosPerAlbum null gphoto:maxPhotosPerAlbum element \Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getGphotoNickname getGphotoNickname Get the value for this element's gphoto:nickname attribute. string setGphotoNickname setGphotoNickname Set the value for this element's gphoto:nickname attribute. string \Zend_Gdata_Photos_Extension_Nickname $value getGphotoThumbnail getGphotoThumbnail Get the value for this element's gphoto:thumbnail attribute. string setGphotoThumbnail setGphotoThumbnail Set the value for this element's gphoto:thumbnail attribute. string \Zend_Gdata_Photos_Extension_Thumbnail $value getGphotoQuotaCurrent getGphotoQuotaCurrent Get the value for this element's gphoto:quotacurrent attribute. string setGphotoQuotaCurrent setGphotoQuotaCurrent Set the value for this element's gphoto:quotacurrent attribute. string \Zend_Gdata_Photos_Extension_QuotaCurrent $value getGphotoQuotaLimit getGphotoQuotaLimit Get the value for this element's gphoto:quotalimit attribute. string setGphotoQuotaLimit setGphotoQuotaLimit Set the value for this element's gphoto:quotalimit attribute. string \Zend_Gdata_Photos_Extension_QuotaLimit $value getGphotoMaxPhotosPerAlbum getGphotoMaxPhotosPerAlbum Get the value for this element's gphoto:maxPhotosPerAlbum attribute. string setGphotoMaxPhotosPerAlbum setGphotoMaxPhotosPerAlbum Set the value for this element's gphoto:maxPhotosPerAlbum attribute. string \Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum $value getGphotoUser getGphotoUser Get the value for this element's gphoto:user attribute. string setGphotoUser setGphotoUser Set the value for this element's gphoto:user attribute. string \Zend_Gdata_Photos_Extension_User $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Photos/Extension/Weight.php Zend/Gdata/App/Extension/Category.php \Zend_Gdata_Entry Zend_Gdata_Photos_TagEntry \Zend_Gdata_Photos_TagEntry Data model class for a Tag Entry. <p>To transfer user entries to and from the servers, including creating new entries, refer to the service class, Zend_Gdata_Photos.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Photos_TagEntry' $_gphotoWeight null __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getGphotoWeight getGphotoWeight Get the value for this element's gphoto:weight attribute. string setGphotoWeight setGphotoWeight Set the value for this element's gphoto:weight attribute. string \Zend_Gdata_Photos_Extension_Weight $value No DocBlock was found for property $_entryClassName No DocBlock was found for property $_gphotoWeight Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Height \Zend_Gdata_Photos_Extension_Height Represents the gphoto:height element used by the API. <p>The height of a photo in pixels.</p> $_rootNamespace 'gphoto' $_rootElement 'height' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Height object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_QuotaCurrent \Zend_Gdata_Photos_Extension_QuotaCurrent Represents the gphoto:quotaCurrent element used by the API. <p>This class represents the number of bytes of storage used by a user.</p> $_rootNamespace 'gphoto' $_rootElement 'quotaCurrent' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_QuotaCurrent object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_PhotoId \Zend_Gdata_Photos_Extension_PhotoId Represents the gphoto:id element used by the Picasa API. $_rootNamespace 'gphoto' $_rootElement 'id' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_PhotoId object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Checksum \Zend_Gdata_Photos_Extension_Checksum Represents the gphoto:checksum element used by the API. <p>This is an optional field that can be used to store a photo's checksum to ease duplicate checking.</p> $_rootNamespace 'gphoto' $_rootElement 'checksum' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Checksum object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_User \Zend_Gdata_Photos_Extension_User Represents the gphoto:user element used by the API. <p>This class represents the username for a user.</p> $_rootNamespace 'gphoto' $_rootElement 'user' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_User object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_AlbumId \Zend_Gdata_Photos_Extension_AlbumId Represents the gphoto:albumid element used by the API. <p>This class represents the ID of an album and is usually contained within an instance of Zend_Gdata_Photos_AlbumEntry or CommentEntry.</p> $_rootNamespace 'gphoto' $_rootElement 'albumid' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_AlbumId object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_BytesUsed \Zend_Gdata_Photos_Extension_BytesUsed Represents the gphoto:bytesUsed element used by the API. <p>This indicates the number of bytes of storage used by an album.</p> $_rootNamespace 'gphoto' $_rootElement 'bytesUsed' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_BytesUsed object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_CommentingEnabled \Zend_Gdata_Photos_Extension_CommentingEnabled Represents the gphoto:commentingEnabled element used by the API. <p>This class represents whether commenting is enabled for a given entry.</p> $_rootNamespace 'gphoto' $_rootElement 'commentingEnabled' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_CommentingEnabled object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Client \Zend_Gdata_Photos_Extension_Client Represents the gphoto:client element used by the API. <p>This is an optional field that can be used to indicate the client which created a photo.</p> $_rootNamespace 'gphoto' $_rootElement 'client' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Client object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_NumPhotos \Zend_Gdata_Photos_Extension_NumPhotos Represents the gphoto:numphotos element used by the API. <p>This indicates the number of photos in an album.</p> $_rootNamespace 'gphoto' $_rootElement 'numphotos' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_NumPhotos object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Name \Zend_Gdata_Photos_Extension_Name Represents the gphoto:name element used by the API. <p>This indicates the URL-usable name for an album.</p> $_rootNamespace 'gphoto' $_rootElement 'name' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Name object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Rotation \Zend_Gdata_Photos_Extension_Rotation Represents the gphoto:rotation element used by the API. <p>The rotation of a photo in degrees. Will only be shown if the rotation has not already been applied to the image.</p> $_rootNamespace 'gphoto' $_rootElement 'rotation' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Rotation object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_QuotaLimit \Zend_Gdata_Photos_Extension_QuotaLimit Represents the gphoto:quotaLimit element used by the API. <p>This class represents the number of bytes of storage available for a user.</p> $_rootNamespace 'gphoto' $_rootElement 'quotaLimit' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_QuotaLimit object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Thumbnail \Zend_Gdata_Photos_Extension_Thumbnail Represents the gphoto:thumbnail element used by the API. <p>This class represents the URI for a thumbnail image.</p> $_rootNamespace 'gphoto' $_rootElement 'thumbnail' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Thumbnail object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Location \Zend_Gdata_Photos_Extension_Location Represents the gphoto:location element used by the API. <p>This indicates the number of bytes of storage used by an album.</p> $_rootNamespace 'gphoto' $_rootElement 'location' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Location object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_NumPhotosRemaining \Zend_Gdata_Photos_Extension_NumPhotosRemaining Represents the gphoto:numphotosremaining element used by the API. <p>This indicates the number of photos remaining in an album.</p> $_rootNamespace 'gphoto' $_rootElement 'numphotosremaining' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_NumPhotosRemaining object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum \Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum Represents the gphoto:maxPhotosPerAlbum element used by the API. <p>This class represents the maximum number of photos allowed in an album.</p> $_rootNamespace 'gphoto' $_rootElement 'maxPhotosPerAlbum' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_CommentCount \Zend_Gdata_Photos_Extension_CommentCount Represents the gphoto:commentCount element used by the API. <p>This class represents the number of comments attached to an entry and is usually contained within an instance of Zend_Gdata_Photos_PhotoEntry or AlbumEntry.</p> $_rootNamespace 'gphoto' $_rootElement 'commentCount' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_CommentCount object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Weight \Zend_Gdata_Photos_Extension_Weight Represents the gphoto:weight element used by the API. <p>This indicates the weight of a tag, based on the number of times it appears in photos under the current element.</p> $_rootNamespace 'gphoto' $_rootElement 'weight' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Weight object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Width \Zend_Gdata_Photos_Extension_Width Represents the gphoto:width element used by the API. <p>This indicates the width of a photo in pixels.</p> $_rootNamespace 'gphoto' $_rootElement 'width' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Width object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Position \Zend_Gdata_Photos_Extension_Position Represents the gphoto:position element used by the API. <p>The ordinal position of a photo within an album.</p> $_rootNamespace 'gphoto' $_rootElement 'position' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Position object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Timestamp \Zend_Gdata_Photos_Extension_Timestamp Represents the gphoto:timestamp element used by the API. <p>The timestamp of a photo in milliseconds since January 1, 1970. This date is either set externally or based on EXIF data.</p> $_rootNamespace 'gphoto' $_rootElement 'timestamp' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Timestamp object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Access \Zend_Gdata_Photos_Extension_Access Represents the gphoto:access element used by the API. <p>This determines the visibility for an album, and can be either the strings 'private' or 'public'.</p> $_rootNamespace 'gphoto' $_rootElement 'access' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Access object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Id \Zend_Gdata_Photos_Extension_Id Represents the gphoto:id element used by the API. <p>This class represents the unique ID assigned to an element by the servers.</p> $_rootNamespace 'gphoto' $_rootElement 'id' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Id object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Nickname \Zend_Gdata_Photos_Extension_Nickname Represents the gphoto:nickname element used by the API. <p>This class represents the nickname for a user.</p> $_rootNamespace 'gphoto' $_rootElement 'nickname' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Nickname object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Version \Zend_Gdata_Photos_Extension_Version Represents the gphoto:version element used by the API. <p>This number is used for optimistic concurrency, and does not increase linearly.</p> $_rootNamespace 'gphoto' $_rootElement 'version' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Version object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Extension.php Zend/Gdata/Photos.php \Zend_Gdata_Extension Zend_Gdata_Photos_Extension_Size \Zend_Gdata_Photos_Extension_Size Represents the gphoto:size element used by the API. <p>The size of a photo in bytes.</p> $_rootNamespace 'gphoto' $_rootElement 'size' __construct __construct Constructs a new Zend_Gdata_Photos_Extension_Size object. string $text null No DocBlock was found for property $_rootNamespace No DocBlock was found for property $_rootElement Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Photos/Extension/Access.php Zend/Gdata/Photos/Extension/BytesUsed.php Zend/Gdata/Photos/Extension/Location.php Zend/Gdata/Photos/Extension/Name.php Zend/Gdata/Photos/Extension/NumPhotos.php Zend/Gdata/Photos/Extension/NumPhotosRemaining.php Zend/Gdata/Photos/Extension/CommentCount.php Zend/Gdata/Photos/Extension/CommentingEnabled.php Zend/Gdata/Photos/Extension/Id.php Zend/Gdata/Geo/Extension/GeoRssWhere.php Zend/Gdata/Media/Extension/MediaGroup.php Zend/Gdata/App/Extension/Category.php \Zend_Gdata_Entry Zend_Gdata_Photos_AlbumEntry \Zend_Gdata_Photos_AlbumEntry Data model class for a Photo Album Entry. <p>To transfer user entries to and from the servers, including creating new entries, refer to the service class, Zend_Gdata_Photos.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Photos_AlbumEntry' $_gphotoId null gphoto:id element \Zend_Gdata_Photos_Extension_Id $_gphotoAccess null gphoto:access element \Zend_Gdata_Photos_Extension_Access $_gphotoLocation null gphoto:location element \Zend_Gdata_Photos_Extension_Location $_gphotoUser null gphoto:user element \Zend_Gdata_Photos_Extension_User $_gphotoNickname null gphoto:nickname element \Zend_Gdata_Photos_Extension_Nickname $_gphotoTimestamp null gphoto:timestamp element \Zend_Gdata_Photos_Extension_Timestamp $_gphotoName null gphoto:name element \Zend_Gdata_Photos_Extension_Name $_gphotoNumPhotos null gphoto:numphotos element \Zend_Gdata_Photos_Extension_NumPhotos $_gphotoCommentCount null gphoto:commentCount element \Zend_Gdata_Photos_Extension_CommentCount $_gphotoCommentingEnabled null gphoto:commentingEnabled element \Zend_Gdata_Photos_Extension_CommentingEnabled $_mediaGroup null media:group element \Zend_Gdata_Media_MediaGroup $_geoRssWhere null georss:where element \Zend_Gdata_Geo_Extension_GeoRssWhere __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getGphotoAccess getGphotoAccess Get the value for this element's gphoto:access attribute. string setGphotoAccess setGphotoAccess Set the value for this element's gphoto:access attribute. string \Zend_Gdata_Photos_Extension_Access $value getGphotoLocation getGphotoLocation Get the value for this element's gphoto:location attribute. string setGphotoLocation setGphotoLocation Set the value for this element's gphoto:location attribute. string \Zend_Gdata_Photos_Extension_Location $value getGphotoName getGphotoName Get the value for this element's gphoto:name attribute. string setGphotoName setGphotoName Set the value for this element's gphoto:name attribute. string \Zend_Gdata_Photos_Extension_Name $value getGphotoNumPhotos getGphotoNumPhotos Get the value for this element's gphoto:numphotos attribute. string setGphotoNumPhotos setGphotoNumPhotos Set the value for this element's gphoto:numphotos attribute. string \Zend_Gdata_Photos_Extension_NumPhotos $value getGphotoCommentCount getGphotoCommentCount Get the value for this element's gphoto:commentCount attribute. string setGphotoCommentCount setGphotoCommentCount Set the value for this element's gphoto:commentCount attribute. string \Zend_Gdata_Photos_Extension_CommentCount $value getGphotoCommentingEnabled getGphotoCommentingEnabled Get the value for this element's gphoto:commentingEnabled attribute. string setGphotoCommentingEnabled setGphotoCommentingEnabled Set the value for this element's gphoto:commentingEnabled attribute. string \Zend_Gdata_Photos_Extension_CommentingEnabled $value getGphotoId getGphotoId Get the value for this element's gphoto:id attribute. string setGphotoId setGphotoId Set the value for this element's gphoto:id attribute. string \Zend_Gdata_Photos_Extension_Id $value getGeoRssWhere getGeoRssWhere Get the value for this element's georss:where attribute. string setGeoRssWhere setGeoRssWhere Set the value for this element's georss:where attribute. string \Zend_Gdata_Geo_Extension_GeoRssWhere $value getMediaGroup getMediaGroup Get the value for this element's media:group attribute. string setMediaGroup setMediaGroup Set the value for this element's media:group attribute. string \Zend_Gdata_Media_Extension_MediaGroup $value getGphotoUser getGphotoUser Get the value for this element's gphoto:user attribute. string setGphotoUser setGphotoUser Set the value for this element's gphoto:user attribute. string \Zend_Gdata_Photos_Extension_User $value getGphotoNickname getGphotoNickname Get the value for this element's gphoto:nickname attribute. string setGphotoNickname setGphotoNickname Set the value for this element's gphoto:nickname attribute. string \Zend_Gdata_Photos_Extension_Nickname $value getGphotoTimestamp getGphotoTimestamp Get the value for this element's gphoto:timestamp attribute. string setGphotoTimestamp setGphotoTimestamp Set the value for this element's gphoto:timestamp attribute. string \Zend_Gdata_Photos_Extension_Timestamp $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Photos/UserQuery.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Photos_UserQuery Zend_Gdata_Photos_AlbumQuery \Zend_Gdata_Photos_AlbumQuery Assists in constructing album queries for various entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the service class, Zend_Gdata_Photos.</p> $_albumName null The name of the album to query for. <p>Mutually exclusive with AlbumId.</p> string $_albumId null The ID of the album to query for. <p>Mutually exclusive with AlbumName.</p> string setAlbumName setAlbumName Set the album name to query for. <p>When set, this album's photographs be returned. If not set or null, the default user's feed will be returned instead.</p> <p>NOTE: AlbumName and AlbumId are mutually exclusive. Setting one will automatically set the other to null.</p> string \Zend_Gdata_Photos_AlbumQuery $value getAlbumName getAlbumName Get the album name which is to be returned. string setAlbumId setAlbumId Set the album ID to query for. <p>When set, this album's photographs be returned. If not set or null, the default user's feed will be returned instead.</p> <p>NOTE: Album and AlbumId are mutually exclusive. Setting one will automatically set the other to null.</p> string \Zend_Gdata_Photos_AlbumQuery $value getAlbumId getAlbumId Get the album ID which is to be returned. string getQueryUrl getQueryUrl Returns the URL generated for this query, based on it's current parameters. string \Zend_Gdata_App_InvalidArgumentException $incomingUri '' Argument $incomingUri is missing from the Docblock of getQueryUrl() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Entry.php Zend/Gdata/Photos/Extension/Id.php Zend/Gdata/Photos/Extension/PhotoId.php Zend/Gdata/Photos/Extension/Weight.php Zend/Gdata/App/Extension/Category.php \Zend_Gdata_Entry Zend_Gdata_Photos_CommentEntry \Zend_Gdata_Photos_CommentEntry Data model class for a Comment Entry. <p>To transfer user entries to and from the servers, including creating new entries, refer to the service class, Zend_Gdata_Photos.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Photos_CommentEntry' $_gphotoId null gphoto:id element \Zend_Gdata_Photos_Extension_Id $_gphotoPhotoId null gphoto:photoid element, differs from gphoto:id as this is an actual identification number unique exclusively to photo entries, whereas gphoto:id can refer to all gphoto objects \Zend_Gdata_Photos_Extension_PhotoId __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getGphotoPhotoId getGphotoPhotoId Get the value for this element's gphoto:photoid attribute. string setGphotoPhotoId setGphotoPhotoId Set the value for this element's gphoto:photoid attribute. string \Zend_Gdata_Photos_Extension_PhotoId $value getGphotoId getGphotoId Get the value for this element's gphoto:id attribute. string setGphotoId setGphotoId Set the value for this element's gphoto:id attribute. string \Zend_Gdata_Photos_Extension_Id $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Gapps/Query.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Query Zend_Gdata_Photos_UserQuery \Zend_Gdata_Photos_UserQuery Assists in constructing queries for user entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the service class, Zend_Gdata_Photos.</p> $_projection 'api' Indicates the format of data returned in Atom feeds. <p>Can be either 'api' or 'base'. Default value is 'api'.</p> string $_type 'feed' Indicates whether to request a feed or entry in queries. <p>Default value is 'feed';</p> string $_user \Zend_Gdata_Photos::DEFAULT_USER A string which, if not null, indicates which user should be retrieved by this query. <p>If null, the default user will be used instead.</p> string __construct __construct Create a new Query object with default values. setProjection setProjection Set's the format of data returned in Atom feeds. <p>Can be either 'api' or 'base'. Normally, 'api' will be desired. Default is 'api'.</p> string \Zend_Gdata_Photos_UserQuery $value getProjection getProjection Gets the format of data in returned in Atom feeds. string setType setType Set's the type of data returned in queries. <p>Can be either 'feed' or 'entry'. Normally, 'feed' will be desired. Default is 'feed'.</p> string \Zend_Gdata_Photos_UserQuery $value getType getType Gets the type of data in returned in queries. string setUser setUser Set the user to query for. <p>When set, this user's feed will be returned. If not set or null, the default user's feed will be returned instead.</p> string $value getUser getUser Get the user which is to be returned. string setAccess setAccess Set the visibility filter for entries returned. <p>Only entries which match this value will be returned. If null or unset, the default value will be used instead.</p> <p>Valid values are 'all' (default), 'public', and 'private'.</p> string $value getAccess getAccess Get the visibility filter for entries returned. string setTag setTag Set the tag for entries that are returned. <p>Only entries which match this value will be returned. If null or unset, this filter will not be applied.</p> <p>See http://code.google.com/apis/picasaweb/reference.html#Parameters for a list of valid values.</p> string $value getTag getTag Get the tag filter for entries returned. string setKind setKind Set the kind of entries that are returned. <p>Only entries which match this value will be returned. If null or unset, this filter will not be applied.</p> <p>See http://code.google.com/apis/picasaweb/reference.html#Parameters for a list of valid values.</p> string $value getKind getKind Get the kind of entries to be returned. string setImgMax setImgMax Set the maximum image size for entries returned. <p>Only entries which match this value will be returned. If null or unset, this filter will not be applied.</p> <p>See http://code.google.com/apis/picasaweb/reference.html#Parameters for a list of valid values.</p> string $value getImgMax getImgMax Get the maximum image size filter for entries returned. string setThumbsize setThumbsize Set the thumbnail size filter for entries returned. <p>Only entries which match this value will be returned. If null or unset, this filter will not be applied.</p> <p>See http://code.google.com/apis/picasaweb/reference.html#Parameters for a list of valid values.</p> string $value getThumbsize getThumbsize Get the thumbnail size filter for entries returned. string getQueryUrl getQueryUrl Returns the URL generated for this query, based on it's current parameters. string \Zend_Gdata_App_InvalidArgumentException $incomingUri null Argument $incomingUri is missing from the Docblock of getQueryUrl() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Media/Entry.php Zend/Gdata/Photos/Extension/PhotoId.php Zend/Gdata/Photos/Extension/Version.php Zend/Gdata/Photos/Extension/AlbumId.php Zend/Gdata/Photos/Extension/Id.php Zend/Gdata/Photos/Extension/Width.php Zend/Gdata/Photos/Extension/Height.php Zend/Gdata/Photos/Extension/Size.php Zend/Gdata/Photos/Extension/Client.php Zend/Gdata/Photos/Extension/Checksum.php Zend/Gdata/Photos/Extension/Timestamp.php Zend/Gdata/Photos/Extension/CommentingEnabled.php Zend/Gdata/Photos/Extension/CommentCount.php Zend/Gdata/Exif/Extension/Tags.php Zend/Gdata/Geo/Extension/GeoRssWhere.php Zend/Gdata/App/Extension/Category.php \Zend_Gdata_Media_Entry Zend_Gdata_Photos_PhotoEntry \Zend_Gdata_Photos_PhotoEntry Data model class for a Comment Entry. <p>To transfer user entries to and from the servers, including creating new entries, refer to the service class, Zend_Gdata_Photos.</p> <p>This class represents <atom:entry> in the Google Data protocol.</p> $_entryClassName 'Zend_Gdata_Photos_PhotoEntry' $_gphotoId null gphoto:id element \Zend_Gdata_Photos_Extension_Id $_gphotoAlbumId null gphoto:albumid element \Zend_Gdata_Photos_Extension_AlbumId $_gphotoVersion null gphoto:version element \Zend_Gdata_Photos_Extension_Version $_gphotoWidth null gphoto:width element \Zend_Gdata_Photos_Extension_Width $_gphotoHeight null gphoto:height element \Zend_Gdata_Photos_Extension_Height $_gphotoSize null gphoto:size element \Zend_Gdata_Photos_Extension_Size $_gphotoClient null gphoto:client element \Zend_Gdata_Photos_Extension_Client $_gphotoChecksum null gphoto:checksum element \Zend_Gdata_Photos_Extension_Checksum $_gphotoTimestamp null gphoto:timestamp element \Zend_Gdata_Photos_Extension_Timestamp $_gphotoCommentCount null gphoto:commentCount element \Zend_Gdata_Photos_Extension_CommentCount $_gphotoCommentingEnabled null gphoto:commentingEnabled element \Zend_Gdata_Photos_Extension_CommentingEnabled $_exifTags null exif:tags element \Zend_Gdata_Exif_Extension_Tags $_geoRssWhere null georss:where element \Zend_Gdata_Geo_Extension_GeoRssWhere __construct __construct Create a new instance. \DOMElement $element null getDOM getDOM Retrieves a DOMElement which corresponds to this element and all child properties. <p>This is used to build an entry back into a DOM and eventually XML text for application storage/persistence.</p> \DOMDocument \DOMElement $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them as members of this entry based upon DOM data. \DOMNode $child getGphotoAlbumId getGphotoAlbumId Get the value for this element's gphoto:albumid attribute. string setGphotoAlbumId setGphotoAlbumId Set the value for this element's gphoto:albumid attribute. string \Zend_Gdata_Photos_Extension_AlbumId $value getGphotoId getGphotoId Get the value for this element's gphoto:id attribute. string setGphotoId setGphotoId Set the value for this element's gphoto:id attribute. string \Zend_Gdata_Photos_Extension_Id $value getGphotoVersion getGphotoVersion Get the value for this element's gphoto:version attribute. string setGphotoVersion setGphotoVersion Set the value for this element's gphoto:version attribute. string \Zend_Gdata_Photos_Extension_Version $value getGphotoWidth getGphotoWidth Get the value for this element's gphoto:width attribute. string setGphotoWidth setGphotoWidth Set the value for this element's gphoto:width attribute. string \Zend_Gdata_Photos_Extension_Width $value getGphotoHeight getGphotoHeight Get the value for this element's gphoto:height attribute. string setGphotoHeight setGphotoHeight Set the value for this element's gphoto:height attribute. string \Zend_Gdata_Photos_Extension_Height $value getGphotoSize getGphotoSize Get the value for this element's gphoto:size attribute. string setGphotoSize setGphotoSize Set the value for this element's gphoto:size attribute. string \Zend_Gdata_Photos_Extension_Size $value getGphotoClient getGphotoClient Get the value for this element's gphoto:client attribute. string setGphotoClient setGphotoClient Set the value for this element's gphoto:client attribute. string \Zend_Gdata_Photos_Extension_Client $value getGphotoChecksum getGphotoChecksum Get the value for this element's gphoto:checksum attribute. string setGphotoChecksum setGphotoChecksum Set the value for this element's gphoto:checksum attribute. string \Zend_Gdata_Photos_Extension_Checksum $value getGphotoTimestamp getGphotoTimestamp Get the value for this element's gphoto:timestamp attribute. string setGphotoTimestamp setGphotoTimestamp Set the value for this element's gphoto:timestamp attribute. string \Zend_Gdata_Photos_Extension_Timestamp $value getGphotoCommentCount getGphotoCommentCount Get the value for this element's gphoto:commentCount attribute. string setGphotoCommentCount setGphotoCommentCount Set the value for this element's gphoto:commentCount attribute. string \Zend_Gdata_Photos_Extension_CommentCount $value getGphotoCommentingEnabled getGphotoCommentingEnabled Get the value for this element's gphoto:commentingEnabled attribute. string setGphotoCommentingEnabled setGphotoCommentingEnabled Set the value for this element's gphoto:commentingEnabled attribute. string \Zend_Gdata_Photos_Extension_CommentingEnabled $value getExifTags getExifTags Get the value for this element's exif:tags attribute. string setExifTags setExifTags Set the value for this element's exif:tags attribute. string \Zend_Gdata_Exif_Extension_Tags $value getGeoRssWhere getGeoRssWhere Get the value for this element's georss:where attribute. string setGeoRssWhere setGeoRssWhere Set the value for this element's georss:where attribute. string \Zend_Gdata_Geo_Extension_GeoRssWhere $value getMediaGroup getMediaGroup Get the value for this element's media:group attribute. string setMediaGroup setMediaGroup Set the value for this element's media:group attribute. string \Zend_Gdata_Media_Extension_MediaGroup $value No DocBlock was found for property $_entryClassName Argument $majorVersion is missing from the Docblock of getDOM() Argument $minorVersion is missing from the Docblock of getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Photos.php Zend/Gdata/Feed.php Zend/Gdata/Photos/AlbumEntry.php Zend/Gdata/App/Exception.php \Zend_Gdata_Feed Zend_Gdata_Photos_AlbumFeed \Zend_Gdata_Photos_AlbumFeed Data model for a collection of album entries, usually provided by the servers. <p>For information on requesting this feed from a server, see the service class, Zend_Gdata_Photos.</p> $_entryClassName 'Zend_Gdata_Photos_AlbumEntry' $_feedClassName 'Zend_Gdata_Photos_AlbumFeed' $_gphotoId null gphoto:id element \Zend_Gdata_Photos_Extension_Id $_gphotoUser null gphoto:user element \Zend_Gdata_Photos_Extension_User $_gphotoAccess null gphoto:access element \Zend_Gdata_Photos_Extension_Access $_gphotoLocation null gphoto:location element \Zend_Gdata_Photos_Extension_Location $_gphotoNickname null gphoto:nickname element \Zend_Gdata_Photos_Extension_Nickname $_gphotoTimestamp null gphoto:timestamp element \Zend_Gdata_Photos_Extension_Timestamp $_gphotoName null gphoto:name element \Zend_Gdata_Photos_Extension_Name $_gphotoNumPhotos null gphoto:numphotos element \Zend_Gdata_Photos_Extension_NumPhotos $_gphotoCommentCount null gphoto:commentCount element \Zend_Gdata_Photos_Extension_CommentCount $_gphotoCommentingEnabled null gphoto:commentingEnabled element \Zend_Gdata_Photos_Extension_CommentingEnabled $_entryKindClassMapping array('http://schemas.google.com/photos/2007#photo' => 'Zend_Gdata_Photos_PhotoEntry', 'http://schemas.google.com/photos/2007#comment' => 'Zend_Gdata_Photos_CommentEntry', 'http://schemas.google.com/photos/2007#tag' => 'Zend_Gdata_Photos_TagEntry') __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getGphotoUser getGphotoUser Get the value for this element's gphoto:user attribute. string setGphotoUser setGphotoUser Set the value for this element's gphoto:user attribute. string \Zend_Gdata_Photos_Extension_User $value getGphotoAccess getGphotoAccess Get the value for this element's gphoto:access attribute. string setGphotoAccess setGphotoAccess Set the value for this element's gphoto:access attribute. string \Zend_Gdata_Photos_Extension_Access $value getGphotoLocation getGphotoLocation Get the value for this element's gphoto:location attribute. string setGphotoLocation setGphotoLocation Set the value for this element's gphoto:location attribute. string \Zend_Gdata_Photos_Extension_Location $value getGphotoName getGphotoName Get the value for this element's gphoto:name attribute. string setGphotoName setGphotoName Set the value for this element's gphoto:name attribute. string \Zend_Gdata_Photos_Extension_Name $value getGphotoNumPhotos getGphotoNumPhotos Get the value for this element's gphoto:numphotos attribute. string setGphotoNumPhotos setGphotoNumPhotos Set the value for this element's gphoto:numphotos attribute. string \Zend_Gdata_Photos_Extension_NumPhotos $value getGphotoCommentCount getGphotoCommentCount Get the value for this element's gphoto:commentCount attribute. string setGphotoCommentCount setGphotoCommentCount Set the value for this element's gphoto:commentCount attribute. string \Zend_Gdata_Photos_Extension_CommentCount $value getGphotoCommentingEnabled getGphotoCommentingEnabled Get the value for this element's gphoto:commentingEnabled attribute. string setGphotoCommentingEnabled setGphotoCommentingEnabled Set the value for this element's gphoto:commentingEnabled attribute. string \Zend_Gdata_Photos_Extension_CommentingEnabled $value getGphotoId getGphotoId Get the value for this element's gphoto:id attribute. string setGphotoId setGphotoId Set the value for this element's gphoto:id attribute. string \Zend_Gdata_Photos_Extension_Id $value getGeoRssWhere getGeoRssWhere Get the value for this element's georss:where attribute. string setGeoRssWhere setGeoRssWhere Set the value for this element's georss:where attribute. string \Zend_Gdata_Geo_Extension_GeoRssWhere $value getGphotoNickname getGphotoNickname Get the value for this element's gphoto:nickname attribute. string setGphotoNickname setGphotoNickname Set the value for this element's gphoto:nickname attribute. string \Zend_Gdata_Photos_Extension_Nickname $value getGphotoTimestamp getGphotoTimestamp Get the value for this element's gphoto:timestamp attribute. string setGphotoTimestamp setGphotoTimestamp Set the value for this element's gphoto:timestamp attribute. string \Zend_Gdata_Photos_Extension_Timestamp $value No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName No DocBlock was found for property $_entryKindClassMapping No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Photos.php Zend/Gdata/Feed.php Zend/Gdata/Photos/PhotoEntry.php Zend/Gdata/App/Exception.php \Zend_Gdata_Feed Zend_Gdata_Photos_PhotoFeed \Zend_Gdata_Photos_PhotoFeed Data model for a collection of photo entries, usually provided by the Picasa servers. <p>For information on requesting this feed from a server, see the service class, Zend_Gdata_Photos.</p> $_gphotoId null gphoto:id element \Zend_Gdata_Photos_Extension_Id $_gphotoAlbumId null gphoto:albumid element \Zend_Gdata_Photos_Extension_AlbumId $_gphotoVersion null gphoto:version element \Zend_Gdata_Photos_Extension_Version $_gphotoWidth null gphoto:width element \Zend_Gdata_Photos_Extension_Width $_gphotoHeight null gphoto:height element \Zend_Gdata_Photos_Extension_Height $_gphotoSize null gphoto:size element \Zend_Gdata_Photos_Extension_Size $_gphotoClient null gphoto:client element \Zend_Gdata_Photos_Extension_Client $_gphotoChecksum null gphoto:checksum element \Zend_Gdata_Photos_Extension_Checksum $_gphotoTimestamp null gphoto:timestamp element \Zend_Gdata_Photos_Extension_Timestamp $_gphotoCommentCount null gphoto:commentCount element \Zend_Gdata_Photos_Extension_CommentCount $_gphotoCommentingEnabled null gphoto:commentingEnabled element \Zend_Gdata_Photos_Extension_CommentingEnabled $_mediaGroup null media:group element \Zend_Gdata_Media_Extension_MediaGroup $_entryClassName 'Zend_Gdata_Photos_PhotoEntry' $_feedClassName 'Zend_Gdata_Photos_PhotoFeed' $_entryKindClassMapping array('http://schemas.google.com/photos/2007#comment' => 'Zend_Gdata_Photos_CommentEntry', 'http://schemas.google.com/photos/2007#tag' => 'Zend_Gdata_Photos_TagEntry') __construct __construct $element null getDOM getDOM $doc null $majorVersion 1 $minorVersion null takeChildFromDOM takeChildFromDOM $child getGphotoId getGphotoId Get the value for this element's gphoto:id attribute. string setGphotoId setGphotoId Set the value for this element's gphoto:id attribute. string \Zend_Gdata_Photos_Extension_Id $value getGphotoVersion getGphotoVersion Get the value for this element's gphoto:version attribute. string setGphotoVersion setGphotoVersion Set the value for this element's gphoto:version attribute. string \Zend_Gdata_Photos_Extension_Version $value getGphotoAlbumId getGphotoAlbumId Get the value for this element's gphoto:albumid attribute. string setGphotoAlbumId setGphotoAlbumId Set the value for this element's gphoto:albumid attribute. string \Zend_Gdata_Photos_Extension_AlbumId $value getGphotoWidth getGphotoWidth Get the value for this element's gphoto:width attribute. string setGphotoWidth setGphotoWidth Set the value for this element's gphoto:width attribute. string \Zend_Gdata_Photos_Extension_Width $value getGphotoHeight getGphotoHeight Get the value for this element's gphoto:height attribute. string setGphotoHeight setGphotoHeight Set the value for this element's gphoto:height attribute. string \Zend_Gdata_Photos_Extension_Height $value getGphotoSize getGphotoSize Get the value for this element's gphoto:size attribute. string setGphotoSize setGphotoSize Set the value for this element's gphoto:size attribute. string \Zend_Gdata_Photos_Extension_Size $value getGphotoClient getGphotoClient Get the value for this element's gphoto:client attribute. string setGphotoClient setGphotoClient Set the value for this element's gphoto:client attribute. string \Zend_Gdata_Photos_Extension_Client $value getGphotoChecksum getGphotoChecksum Get the value for this element's gphoto:checksum attribute. string setGphotoChecksum setGphotoChecksum Set the value for this element's gphoto:checksum attribute. string \Zend_Gdata_Photos_Extension_Checksum $value getGphotoTimestamp getGphotoTimestamp Get the value for this element's gphoto:timestamp attribute. string setGphotoTimestamp setGphotoTimestamp Set the value for this element's gphoto:timestamp attribute. string \Zend_Gdata_Photos_Extension_Timestamp $value getGphotoCommentCount getGphotoCommentCount Get the value for this element's gphoto:commentCount attribute. string setGphotoCommentCount setGphotoCommentCount Set the value for this element's gphoto:commentCount attribute. string \Zend_Gdata_Photos_Extension_CommentCount $value getGphotoCommentingEnabled getGphotoCommentingEnabled Get the value for this element's gphoto:commentingEnabled attribute. string setGphotoCommentingEnabled setGphotoCommentingEnabled Set the value for this element's gphoto:commentingEnabled attribute. string \Zend_Gdata_Photos_Extension_CommentingEnabled $value getMediaGroup getMediaGroup Get the value for this element's media:group attribute. string setMediaGroup setMediaGroup Set the value for this element's media:group attribute. string \Zend_Gdata_Media_Extension_MediaGroup $value No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName No DocBlock was found for property $_entryKindClassMapping No DocBlock was found for method __construct() No DocBlock was found for method getDOM() No DocBlock was found for method takeChildFromDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Photos.php Zend/Gdata/Feed.php Zend/Gdata/Photos/UserEntry.php Zend/Gdata/Photos/AlbumEntry.php Zend/Gdata/Photos/PhotoEntry.php Zend/Gdata/Photos/TagEntry.php Zend/Gdata/Photos/CommentEntry.php Zend/Gdata/App/Exception.php \Zend_Gdata_Feed Zend_Gdata_Photos_UserFeed \Zend_Gdata_Photos_UserFeed Data model for a collection of entries for a specific user, usually provided by the servers. <p>For information on requesting this feed from a server, see the service class, Zend_Gdata_Photos.</p> $_gphotoUser null gphoto:user element \Zend_Gdata_Photos_Extension_User $_gphotoThumbnail null gphoto:thumbnail element \Zend_Gdata_Photos_Extension_Thumbnail $_gphotoNickname null gphoto:nickname element \Zend_Gdata_Photos_Extension_Nickname $_entryClassName 'Zend_Gdata_Photos_UserEntry' $_feedClassName 'Zend_Gdata_Photos_UserFeed' $_entryKindClassMapping array('http://schemas.google.com/photos/2007#album' => 'Zend_Gdata_Photos_AlbumEntry', 'http://schemas.google.com/photos/2007#photo' => 'Zend_Gdata_Photos_PhotoEntry', 'http://schemas.google.com/photos/2007#comment' => 'Zend_Gdata_Photos_CommentEntry', 'http://schemas.google.com/photos/2007#tag' => 'Zend_Gdata_Photos_TagEntry') __construct __construct $element null takeChildFromDOM takeChildFromDOM Creates individual Entry objects of the appropriate type and stores them in the $_entry array based upon DOM data. \DOMNode $child getDOM getDOM $doc null $majorVersion 1 $minorVersion null getGphotoUser getGphotoUser Get the value for this element's gphoto:user attribute. string setGphotoUser setGphotoUser Set the value for this element's gphoto:user attribute. string \Zend_Gdata_Photos_Extension_User $value getGphotoNickname getGphotoNickname Get the value for this element's gphoto:nickname attribute. string setGphotoNickname setGphotoNickname Set the value for this element's gphoto:nickname attribute. string \Zend_Gdata_Photos_Extension_Nickname $value getGphotoThumbnail getGphotoThumbnail Get the value for this element's gphoto:thumbnail attribute. string setGphotoThumbnail setGphotoThumbnail Set the value for this element's gphoto:thumbnail attribute. string \Zend_Gdata_Photos_Extension_Thumbnail $value No DocBlock was found for property $_entryClassName No DocBlock was found for property $_feedClassName No DocBlock was found for property $_entryKindClassMapping No DocBlock was found for method __construct() No DocBlock was found for method getDOM() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/Photos/AlbumQuery.php Zend/Gdata/App/InvalidArgumentException.php \Zend_Gdata_Photos_AlbumQuery Zend_Gdata_Photos_PhotoQuery \Zend_Gdata_Photos_PhotoQuery Assists in constructing queries for comment/tag entries. <p>Instances of this class can be provided in many places where a URL is required.</p> <p>For information on submitting queries to a server, see the service class, Zend_Gdata_Photos.</p> $_photoId null The ID of the photo to query for. string setPhotoId setPhotoId Set the photo ID to query for. <p>When set, this photo's comments/tags will be returned. If not set or null, the default user's feed will be returned instead.</p> string $value getPhotoId getPhotoId Get the photo ID which is to be returned. string getQueryUrl getQueryUrl Returns the URL generated for this query, based on it's current parameters. string \Zend_Gdata_App_InvalidArgumentException $incomingUri '' Argument $incomingUri is missing from the Docblock of getQueryUrl() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Http/Client/Adapter/Proxy.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php Zend/Http/Client/Adapter/Exception.php \Zend_Http_Client_Adapter_Proxy Zend_Gdata_HttpAdapterStreamingProxy \Zend_Gdata_HttpAdapterStreamingProxy Extends the proxy HTTP adapter to handle streams instead of discrete body strings. CHUNK_SIZE CHUNK_SIZE 1024 The amount read from a stream source at a time. integer write write Send request to the proxy server with streaming support string \Zend_Uri_Http string array string string $method $uri $http_ver '1.1' $headers array() $body '' Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Gdata/HttpClient.php Zend_Gdata_HttpClient Zend/Version.php Zend_Version Zend/Gdata/App/AuthException.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/AuthException.php Zend/Gdata/App/HttpException.php Zend/Gdata/App/CaptchaRequiredException.php Zend/Gdata/App/AuthException.php Zend_Gdata_ClientLogin \Zend_Gdata_ClientLogin Class to facilitate Google's "Account Authentication for Installed Applications" also known as "ClientLogin". CLIENTLOGIN_URI CLIENTLOGIN_URI 'https://www.google.com/accounts/ClientLogin' The Google client login URI DEFAULT_SOURCE DEFAULT_SOURCE 'Zend-ZendFramework' The default 'source' parameter to send to Google getHttpClient getHttpClient Set Google authentication credentials. <p>Must be done before trying to do any Google Data operations that require authentication. For example, viewing private data, or posting or deleting entries.</p> string string string \Zend_Gdata_HttpClient string string string string \Zend_Gdata_App_AuthException \Zend_Gdata_App_HttpException \Zend_Gdata_App_CaptchaRequiredException \Zend_Gdata_HttpClient $email $password $service 'xapi' $client null $source self::DEFAULT_SOURCE $loginToken null $loginCaptcha null $loginUri self::CLIENTLOGIN_URI $accountType 'HOSTED_OR_GOOGLE' Name of argument $loginUri does not match with the DocBlock's name $accountType in getHttpClient() Argument $accountType is missing from the Docblock of getHttpClient() Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Uri.php Zend/Validate/Hostname.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php Zend/Uri/Exception.php \Zend_Uri Zend_Uri_Http \Zend_Uri_Http HTTP(S) URI handler CHAR_ALNUM CHAR_ALNUM 'A-Za-z0-9' Character classes for validation regular expressions CHAR_MARK CHAR_MARK '-_.!~*\'()\[\]' CHAR_RESERVED CHAR_RESERVED ';\/?:@&=+$,' CHAR_SEGMENT CHAR_SEGMENT ':@&=+$,;' CHAR_UNWISE CHAR_UNWISE '{}|\\\\^`' $_username '' HTTP username string $_password '' HTTP password string $_host '' HTTP host string $_port '' HTTP post string $_path '' HTTP part string $_query '' HTTP query string $_fragment '' HTTP fragment string $_regex array() Regular expression grammar rules for validation; values added by constructor array __construct __construct Constructor accepts a string $scheme (e.g., http, https) and a scheme-specific part of the URI (e.g., example.com/path/to/resource?query=param#fragment) string string \Zend_Uri_Exception $scheme $schemeSpecific '' fromString fromString Creates a Zend_Uri_Http from the given string string \InvalidArgumentException \Zend_Uri_Exception \Zend_Uri_Http $uri _parseUri _parseUri Parse the scheme-specific portion of the URI and place its parts into instance variables. string \Zend_Uri_Exception \Zend_Uri_Exception void $schemeSpecific getUri getUri Returns a URI based on current values of the instance variables. <p>If any part of the URI does not pass validation, then an exception is thrown.</p> \Zend_Uri_Exception string valid valid Validate the current URI from the instance variables. <p>Returns true if and only if all parts pass validation.</p> boolean getUsername getUsername Returns the username portion of the URL, or FALSE if none. string validateUsername validateUsername Returns true if and only if the username passes validation. <p>If no username is passed, then the username contained in the instance variable is used.</p> string \Zend_Uri_Exception boolean $username null setUsername setUsername Sets the username for the current URI, and returns the old username string \Zend_Uri_Exception string $username getPassword getPassword Returns the password portion of the URL, or FALSE if none. string validatePassword validatePassword Returns true if and only if the password passes validation. <p>If no password is passed, then the password contained in the instance variable is used.</p> string \Zend_Uri_Exception boolean $password null setPassword setPassword Sets the password for the current URI, and returns the old password string \Zend_Uri_Exception string $password getHost getHost Returns the domain or host IP portion of the URL, or FALSE if none. string validateHost validateHost Returns true if and only if the host string passes validation. <p>If no host is passed, then the host contained in the instance variable is used.</p> string boolean $host null setHost setHost Sets the host for the current URI, and returns the old host string \Zend_Uri_Exception string $host getPort getPort Returns the TCP port, or FALSE if none. string validatePort validatePort Returns true if and only if the TCP port string passes validation. <p>If no port is passed, then the port contained in the instance variable is used.</p> string boolean $port null setPort setPort Sets the port for the current URI, and returns the old port string \Zend_Uri_Exception string $port getPath getPath Returns the path and filename portion of the URL. string validatePath validatePath Returns true if and only if the path string passes validation. <p>If no path is passed, then the path contained in the instance variable is used.</p> string \Zend_Uri_Exception boolean $path null setPath setPath Sets the path for the current URI, and returns the old path string \Zend_Uri_Exception string $path getQuery getQuery Returns the query portion of the URL (after ?), or FALSE if none. string getQueryAsArray getQueryAsArray Returns the query portion of the URL (after ?) as a key-value-array. <p>If the query is empty an empty array is returned</p> array validateQuery validateQuery Returns true if and only if the query string passes validation. <p>If no query is passed, then the query string contained in the instance variable is used.</p> string \Zend_Uri_Exception boolean $query null addReplaceQueryParameters addReplaceQueryParameters Add or replace params in the query string for the current URI, and return the old query. array string $queryParams array removeQueryParameters removeQueryParameters Remove params in the query string for the current URI, and return the old query. array string $queryParamKeys array setQuery setQuery Set the query string for the current URI, and return the old query string This method accepts both strings and arrays. string array \Zend_Uri_Exception string $query getFragment getFragment Returns the fragment portion of the URL (after #), or FALSE if none. string false validateFragment validateFragment Returns true if and only if the fragment passes validation. <p>If no fragment is passed, then the fragment contained in the instance variable is used.</p> string \Zend_Uri_Exception boolean $fragment null setFragment setFragment Sets the fragment for the current URI, and returns the old fragment string \Zend_Uri_Exception string $fragment Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend/Exception.php \Zend_Exception Zend_Uri_Exception \Zend_Uri_Exception Exceptions for Zend_Uri Zend Framework <p>LICENSE</p> <p>This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.</p> Zend_Version \Zend_Version Class to store and retrieve the version of Zend Framework. VERSION VERSION '1.12.3' Zend Framework version identification - see compareVersion() $_latestVersion The latest stable version Zend Framework available string compareVersion compareVersion Compare the specified Zend Framework version string $version with the current Zend_Version::VERSION of Zend Framework. string int $version getLatest getLatest Fetches the version of the latest stable release string todo fixme