0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.7.0.2-6
/
standard
/
htdocs
/
lib
/
Zend
/
Gdata
/
Health
/
[
Home
]
File: ProfileListEntry.php
<?php /** * 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. * * @category Zend * @package Zend_Gdata * @subpackage Health * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: ProfileListEntry.php 20096 2010-01-06 02:05:09Z bkarwin $ */ /** * @see Zend_Gdata_Entry */ #require_once 'Zend/Gdata/Entry.php'; /** * Concrete class for working with Health profile list entries. * * @link http://code.google.com/apis/health/ * * @category Zend * @package Zend_Gdata * @subpackage Health * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Gdata_Health_ProfileListEntry extends Zend_Gdata_Entry { /** * The classname for individual profile list entry elements. * * @var string */ protected $_entryClassName = 'Zend_Gdata_Health_ProfileListEntry'; /** * Constructs a new Zend_Gdata_Health_ProfileListEntry object. * @param DOMElement $element (optional) The DOMElement on which to base this object. */ public function __construct($element = null) { parent::__construct($element); } /** * Retrieves a DOMElement which corresponds to this element and all * child properties. This is used to build an entry back into a DOM * and eventually XML text for application storage/persistence. * * @param DOMDocument $doc The DOMDocument used to construct DOMElements * @return DOMElement The DOMElement representing this element and all * child properties. */ public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null) { $element = parent::getDOM($doc, $majorVersion, $minorVersion); return $element; } /** * Creates individual Entry objects of the appropriate type and * stores them as members of this entry based upon DOM data. * * @param DOMNode $child The DOMNode to process */ protected function takeChildFromDOM($child) { parent::takeChildFromDOM($child); } /** * Retrieves the profile ID for the entry, which is contained in <atom:content> * @return string The profile id */ public function getProfileID() { return $this->getContent()->text; } /** * Retrieves the profile's title, which is contained in <atom:title> * @return string The profile name */ public function getProfileName() { return $this->getTitle()->text; } }