PHPePub\Core\EPub::setRelation PHP Method

setRelation() public method

A related resource. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
public setRelation ( string $relation )
$relation string
    function setRelation($relation)
    {
        if ($this->isFinalized) {
            return;
        }
        $this->relation = $relation;
    }