Newscoop\Entity\Output\OutputSettingsIssue::getThemePath PHP Method

getThemePath() public method

Provides the path of the theme associated.
public getThemePath ( ) : Resource
return Newscoop\Entity\Resource The path of the theme.
    public function getThemePath()
    {
        return $this->themePath;
    }

Usage Example

 public function it_gets_theme_path(OutputSettingsIssue $issueOutput, Resource $resource)
 {
     $resource->getPath()->willReturn('publication_1/theme_1/');
     $issueOutput->getThemePath()->willReturn($resource);
     $this->getThemePath()->shouldReturn('publication_1/theme_1/');
 }
All Usage Examples Of Newscoop\Entity\Output\OutputSettingsIssue::getThemePath