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