PHPePub\Core\Structure\OPF\Manifest::addItem PHP Method

addItem() public method

..
public addItem ( Item $item )
$item Item
    function addItem($item)
    {
        if ($item != null && is_object($item) && $item instanceof Item) {
            $this->items[] = $item;
        }
    }