Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Gdata/Health/ProfileFeed.php
Go to the documentation of this file.
00001 <?php
00002 
00027 require_once 'Zend/Gdata/Feed.php';
00028 
00040 class Zend_Gdata_Health_ProfileFeed extends Zend_Gdata_Feed
00041 {
00047     protected $_entryClassName = 'Zend_Gdata_Health_ProfileEntry';
00048 
00055     public function __construct($element = null)
00056     {
00057         foreach (Zend_Gdata_Health::$namespaces as $nsPrefix => $nsUri) {
00058             $this->registerNamespace($nsPrefix, $nsUri);
00059         }
00060         parent::__construct($element);
00061     }
00062 
00063     public function getEntries()
00064     {
00065         return $this->entry;
00066     }
00067 }
 All Data Structures Namespaces Files Functions Variables Enumerations