Release 1.12.4

This commit is contained in:
Jesper Ek
2014-05-21 17:17:48 +02:00
parent a7748612ee
commit f019bb8c49
139 changed files with 408 additions and 650 deletions

View File

@ -1,83 +0,0 @@
INSTALLATION
------------
Zend Framework requires no special installation steps. Simply download the framework,
extract it to the folder you would like to keep it in, and add the library directory
to your PHP include_path. To use components in the extras library, add the extras/library
directory to your PHP include_path, as well.
If you would like to use Zend_Tool, simply add bin/zf.bat (for Windows) or
bin/zf.sh (for anything else) to your system executable path.
SYSTEM REQUIREMENTS
-------------------
Zend Framework requires PHP 5.2.11 or later. Please see the system requirements
appendix for more detailed information:
http://framework.zend.com/manual/en/requirements.html
DEVELOPMENT VERSIONS
--------------------
If you would like to preview enhancements or bug fixes that have not yet been
released, you can obtain the current development version of Zend Framework using one
of the following methods:
* Download the latest nightly snapshot. For those who care to brave the cutting
(often bleeding) edge, the nightly snapshots represent the latest single-
download development version of Zend Framework development. Snapshots are bundled
with documentation in English only or in all available languages. If you anticipate
updating to the latest development version of Zend Framework often, consider using
Subversion as described below.
http://framework.zend.com/download/snapshot
* Using a Subversion (SVN) client. Zend Framework is open source software, and
the Subversion repository used for its development is publicly available. Consider
using SVN to get Zend Framework if you already use SVN for your application
development, want to contribute back to the framework, or need to upgrade your
framework version very often.
Exporting is useful if you want to get a particular framework revision without the
.svn directories as created in a working copy.
Checking out a working copy is necessary if you would like to directly contribute
to Zend Framework; a working copy can be updated any time with svn update.
An externals definition is highly convenient for developers already using SVN to
manage their application working copies.
The URL for the trunk of the Zend Framework SVN repository is:
http://framework.zend.com/svn/framework/trunk
For more information about Subversion, please see the official website:
http://subversion.tigris.org
CONFIGURING THE INCLUDE PATH
----------------------------
Once you have a copy of Zend Framework available, your application will need to
access the framework classes. Though there are several ways to achieve this, your
PHP include_path needs to contain the path to the Zend Framework classes under the
/library directory in this distribution. You can find out more about the PHP
include_path configuration directive here:
http://www.php.net/manual/en/ini.core.php#ini.include-path
Instructions on how to change PHP configuration directives can be found here:
http://www.php.net/manual/en/configuration.changes.php
GETTING STARTED
---------------
A great place to get up-to-speed quickly is the Zend Framework QuickStart:
http://framework.zend.com/docs/quickstart
The QuickStart covers some of the most commonly used components of ZF. Since
Zend Framework is designed with a use-at-will architecture and components are
loosely coupled, you can select and use only those components that are needed for
your project.

View File

@ -1,4 +1,4 @@
Copyright (c) 2005-2012, Zend Technologies USA, Inc. Copyright (c) 2005-2014, Zend Technologies USA, Inc.
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, Redistribution and use in source and binary forms, with or without modification,

View File

