_parentObject = &$parent; } /** * Get top level parent indirect object. * * @return Zend_Pdf_Element_Object */ public function getParentObject() { return $this->_parentObject; } /** * Mark object as modified, to include it into new PDF file segment. * * We don't automate this action to keep control on PDF update process. * All new objects are treated as "modified" automatically. */ public function touch() { if ($this->_parentObject !== null) { $this->_parentObject->touch(); } } /** * Clean up resources, used by object */ public function cleanUp() { // Do nothing } }