Newscoop\Article\SearchService::isIndexable PHP Method

isIndexable() public method

Test if article can be indexed
public isIndexable ( Newscoop\Search\DocumentInterface $article ) : boolean
$article Newscoop\Search\DocumentInterface
return boolean
    public function isIndexable(DocumentInterface $article)
    {
        return $article->isPublished() && $article->getLanguageId() > 0 && $article->getSectionId() > 0;
    }