Index
-
\setasign\SetaPDF2
-
Core
-
Type
- AbstractType
- BypassSecHandlerInterface
- Dictionary
- Exception
- IndirectObjectInterface
- IndirectReference
- OwnerInterface
- PdfArray
- PdfBoolean
- PdfCallback
- PdfDictionary
- PdfHexString
- PdfIndirectObject
- PdfIndirectReference
- PdfName
- PdfNull
- PdfNumeric
- PdfObjectStream
- PdfRaw
- PdfScalarValueInterface
- PdfStream
- PdfString
- PdfStringInterface
- PdfToken
-
Type
-
Core
setasign\SetaPDF2\Core\Type
PdfIndirectReference Class representing an indirect reference
File: /SetaPDF v2/Core/Type/PdfIndirectReference.php
Old class name (alias):
\SetaPDF_Core_Type_IndirectReference
Class hierarchy
Implements
Summary
Properties
$_objectId
The initial object id
$_objectIdent
The object identifier
$_observers
The Objects to notify on any change
This will be the PDF document or another value holding this one. Initially this will be an array.
$_owner
The owner instance
Static Methods
_ensureType()
mixed $value,
string $errorMessage,
$ensure = true
Ensure that a value is an instance of a specific PDF type.
Parameters
- $type : string
- $value : mixed
- $errorMessage : string
- $ensure
Exceptions
Throws Exception
ensureType()
Ensures that the passed value is a PdfIndirectReference instance.
Parameters
- $value : mixed
Exceptions
Throws Exception
ensureWithType()
mixed $value
Ensures that the passed value is an instance of the passed type.
Parameters
- $type : string
- $value : mixed
Exceptions
Throws Exception
is()
Checks if the type of a value is the expected one.
Indirect references will be evaluated if $ensure
is set to true
.
Parameters
- $type : string
- $value : mixed
- $ensure : bool
writePdfString()
Parses a php value to a pdf string and writes it into a writer.
PHP data type -> PDF data type
Null -> PdfNull
Boolean -> PdfBoolean
Integer/Double -> PdfNumeric
String -> PdfString or PdfName(if the string starts with "/")
Indexed array -> PdfArray
Associative array -> PdfDictionary
Parameters
- $writer : \SetaPDF_Core_WriteInterface
- $value : mixed
Exceptions
Throws \InvalidArgumentException
Methods
__construct()
int $gen = 0,
?\SetaPDF_Core_Type_Owner $owner = null
The constructor.
Parameters
- $objectId : int|\SetaPDF_Core_Type_IndirectObjectInterface
- $gen : int
- $owner : ?\SetaPDF_Core_Type_Owner
Exceptions
Throws \InvalidArgumentException
__sleep()
Implementation of __sleep.
We remove the observers from all elements because they will get read if they are waked up in an observed object.
attach()
Add an observer to the object.
Implementation of the Observer Pattern.
Parameters
- $observer : \SplObserver
deepClone()
Clone the object recursively in the context of a document.
Parameters
- $document : \SetaPDF_Core_Document
Exceptions
Throws \setasign\SetaPDF2\Core\Document\ObjectNotFoundException
Throws \setasign\SetaPDF2\Core\Exception
Throws \setasign\SetaPDF2\Core\Parser\Pdf\InvalidTokenException
Throws \setasign\SetaPDF2\Core\Reader\Exception
Throws Exception
Throws \setasign\SetaPDF2\Exception
detach()
Detach an observer from the object.
Implementation of the Observer Pattern.
Parameters
- $observer : \SplObserver
ensure()
array &$ensuredObjectsList = array ( )
Automatically resolves the indirect reference to the object.
The $forceObservation is used to forward/handle the observer pattern.
If it is set to true or this object is observed already the resolved object will get observed automatically.
If the parameter is set to false, the document is detached from the resolved object, so that it is only possible to use this object as a read only object.
Parameters
- $forceObservation : bool
If this is set to true, the resolved object will be observed automatically
- $ensuredObjectsList : array
A list of all ensured indirect objects to prevent recursion
Exceptions
Throws \setasign\SetaPDF2\Core\Document\ObjectNotFoundException
Throws \setasign\SetaPDF2\Core\Exception
Throws \setasign\SetaPDF2\Core\Parser\Pdf\InvalidTokenException
Throws \setasign\SetaPDF2\Core\Reader\Exception
Throws Exception
Throws IndirectReference\Exception
Throws \setasign\SetaPDF2\Exception
getObjectIdent()
Get the Object Identifier.
This identifier has nothing to do with the object numbers of a PDF document. They will be used to map an object to document related object numbers.
getValue()
Get the indirect object.
Exceptions
Throws \setasign\SetaPDF2\Core\Document\ObjectNotFoundException
Throws \setasign\SetaPDF2\Core\Exception
Throws \setasign\SetaPDF2\Core\Parser\Pdf\InvalidTokenException
Throws \setasign\SetaPDF2\Core\Reader\Exception
Throws Exception
Throws IndirectReference\Exception
Throws \setasign\SetaPDF2\Exception
notify()
Notifies all attached observers.
Implementation of the Observer Pattern.
Has to be called by any method that changes a value.
setValue()
Set the indirect object value.
Parameters
- $value : \SetaPDF_Core_Type_IndirectObject
Exceptions
Throws \InvalidArgumentException
toPdfString()
writeTo()
Writes the type as a formatted PDF string to the document.
Parameters
- $pdfDocument : \SetaPDF_Core_Document