Newscoop\Entity\Article::getTopicNames PHP Method

getTopicNames() public method

Get topic names.
public getTopicNames ( ) : array
return array
    public function getTopicNames()
    {
        $names = array();
        foreach ($this->topics as $topic) {
            $names[$topic->getTopicId()] = $topic->getName($this->getLanguage());
        }
        return array_filter($names);
    }