Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Gdata/Spreadsheets/SpreadsheetEntry.php
Go to the documentation of this file.
00001 <?php
00002 
00027 require_once 'Zend/Gdata/Entry.php';
00028 
00038 class Zend_Gdata_Spreadsheets_SpreadsheetEntry extends Zend_Gdata_Entry
00039 {
00040 
00041     protected $_entryClassName = 'Zend_Gdata_Spreadsheets_SpreadsheetEntry';
00042 
00047     public function __construct($element = null)
00048     {
00049         $this->registerAllNamespaces(Zend_Gdata_Spreadsheets::$namespaces);
00050         parent::__construct($element);
00051     }
00052 
00058     public function getWorksheets()
00059     {
00060         $service = new Zend_Gdata_Spreadsheets($this->getHttpClient());
00061         return $service->getWorksheetFeed($this);
00062     }
00063 
00064 }
 All Data Structures Namespaces Files Functions Variables Enumerations