Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Gdata Spreadsheets
SPREADSHEETS_FEED_URI = 'https://spreadsheets.google.com/feeds/spreadsheets'
SPREADSHEETS_POST_URI = 'https://spreadsheets.google.com/feeds/spreadsheets/private/full'
WORKSHEETS_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#worksheetsfeed'
LIST_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#listfeed'
CELL_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#cellsfeed'
AUTH_SERVICE_NAME = 'wise'
array $namespaces = 'array'
Namespaces used for Zend_Gdata_Photos
GetWorksheetEntry(
string $location
)
:
WorksheetEntry
Gets a worksheet entry.
__construct(
Zend_Http_Client $client
=
null, string $applicationId
=
MyCompany-MyApp-1.0
)
:
Create Gdata_Spreadsheets object
deleteRow(
ListEntry $entry
)
:
Deletes an existing row .
getCellEntry(
string $location
)
:
CellEntry
Gets a cell entry.
getCellFeed(
string $location
)
:
CellFeed
Gets a cell feed.
getListEntry(
string $location
)
:
ListEntry
Gets a list entry.
getListFeed(
mixed $location
)
:
ListFeed
Gets a list feed.
getSpreadsheetCellFeedContents(
mixed $location, string $range
=
null, boolean $empty
=
false
)
:
array
Returns the content of all cells as an associative array, indexed off the cell location (ie 'A1', 'D4', etc). 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
getSpreadsheetEntry(
string $location
)
:
SpreadsheetEntry
Gets a spreadsheet entry.
getSpreadsheetFeed(
mixed $location
=
null
)
:
Zend_Gdata_Spreadsheets_SpreadsheetFeed
Gets a spreadsheet feed.
getSpreadsheetListFeedContents(
mixed $location
)
:
array
Returns the content of all rows as an associative array
getSpreadsheets(
mixed $location
=
null
)
:
Zend_Gdata_Spreadsheets_SpreadsheetFeed
Alias for getSpreadsheetFeed
getWorksheetFeed(
mixed $location
)
:
Zend_Gdata_Spreadsheets_WorksheetFeed
Gets a worksheet feed.
insertRow(
array $rowData, string $key, string $wkshtId
=
default
)
:
ListEntry
Inserts a new row with provided data.
updateCell(
int $row, int $col, int $inputValue, string $key, string $wkshtId
=
default
)
:
CellEntry
Updates an existing cell.
updateRow(
ListEntry $entry, array $newRowData
)
:
Updates an existing row with provided data.