Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Gdata/Health/ProfileListEntry.php
Go to the documentation of this file.
00001 <?php
00002 
00027 require_once 'Zend/Gdata/Entry.php';
00028 
00040 class Zend_Gdata_Health_ProfileListEntry extends Zend_Gdata_Entry
00041 {
00047     protected $_entryClassName = 'Zend_Gdata_Health_ProfileListEntry';
00048 
00053     public function __construct($element = null)
00054     {
00055         parent::__construct($element);
00056     }
00057 
00067     public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
00068     {
00069         $element = parent::getDOM($doc, $majorVersion, $minorVersion);
00070         return $element;
00071     }
00072 
00079     protected function takeChildFromDOM($child)
00080     {
00081         parent::takeChildFromDOM($child);
00082     }
00083 
00088     public function getProfileID() {
00089         return $this->getContent()->text;
00090     }
00091 
00096     public function getProfileName() {
00097         return $this->getTitle()->text;
00098     }
00099 
00100 }
 All Data Structures Namespaces Files Functions Variables Enumerations