When a new XML element is introduced, client library support needs to be added. At times, the services move a bit faster than the client libraries. This means that (as per the AtomPub spec) clients must store all unknown elements returned from the server. Clients may also wish to be able to use new functionality which isn't explicitly supported yet in the libraries, so clients can allow you to create arbitrary XML elements and attach them to entries.
The PHP client library accomplishes this using extension elements, represented as instances of Zend_Gdata_App_Extension_Element
. Each time the server returns an element that is unknown to the client library, the client creates an instance of that class and stores it in the extensionElements
array of the class representing the parent element. In order to send arbitrary XML, you can also construct a new Zend_Gdata_App_Extension_Element
and place it in the extensionElements
array.
As an example, Google Base added a publishing priority option, specified by adding a <gm:publishing_priority>
element. At the time of this post, the element isn't supported by a class in the PHP client library, so here's how you can add it.
<?php require_once 'Zend/Gdata/Gbase.php'; require_once 'Zend/Gdata/App/Extension/Element.php'; $base = new Zend_Gdata_Gbase(); $entry = $base->newItemEntry(); // Constructing a Zend_Gdata_App_Extension_Control $control = $base->newControl(); // Constructing the extension element, and placing it into the array // of extension owned by the class representing the parent app:control element. // Arguments: // element name (including prefix) // namespace prefix // namespace URI // text node of the new element $control->extensionElements = array( new Zend_Gdata_App_Extension_Element('gm:publishing_priority', 'gm', 'http://base.google.com/ns-metadata/1.0', 'high') ); $entry->control = $control;
Of course, if you discover missing elements, please feel free to file an issue in the Zend Framework issue tracker and, since it's open source, you can also contribute a fix back to the project. More information on contributing can be found on the Zend Framework wiki.
3 comments:
Girl Xinh | Hot Girl | Cute Girl | Sexy Girl | Hot Girl Asian
Hot Girl | Lexi Belle | Sexy Girl | Cute Girl | Hot Asian Girl | Leah Dizon | Hot Girl Asian | Girl Xinh
socks proxy | socks5 | proxy free |proxy list
Of course, if you discover missing elements, please feel free to file an issue in the Zend Framework issue tracker and, since it's open source, you can also contribute a fix back to the project. More information on contributing can be found on the
t-shirt-world
4Life
I have read your blog its very attractive and impressive. I like it your blog.
PHP 7 Training in chennai | PHP 7 Training Course
PHP 7 Training in chennai | Online PHP 7 Course
Post a Comment