Piwik\Plugins\RssWidget\RssRenderer::showDescription PHP Метод

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

public showDescription ( $bool )
    public function showDescription($bool)
    {
        $this->showDescription = $bool;
    }

Usage Example

Пример #1
0
 public function render()
 {
     try {
         $rss = new RssRenderer('http://feeds.feedburner.com/Piwik');
         $rss->showDescription(true);
         return $rss->get();
     } catch (\Exception $e) {
         return $this->error($e);
     }
 }
All Usage Examples Of Piwik\Plugins\RssWidget\RssRenderer::showDescription