Ojs\JournalBundle\Entity\Journal::isIndexable PHP Метод

isIndexable() публичный Метод

Returns true if journal is indexable
public isIndexable ( ) : boolean
Результат boolean
    public function isIndexable()
    {
        if ($this->getStatus() == JournalStatuses::STATUS_PUBLISHED || $this->getStatus() == JournalStatuses::STATUS_NAME_CHANGED) {
            return true;
        }
        return false;
    }
Journal