本文整理汇总了PHP中Zend_Gdata_App_Base类的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Gdata_App_Base类的具体用法?PHP Zend_Gdata_App_Base怎么用?PHP Zend_Gdata_App_Base使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Zend_Gdata_App_Base类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: testLookupNamespaceObeysParentBehavior
public function testLookupNamespaceObeysParentBehavior()
{
$prefix = 'test';
$testString10 = 'TEST-v1-0';
$testString20 = 'TEST-v2-0';
$testString11 = 'TEST-v1-1';
$testString21 = 'TEST-v2-1';
$testString12 = 'TEST-v1-2';
$testString22 = 'TEST-v2-2';
Zend_Gdata_App_Base::flushNamespaceLookupCache();
$entry = $this->service->newEntry();
$entry->registerNamespace($prefix, $testString10, 1, 0);
$entry->registerNamespace($prefix, $testString20, 2, 0);
$entry->registerNamespace($prefix, $testString11, 1, 1);
$entry->registerNamespace($prefix, $testString21, 2, 1);
$entry->registerNamespace($prefix, $testString12, 1, 2);
$entry->registerNamespace($prefix, $testString22, 2, 2);
// Assumes default version (1)
$result = $entry->lookupNamespace($prefix, 1, null);
$this->assertEquals($testString12, $result);
$result = $entry->lookupNamespace($prefix, 2, null);
$this->assertEquals($testString22, $result);
$result = $entry->lookupNamespace($prefix, 1, 1);
$this->assertEquals($testString11, $result);
$result = $entry->lookupNamespace($prefix, 2, 1);
$this->assertEquals($testString21, $result);
$result = $entry->lookupNamespace($prefix, null, null);
$this->assertEquals($testString12, $result);
$result = $entry->lookupNamespace($prefix, null, 1);
$this->assertEquals($testString11, $result);
// Override to retrieve latest version
$entry->setMajorProtocolVersion(null);
$result = $entry->lookupNamespace($prefix, null, null);
$this->assertEquals($testString22, $result);
$result = $entry->lookupNamespace($prefix, null, 1);
$this->assertEquals($testString21, $result);
}
开发者ID:omusico,项目名称:logica,代码行数:37,代码来源:EntryTest.php
示例2: takeChildFromDOM
protected function takeChildFromDOM($child)
{
$absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
switch ($absoluteNodeName) {
case $this->lookupNamespace('atom') . ':' . 'author':
$author = new Zend_Gdata_App_Extension_Author();
$author->transferFromDOM($child);
$this->_author[] = $author;
break;
case $this->lookupNamespace('atom') . ':' . 'category':
$category = new Zend_Gdata_App_Extension_Category();
$category->transferFromDOM($child);
$this->_category[] = $category;
break;
case $this->lookupNamespace('atom') . ':' . 'contributor':
$contributor = new Zend_Gdata_App_Extension_Contributor();
$contributor->transferFromDOM($child);
$this->_contributor[] = $contributor;
break;
case $this->lookupNamespace('atom') . ':' . 'id':
$id = new Zend_Gdata_App_Extension_Id();
$id->transferFromDOM($child);
$this->_id = $id;
break;
case $this->lookupNamespace('atom') . ':' . 'link':
$link = new Zend_Gdata_App_Extension_Link();
$link->transferFromDOM($child);
$this->_link[] = $link;
break;
case $this->lookupNamespace('atom') . ':' . 'rights':
$rights = new Zend_Gdata_App_Extension_Rights();
$rights->transferFromDOM($child);
$this->_rights = $rights;
break;
case $this->lookupNamespace('atom') . ':' . 'title':
$title = new Zend_Gdata_App_Extension_Title();
$title->transferFromDOM($child);
$this->_title = $title;
break;
case $this->lookupNamespace('atom') . ':' . 'updated':
$updated = new Zend_Gdata_App_Extension_Updated();
$updated->transferFromDOM($child);
$this->_updated = $updated;
break;
default:
parent::takeChildFromDOM($child);
break;
}
}
开发者ID:janssit,项目名称:www.ondernemenddiest.be,代码行数:49,代码来源:FeedEntryParent.php
示例3: flushNamespaceLookupCache
/**
* Flush namespace lookup cache.
*
* Empties the namespace lookup cache. Call this function if you have
* added data to the namespace lookup table that contradicts values that
* may have been cached during a previous call to lookupNamespace().
*/
public static function flushNamespaceLookupCache()
{
self::$_namespaceLookupCache = array();
}
开发者ID:yonetici,项目名称:pimcore-coreshop-demo,代码行数:11,代码来源:Base.php
示例4: lookupNamespace
/**
* Get the full version of a namespace prefix
*
* Looks up a prefix (atom:, etc.) in the list of registered
* namespaces and returns the full namespace URI if
* available. Returns the prefix, unmodified, if it's not
* registered.
*
* The current entry or feed's version will be used when performing the
* namespace lookup unless overridden using $majorVersion and
* $minorVersion. If the entry/fee has a null version, then the latest
* protocol version will be used by default.
*
* @param string $prefix The namespace prefix to lookup.
* @param integer $majorVersion The major protocol version in effect.
* Defaults to null (auto-select).
* @param integer $minorVersion The minor protocol version in effect.
* Defaults to null (auto-select).
* @return string
*/
public function lookupNamespace($prefix, $majorVersion = null, $minorVersion = null)
{
// Auto-select current version
if ($majorVersion === null) {
$majorVersion = $this->getMajorProtocolVersion();
}
if ($minorVersion === null) {
$minorVersion = $this->getMinorProtocolVersion();
}
// Perform lookup
return parent::lookupNamespace($prefix, $majorVersion, $minorVersion);
}
开发者ID:netixx,项目名称:Stock,代码行数:32,代码来源:FeedEntryParent.php
示例5: takeAttributeFromDOM
/**
* Given a DOMNode representing an attribute, tries to map the data into
* instance members. If no mapping is defined, the name and value are
* stored in an array.
*
* @param DOMNode $attribute The DOMNode attribute needed to be handled
*/
protected function takeAttributeFromDOM($attribute)
{
switch ($attribute->localName) {
case 'errorCode':
$this->_errorCode = $attribute->nodeValue;
break;
case 'reason':
$this->_reason = $attribute->nodeValue;
break;
case 'invalidInput':
$this->_invalidInput = $attribute->nodeValue;
break;
default:
parent::takeAttributeFromDOM($attribute);
}
}
开发者ID:Yaoming9,项目名称:Projet-Web-PhP,代码行数:23,代码来源:Error.php
注:本文中的Zend_Gdata_App_Base类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论