@ -1,160 +0,0 @@
Welcome to the Zend Framework 1.12 Release!
RELEASE INFORMATION
---------------
Zend Framework 1.12.3 Release ([INSERT REV NUM HERE]).
Released on March 13, 2013
IMPORTANT FIXES FOR 1.12.3
--------------------------
This release incorporates is primarily aimed to update
Zend_Service_Twitter to the Twitter v1.1 API:
- http://framework.zend.com/issues/browse/ZF-12530
Because the Twitter v1.1 API is not backwards compatible with v1.0, the
API for Zend_Service_Twitter has been changed; if you have been using it
previously, you will need to update your code accordingly. Both the
end-user and API documentation have been updated to reflect the changes.
NEW FEATURES
============
Zend_Loader changes
----
A number of autoloaders and autoloader facilities were back ported from
ZF2 to provide performant alternatives to those already available in the
1.X releases. These include: Zend_Loader_StandardAutoloader, which
improves on Zend_Loader_Autoloader by allowing the ability to specify a
specific path to associate with a vendor prefix or namespace;
Zend_Loader_ClassMapAutoloader, which provides the ability to use lookup
tables for autoloading (which are typically the fastest possible way to
autoload); and Zend_Loader_AutoloaderFactory, which can both create and
update autoloaders for you, as well as register them with
spl_autoload_register().
The Zend_Loader changes were back ported from ZF2 by Matthew Weier
OPhinney
Zend_EventManager
----
Zend_EventManager is a component that allows you to attach and detach
listeners to named events, both on a per-instance basis as well as via
shared collections; trigger events; and interrupt execution of
listeners.
Zend_EventManager was back ported from ZF2 by Matthew Weier OPhinney
Zend_Http_UserAgent_Features_Adapter_Browscap
----
This class provides a features adapter that calls get_browser() in order
to discover mobile device capabilities to inject into UserAgent device
instances.
Browscap (http://browsers.garykeith.com/) is an open project dedicated
to collecting an disseminating a “database” of browser capabilities. PHP
has built-in support for using these files via the get_browser()
function. This function requires that your php.ini provides a browscap
entry pointing to the PHP-specific php_browscap.ini file which is
available at http://browsers.garykeith.com/stream.asp?PHP_BrowsCapINI.
Zend_Http_UserAgent_Features_Adapter_Browscap was created by Matthew
Weier OPhinney
Zend_Mobile_Push
----
Zend_Mobile_Push is a component for implementing push notifications for
the 3 major push notification platforms (Apple (Apns), Google (C2dm) and
Microsoft (Mpns).
Zend_Mobile_Push was contributed by Mike Willbanks.
Zend_Gdata_Analytics
----
Zend_Gdata_Analytics is an extension to Zend_Gdata to allow interaction
with Googles Analytics Data Export API. This extension does not
encompass any major changes in the overall operation of Zend_Gdata
components.
Zend_Gdata_Analytics was contributed by Daniel Hartmann.
Removed features
================
Zend_Http_UserAgent_Features_Adapter_WurflApi
----
Due to the changes in licensing of WURFL, we have removed the WurflApi
adapter. We will be providing the WurflApi adapter to ScientiaMobile so
that users of WURFL will still have that option.
Bug Fixes
=========
In addition, over 200 reported issues in the tracker have been fixed.
Wed like to particularly thank Adam Lundrigan, Frank Brückner and
Martin Hujer for their efforts in making this happen. Thanks also to the
many people who ran the ZF1 unit tests and reported their results!
For a complete list, visit:
* http://framework.zend.com/issues/secure/IssueNavigator.jspa?requestId=12877
* http://framework.zend.com/changelog/
MIGRATION NOTES
---------------
A detailed list of migration notes may be found at:
http://framework.zend.com/manual/en/migration.html
SYSTEM REQUIREMENTS
-------------------
Zend Framework requires PHP 5.2.11 or later. Please see our reference
guide for more detailed system requirements:
http://framework.zend.com/manual/en/requirements.html
INSTALLATION
------------
Please see INSTALL.txt.
QUESTIONS AND FEEDBACK
----------------------
Online documentation can be found at http://framework.zend.com/manual.
Questions that are not addressed in the manual should be directed to the
appropriate mailing list:
http://framework.zend.com/wiki/display/ZFDEV/Mailing+Lists
If you find code in this release behaving in an unexpected manner or
contrary to its documented behavior, please create an issue in the Zend
Framework issue tracker at:
http://framework.zend.com/issues
If you would like to be notified of new releases, you can subscribe to
the fw-announce mailing list by sending a blank message to
fw-announce-subscribe@lists.zend.com.
LICENSE
-------
The files in this archive are released under the Zend Framework license.
You can find a copy of this license in LICENSE.txt.
ACKNOWLEDGEMENTS
----------------
The Zend Framework team would like to thank all the contributors to the Zend
Framework project, our corporate sponsor, and you, the Zend Framework user.
Please visit us sometime soon at http://framework.zend.com.

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Pdf.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -78,7 +78,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf class Zend_Pdf

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Action.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -35,7 +35,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Action extends Zend_Pdf_Target implements RecursiveIterator, Countable abstract class Zend_Pdf_Action extends Zend_Pdf_Target implements RecursiveIterator, Countable

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: GoTo.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -35,7 +35,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_GoTo extends Zend_Pdf_Action class Zend_Pdf_Action_GoTo extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: GoTo3DView.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_GoTo3DView extends Zend_Pdf_Action class Zend_Pdf_Action_GoTo3DView extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: GoToE.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_GoToE extends Zend_Pdf_Action class Zend_Pdf_Action_GoToE extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: GoToR.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_GoToR extends Zend_Pdf_Action class Zend_Pdf_Action_GoToR extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Hide.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Hide extends Zend_Pdf_Action class Zend_Pdf_Action_Hide extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: ImportData.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_ImportData extends Zend_Pdf_Action class Zend_Pdf_Action_ImportData extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: JavaScript.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_JavaScript extends Zend_Pdf_Action class Zend_Pdf_Action_JavaScript extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Launch.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Launch extends Zend_Pdf_Action class Zend_Pdf_Action_Launch extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Movie.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Movie extends Zend_Pdf_Action class Zend_Pdf_Action_Movie extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Named.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Named extends Zend_Pdf_Action class Zend_Pdf_Action_Named extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Rendition.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Rendition extends Zend_Pdf_Action class Zend_Pdf_Action_Rendition extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: ResetForm.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_ResetForm extends Zend_Pdf_Action class Zend_Pdf_Action_ResetForm extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: SetOCGState.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_SetOCGState extends Zend_Pdf_Action class Zend_Pdf_Action_SetOCGState extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Sound.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Sound extends Zend_Pdf_Action class Zend_Pdf_Action_Sound extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: SubmitForm.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_SubmitForm extends Zend_Pdf_Action class Zend_Pdf_Action_SubmitForm extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Thread.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Thread extends Zend_Pdf_Action class Zend_Pdf_Action_Thread extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Trans.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Trans extends Zend_Pdf_Action class Zend_Pdf_Action_Trans extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: URI.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -38,7 +38,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_URI extends Zend_Pdf_Action class Zend_Pdf_Action_URI extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Unknown.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Action */ /** Zend_Pdf_Action */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Action_Unknown extends Zend_Pdf_Action class Zend_Pdf_Action_Unknown extends Zend_Pdf_Action

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Annotation.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -32,7 +32,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Annotation abstract class Zend_Pdf_Annotation

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FileAttachment.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -38,7 +38,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Annotation_FileAttachment extends Zend_Pdf_Annotation class Zend_Pdf_Annotation_FileAttachment extends Zend_Pdf_Annotation

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Link.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -40,7 +40,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Annotation_Link extends Zend_Pdf_Annotation class Zend_Pdf_Annotation_Link extends Zend_Pdf_Annotation
@ -70,18 +70,19 @@ class Zend_Pdf_Annotation_Link extends Zend_Pdf_Annotation
/** /**
* Create link annotation object * Create link annotation object
* *
* @param float $x1 * @param float $x1
* @param float $y1 * @param float $y1
* @param float $x2 * @param float $x2
* @param float $y2 * @param float $y2
* @param Zend_Pdf_Target|string $target * @param Zend_Pdf_Target|string $target
* @return Zend_Pdf_Annotation_Link * @return Zend_Pdf_Annotation_Link
* @throws Zend_Pdf_Exception
*/ */
public static function create($x1, $y1, $x2, $y2, $target) public static function create($x1, $y1, $x2, $y2, $target)
{ {
if (is_string($target)) { if (is_string($target)) {
// require_once 'Zend/Pdf/Destination/Named.php'; // require_once 'Zend/Pdf/Destination/Named.php';
$destination = Zend_Pdf_Destination_Named::create($target); $target = Zend_Pdf_Destination_Named::create($target);
} }
if (!$target instanceof Zend_Pdf_Target) { if (!$target instanceof Zend_Pdf_Target) {
// require_once 'Zend/Pdf/Exception.php'; // require_once 'Zend/Pdf/Exception.php';

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Markup.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -37,7 +37,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Annotation_Markup extends Zend_Pdf_Annotation class Zend_Pdf_Annotation_Markup extends Zend_Pdf_Annotation

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Text.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -37,7 +37,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Annotation * @subpackage Annotation
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Annotation_Text extends Zend_Pdf_Annotation class Zend_Pdf_Annotation_Text extends Zend_Pdf_Annotation

View File

@ -14,7 +14,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $ * @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $
*/ */
@ -26,7 +26,7 @@
* page object at specified place. * page object at specified place.
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Canvas extends Zend_Pdf_Canvas_Abstract class Zend_Pdf_Canvas extends Zend_Pdf_Canvas_Abstract

View File

@ -14,7 +14,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $ * @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $
*/ */
@ -41,7 +41,7 @@
* page object at specified place. * page object at specified place.
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Canvas_Abstract implements Zend_Pdf_Canvas_Interface abstract class Zend_Pdf_Canvas_Abstract implements Zend_Pdf_Canvas_Interface

View File

@ -14,7 +14,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $ * @version $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $
*/ */
@ -25,7 +25,7 @@
* page object at specified place. * page object at specified place.
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
interface Zend_Pdf_Canvas_Interface interface Zend_Pdf_Canvas_Interface

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Cmap.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -47,7 +47,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Cmap abstract class Zend_Pdf_Cmap

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: ByteEncoding.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Cmap */ /** Zend_Pdf_Cmap */
@ -36,7 +36,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Cmap_ByteEncoding extends Zend_Pdf_Cmap class Zend_Pdf_Cmap_ByteEncoding extends Zend_Pdf_Cmap

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Static.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Cmap_ByteEncoding */ /** Zend_Pdf_Cmap_ByteEncoding */
@ -32,7 +32,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Cmap_ByteEncoding_Static extends Zend_Pdf_Cmap_ByteEncoding class Zend_Pdf_Cmap_ByteEncoding_Static extends Zend_Pdf_Cmap_ByteEncoding

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: SegmentToDelta.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Cmap */ /** Zend_Pdf_Cmap */
@ -33,7 +33,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Cmap_SegmentToDelta extends Zend_Pdf_Cmap class Zend_Pdf_Cmap_SegmentToDelta extends Zend_Pdf_Cmap

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: TrimmedTable.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Cmap */ /** Zend_Pdf_Cmap */
@ -33,7 +33,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Cmap_TrimmedTable extends Zend_Pdf_Cmap class Zend_Pdf_Cmap_TrimmedTable extends Zend_Pdf_Cmap

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Color.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -28,7 +28,7 @@
* others don't do it. That is defined in a subclasses. * others don't do it. That is defined in a subclasses.
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Color abstract class Zend_Pdf_Color

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Cmyk.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -31,7 +31,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Color_Cmyk extends Zend_Pdf_Color class Zend_Pdf_Color_Cmyk extends Zend_Pdf_Color

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: GrayScale.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -32,7 +32,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Color_GrayScale extends Zend_Pdf_Color class Zend_Pdf_Color_GrayScale extends Zend_Pdf_Color

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Html.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Color */ /** Zend_Pdf_Color */
@ -31,7 +31,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Color_Html extends Zend_Pdf_Color class Zend_Pdf_Color_Html extends Zend_Pdf_Color

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Rgb.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -32,7 +32,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Color_Rgb extends Zend_Pdf_Color class Zend_Pdf_Color_Rgb extends Zend_Pdf_Color

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Destination.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -34,7 +34,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Destination extends Zend_Pdf_Target abstract class Zend_Pdf_Destination extends Zend_Pdf_Target

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Explicit.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -33,7 +33,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Destination_Explicit extends Zend_Pdf_Destination abstract class Zend_Pdf_Destination_Explicit extends Zend_Pdf_Destination

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Fit.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -43,7 +43,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_Fit extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_Fit extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FitBoundingBox.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -43,7 +43,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_FitBoundingBox extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_FitBoundingBox extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FitBoundingBoxHorizontally.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -42,7 +42,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_FitBoundingBoxHorizontally extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_FitBoundingBoxHorizontally extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FitBoundingBoxVertically.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -41,7 +41,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_FitBoundingBoxVertically extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_FitBoundingBoxVertically extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FitHorizontally.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -41,7 +41,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_FitHorizontally extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_FitHorizontally extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FitRectangle.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -43,7 +43,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_FitRectangle extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_FitRectangle extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FitVertically.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -41,7 +41,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_FitVertically extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_FitVertically extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Named.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -39,7 +39,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_Named extends Zend_Pdf_Destination class Zend_Pdf_Destination_Named extends Zend_Pdf_Destination

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Unknown.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_Destination_Explicit */ /** Zend_Pdf_Destination_Explicit */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_Unknown extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_Unknown extends Zend_Pdf_Destination_Explicit

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Zoom.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -43,7 +43,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Destination * @subpackage Destination
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Destination_Zoom extends Zend_Pdf_Destination_Explicit class Zend_Pdf_Destination_Zoom extends Zend_Pdf_Destination_Explicit

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Element.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -24,7 +24,7 @@
* PDF file element implementation * PDF file element implementation
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Element abstract class Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Array.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Array extends Zend_Pdf_Element class Zend_Pdf_Element_Array extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Boolean.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Boolean extends Zend_Pdf_Element class Zend_Pdf_Element_Boolean extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Dictionary.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -32,7 +32,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Dictionary extends Zend_Pdf_Element class Zend_Pdf_Element_Dictionary extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Name.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Name extends Zend_Pdf_Element class Zend_Pdf_Element_Name extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Null.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Null extends Zend_Pdf_Element class Zend_Pdf_Element_Null extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Numeric.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Numeric extends Zend_Pdf_Element class Zend_Pdf_Element_Numeric extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Object.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Object extends Zend_Pdf_Element class Zend_Pdf_Element_Object extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Stream.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -34,7 +34,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Object_Stream extends Zend_Pdf_Element_Object class Zend_Pdf_Element_Object_Stream extends Zend_Pdf_Element_Object

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Reference.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -32,7 +32,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Reference extends Zend_Pdf_Element class Zend_Pdf_Element_Reference extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Context.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -26,7 +26,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Reference_Context class Zend_Pdf_Element_Reference_Context

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Table.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -25,7 +25,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Reference_Table class Zend_Pdf_Element_Reference_Table

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Stream.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -32,7 +32,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_Stream extends Zend_Pdf_Element class Zend_Pdf_Element_Stream extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: String.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -28,7 +28,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_String extends Zend_Pdf_Element class Zend_Pdf_Element_String extends Zend_Pdf_Element

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Binary.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Element_String_Binary extends Zend_Pdf_Element_String class Zend_Pdf_Element_String_Binary extends Zend_Pdf_Element_String

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: ElementFactory.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -28,7 +28,7 @@
* Responsibility is to log PDF changes * Responsibility is to log PDF changes
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_ElementFactory implements Zend_Pdf_ElementFactory_Interface class Zend_Pdf_ElementFactory implements Zend_Pdf_ElementFactory_Interface

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Interface.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** /**
@ -24,7 +24,7 @@
* Responsibility is to log PDF changes * Responsibility is to log PDF changes
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
interface Zend_Pdf_ElementFactory_Interface interface Zend_Pdf_ElementFactory_Interface

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Proxy.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_ElementFactory_Interface */ /** Zend_Pdf_ElementFactory_Interface */
@ -27,7 +27,7 @@
* Responsibility is to log PDF changes * Responsibility is to log PDF changes
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_ElementFactory_Proxy implements Zend_Pdf_ElementFactory_Interface class Zend_Pdf_ElementFactory_Proxy implements Zend_Pdf_ElementFactory_Interface

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Core * @subpackage Core
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Exception.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Exception */ /** Zend_Exception */
@ -45,7 +45,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Core * @subpackage Core
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Exception extends Zend_Exception class Zend_Pdf_Exception extends Zend_Exception

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FileParser.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** /**
@ -33,7 +33,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_FileParser abstract class Zend_Pdf_FileParser

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Font.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -36,7 +36,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_FileParser_Font extends Zend_Pdf_FileParser abstract class Zend_Pdf_FileParser_Font extends Zend_Pdf_FileParser

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: OpenType.php 25197 2013-01-09 11:32:22Z frosch $ * @version $Id$
*/ */
/** Zend_Pdf_FileParser_Font */ /** Zend_Pdf_FileParser_Font */
@ -45,7 +45,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_FileParser_Font_OpenType extends Zend_Pdf_FileParser_Font abstract class Zend_Pdf_FileParser_Font_OpenType extends Zend_Pdf_FileParser_Font

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: TrueType.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_FileParser_Font_OpenType_TrueType extends Zend_Pdf_FileParser_Font_OpenType class Zend_Pdf_FileParser_Font_OpenType_TrueType extends Zend_Pdf_FileParser_Font_OpenType

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Image.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -35,7 +35,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_FileParser_Image extends Zend_Pdf_FileParser abstract class Zend_Pdf_FileParser_Image extends Zend_Pdf_FileParser

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Png.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** @see Zend_Pdf_FileParser_Image */ /** @see Zend_Pdf_FileParser_Image */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_FileParser_Image_Png extends Zend_Pdf_FileParser_Image class Zend_Pdf_FileParser_Image_Png extends Zend_Pdf_FileParser_Image

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: FileParserDataSource.php 24806 2012-05-15 11:32:11Z adamlundrigan $ * @version $Id$
*/ */
/** /**
@ -35,7 +35,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_FileParserDataSource abstract class Zend_Pdf_FileParserDataSource

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: File.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_FileParserDataSource */ /** Zend_Pdf_FileParserDataSource */
@ -34,7 +34,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_FileParserDataSource_File extends Zend_Pdf_FileParserDataSource class Zend_Pdf_FileParserDataSource_File extends Zend_Pdf_FileParserDataSource

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: String.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Zend_Pdf_FileParserDataSource */ /** Zend_Pdf_FileParserDataSource */
@ -29,7 +29,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage FileParser * @subpackage FileParser
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_FileParserDataSource_String extends Zend_Pdf_FileParserDataSource class Zend_Pdf_FileParserDataSource_String extends Zend_Pdf_FileParserDataSource

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Ascii85.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -27,7 +27,7 @@
* ASCII85 stream filter * ASCII85 stream filter
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Filter_Ascii85 implements Zend_Pdf_Filter_Interface class Zend_Pdf_Filter_Ascii85 implements Zend_Pdf_Filter_Interface

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: AsciiHex.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -27,7 +27,7 @@
* AsciiHex stream filter * AsciiHex stream filter
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Filter_AsciiHex implements Zend_Pdf_Filter_Interface class Zend_Pdf_Filter_AsciiHex implements Zend_Pdf_Filter_Interface

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Compression.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -27,7 +27,7 @@
* ASCII85 stream filter * ASCII85 stream filter
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Filter_Compression implements Zend_Pdf_Filter_Interface abstract class Zend_Pdf_Filter_Compression implements Zend_Pdf_Filter_Interface

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Flate.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -27,7 +27,7 @@
* Flate stream filter * Flate stream filter
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Filter_Compression_Flate extends Zend_Pdf_Filter_Compression class Zend_Pdf_Filter_Compression_Flate extends Zend_Pdf_Filter_Compression

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Lzw.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -27,7 +27,7 @@
* LZW stream filter * LZW stream filter
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Filter_Compression_Lzw extends Zend_Pdf_Filter_Compression class Zend_Pdf_Filter_Compression_Lzw extends Zend_Pdf_Filter_Compression

View File

@ -14,16 +14,16 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Interface.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** /**
* PDF stream filter * PDF stream filter
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
interface Zend_Pdf_Filter_Interface interface Zend_Pdf_Filter_Interface

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: RunLength.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -27,7 +27,7 @@
* RunLength stream filter * RunLength stream filter
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Filter_RunLength implements Zend_Pdf_Filter_Interface class Zend_Pdf_Filter_RunLength implements Zend_Pdf_Filter_Interface

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Font.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -33,7 +33,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Fonts * @subpackage Fonts
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Font abstract class Zend_Pdf_Font

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Images * @subpackage Images
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Image.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -30,7 +30,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Images * @subpackage Images
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Image abstract class Zend_Pdf_Image

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: NameTree.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -30,7 +30,7 @@
* @todo implement lazy resource loading so resources will be really loaded at access time * @todo implement lazy resource loading so resources will be really loaded at access time
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_NameTree implements ArrayAccess, Iterator, Countable class Zend_Pdf_NameTree implements ArrayAccess, Iterator, Countable

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Outline.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -28,7 +28,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Outlines * @subpackage Outlines
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Outline implements RecursiveIterator, Countable abstract class Zend_Pdf_Outline implements RecursiveIterator, Countable

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Created.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -38,7 +38,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Outlines * @subpackage Outlines
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Outline_Created extends Zend_Pdf_Outline class Zend_Pdf_Outline_Created extends Zend_Pdf_Outline

View File

@ -15,9 +15,9 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Loaded.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -39,7 +39,7 @@
* *
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Outlines * @subpackage Outlines
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Outline_Loaded extends Zend_Pdf_Outline class Zend_Pdf_Outline_Loaded extends Zend_Pdf_Outline

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Page.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -38,7 +38,7 @@
* PDF Page * PDF Page
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Page extends Zend_Pdf_Canvas_Abstract class Zend_Pdf_Page extends Zend_Pdf_Canvas_Abstract

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Parser.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** Internally used classes */ /** Internally used classes */
@ -32,7 +32,7 @@
* PDF file parser * PDF file parser
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Parser class Zend_Pdf_Parser

View File

@ -15,16 +15,16 @@
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @subpackage Actions * @subpackage Actions
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: RecursivelyIteratableObjectsContainer.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
/** /**
* Iteratable objects container * Iteratable objects container
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_RecursivelyIteratableObjectsContainer implements RecursiveIterator, Countable class Zend_Pdf_RecursivelyIteratableObjectsContainer implements RecursiveIterator, Countable

View File

@ -14,9 +14,9 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Resource.php 24593 2012-01-05 20:35:02Z matthew $ * @version $Id$
*/ */
@ -24,7 +24,7 @@
* PDF file Resource abstraction * PDF file Resource abstraction
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
abstract class Zend_Pdf_Resource abstract class Zend_Pdf_Resource

View File

@ -14,7 +14,7 @@
* *
* @category Zend * @category Zend
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Image.php 20096 2010-01-06 02:05:09Z bkarwin $ * @version $Id: Image.php 20096 2010-01-06 02:05:09Z bkarwin $
*/ */
@ -35,7 +35,7 @@
* Content stream (drawing instructions container) * Content stream (drawing instructions container)
* *
* @package Zend_Pdf * @package Zend_Pdf
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
*/ */
class Zend_Pdf_Resource_ContentStream extends Zend_Pdf_Resource class Zend_Pdf_Resource_ContentStream extends Zend_Pdf_Resource

Some files were not shown because too many files have changed in this diff Show More