Newscoop\Entity\ArticleType::getName PHP Метод

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

Provides the name of the article type.
public getName ( ) : string
Результат string The name of the theme.
    public function getName()
    {
        return $this->name;
    }

Usage Example

 public function getName()
 {
     if ($this->__isInitialized__ === false) {
         return $this->_identifier["name"];
     }
     $this->__load();
     return parent::getName();
 }
All Usage Examples Of Newscoop\Entity\ArticleType::getName