Details
README for ISBNDBService v1.0 07-06-2009 (7 june 2009)
ISBNDBService is a PHP wrapper for isbndb.com's webservice API. It will represent
the returned data as PHP objects that can be manipulated and read.
Features:
* Implements paging mechanism used by the webservice
* Can represent all data currently returned by the webservice
* Can handle all request types currently used by the webservice
* Makes pages and resultset function as iterators
Warnings:
This library relies on an implementation of an autoload mechanism. No files are automatically included or required to allow
for a flexible implementation of this library in your project
Tips:
If you want to display data from a result or a collection in a generic way, say XML or JSON use the decorator pattern.
For example if you want to display a collection as an xml string to use in an AJAX request:
<code>
class ISBNDBServiceCollectionDecoratorXML
{
protected $collection = null;
public function __construct(ISBNDBServiceCollection $collection)
{
$this->collection = $collection;
}
public function __toString()
{
/**
* This is the place where you loop over your collection and
* create the xml string that you need to display.
*/
}
}
</code>
|
|
Name: |
ISBNDB Service |
Base name: |
isbndbservice |
Description: |
Retrieve book information by ISBN from ISBNDB.com |
Version: |
1.0 |
PHP version: |
5.2 |
License: |
BSD License |
All time users: |
579 users |
All time rank: |
5314 |
Week users: |
0 users |
Week rank: |
117  |
|
|
 June 2009
Number 9 |
Many sites display pages with details and reviews about books.
This class makes it possible to retrieve and display details about many books in any site by accessing the ISBNDB.com book database via Web services.
Manuel Lemos |
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.
|
Files |
|
|
Files |
|