fckeditor
images
javascript
languages
libs
Auth
CommunityID
Monkeys
Yubico
Zend
Acl
Amf
Application
Auth
Cache
Captcha
CodeGenerator
Config
Console
Controller
Crypt
Currency
Date
Db
Dojo
Dom
Feed
File
Filter
Form
Gdata
Http
InfoCard
Json
Layout
Ldap
Loader
Locale
Log
Mail
Measure
Memory
Mime
Navigation
OpenId
Paginator
Pdf
ProgressBar
Queue
Reflection
Rest
Search
Server
Service
Amazon
Delicious
Flickr
Nirvanix
ReCaptcha
Simpy
SlideShare
StrikeIron
Base.php
Decorator.php
Exception.php
SalesUseTaxBasic.php
USAddressVerification.php
ZipCodeInfo.php
Technorati
Twitter
Yahoo
Abstract.php
Akismet.php
Amazon.php
Audioscrobbler.php
Delicious.php
Exception.php
Flickr.php
Nirvanix.php
ReCaptcha.php
Simpy.php
SlideShare.php
StrikeIron.php
Technorati.php
Twitter.php
Yahoo.php
Session
Soap
Tag
Test
Text
TimeSync
Tool
Translate
Uri
Validate
View
Wildfire
XmlRpc
Acl.php
Application.php
Auth.php
Cache.php
Config.php
Crypt.php
Currency.php
Date.php
Db.php
Debug.php
Dojo.php
Exception.php
Feed.php
Filter.php
Form.php
Gdata.php
InfoCard.php
Json.php
Layout.php
Ldap.php
Loader.php
Locale.php
Log.php
Mail.php
Memory.php
Mime.php
Navigation.php
OpenId.php
Paginator.php
Pdf.php
ProgressBar.php
Queue.php
Registry.php
Session.php
TimeSync.php
Translate.php
Uri.php
Validate.php
Version.php
View.php
htmlpurifier
jpgraph
MODIFICATIONS.txt
modules
plugins
resources
setup
styles
views
.htaccess
Acl.php
Application.php
BUGS
CHANGELOG
CONTRIBUTORS
IIS_7_rewrite_config.txt
INSTALL
LICENSE
README.md
config.default.php
config.template.php
favicon.ico
index.php
lighttpd_mod_rewrite.txt
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
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_Service
|
|
* @subpackage StrikeIron
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: ZipCodeInfo.php 16211 2009-06-21 19:23:55Z thomas $
|
|
*/
|
|
|
|
/** Zend_Service_StrikeIron_Base */
|
|
require_once 'Zend/Service/StrikeIron/Base.php';
|
|
|
|
/**
|
|
* @category Zend
|
|
* @package Zend_Service
|
|
* @subpackage StrikeIron
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
class Zend_Service_StrikeIron_ZipCodeInfo extends Zend_Service_StrikeIron_Base
|
|
{
|
|
/**
|
|
* Configuration options
|
|
* @param array
|
|
*/
|
|
protected $_options = array('username' => null,
|
|
'password' => null,
|
|
'client' => null,
|
|
'options' => null,
|
|
'headers' => null,
|
|
'wsdl' => 'http://sdpws.strikeiron.com/zf1.StrikeIron/sdpZIPCodeInfo?WSDL');
|
|
}
|