JournalOAI::identifierExists PHP Method

identifierExists() public method

public identifierExists ( $identifier )
    function identifierExists($identifier)
    {
        $recordExists = false;
        $articleId = $this->identifierToArticleId($identifier);
        if ($articleId) {
            $recordExists = $this->dao->recordExists($articleId, array($this->journalId));
        }
        return $recordExists;
    }