IMP_Compose::addRelatedAttachment PHP Méthode

addRelatedAttachment() public méthode

Add an attachment referred to in a related part.
public addRelatedAttachment ( IMP_Compose_Attachment $atc_ob, DOMElement $node, string $attribute )
$atc_ob IMP_Compose_Attachment
$node DOMElement Node element containg the related reference.
$attribute string Element attribute containing the related reference.
    public function addRelatedAttachment(IMP_Compose_Attachment $atc_ob, DOMElement $node, $attribute)
    {
        $atc_ob->related = true;
        $node->setAttribute(self::RELATED_ATTR, $attribute . ';' . $atc_ob->id);
    }