FastFeed\Item::getIntro PHP Method

getIntro() public method

public getIntro ( ) : string
return string
    public function getIntro()
    {
        return $this->intro;
    }

Usage Example

Example #1
0
 /**
  * @param Item $item
  *
  * @return Item
  */
 protected function fixPaths(Item $item)
 {
     $url = new Url($item->getSource());
     $item->setIntro($this->getFixedText($item->getIntro(), $url->getFullHost()));
     $item->setContent($this->getFixedText($item->getContent(), $url->getFullHost()));
     return $item;
 }
All Usage Examples Of FastFeed\Item::getIntro