本文整理匯總了PHP中Zend_Gdata_App_Extension_Content類的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Gdata_App_Extension_Content類的具體用法?PHP Zend_Gdata_App_Extension_Content怎麽用?PHP Zend_Gdata_App_Extension_Content使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Zend_Gdata_App_Extension_Content類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: takeChildFromDOM
protected function takeChildFromDOM($child)
{
$absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
switch ($absoluteNodeName) {
case $this->lookupNamespace('atom') . ':' . 'content':
$content = new Zend_Gdata_App_Extension_Content();
$content->transferFromDOM($child);
$this->_content = $content;
break;
case $this->lookupNamespace('atom') . ':' . 'published':
$published = new Zend_Gdata_App_Extension_Published();
$published->transferFromDOM($child);
$this->_published = $published;
break;
case $this->lookupNamespace('atom') . ':' . 'source':
$source = new Zend_Gdata_App_Extension_Source();
$source->transferFromDOM($child);
$this->_source = $source;
break;
case $this->lookupNamespace('atom') . ':' . 'summary':
$summary = new Zend_Gdata_App_Extension_Summary();
$summary->transferFromDOM($child);
$this->_summary = $summary;
break;
case $this->lookupNamespace('app') . ':' . 'control':
$control = new Zend_Gdata_App_Extension_Control();
$control->transferFromDOM($child);
$this->_control = $control;
break;
default:
parent::takeChildFromDOM($child);
break;
}
}
示例2: testContentWithSrcAndTypeToAndFromStringShouldMatch
public function testContentWithSrcAndTypeToAndFromStringShouldMatch()
{
$this->content->src = 'http://www.example.com/image.png';
$this->content->type = 'image/png';
$contentXml = $this->content->saveXML();
$newContent = new Zend_Gdata_App_Extension_Content();
$newContent->transferFromXML($contentXml);
$newContentXml = $newContent->saveXML();
$this->assertEquals($newContentXml, $contentXml);
$this->assertEquals('http://www.example.com/image.png', $newContent->src);
$this->assertEquals('image/png', $newContent->type);
}