attachmentTypes; } /** * Get all attachements of this element / Get the element's attachements with a specific type * * @param integer $type_id * if NULL, all attachements of this element will be returned * * if this is a number > 0, only attachements with this type ID will be returned * @param boolean $only_table_attachements if true, only attachements with "show_in_table == true" * * @return Attachment[] the attachements as a one-dimensional array of Attachement objects * * @throws Exception if there was an error */ public function getAttachments($type_id = null, bool $only_table_attachements = false) : array { if ($only_table_attachements || $type_id) { $attachements = $this->attachments; foreach ($attachements as $key => $attachement) { if (($only_table_attachements && (! $attachement->getShowInTable())) || ($type_id && ($attachement->getType()->getID() != $type_id))) { unset($attachements[$key]); } } return $attachements; } else { return $this->attachments; } } }