Newscoop\Entity\Theme::getName PHP Method

getName() public method

Provides the name of the theme, must be a user frendly name used for displaying it on the UI.
public getName ( ) : string
return string The name of the theme.
    public function getName()
    {
        return $this->name;
    }

Usage Example

 public function getName()
 {
     $this->__load();
     return parent::getName();
 }