| 95 | | |
|---|
| 96 | | $item->setItemTitle($item_array['title']); |
|---|
| 97 | | $item->setItemLink($item_array['link']); |
|---|
| 98 | | $item->setItemDescription($item_array['description']); |
|---|
| 99 | | $item->setItemAuthorEmail($item_array['authorEmail']); |
|---|
| 100 | | $item->setItemAuthorName($item_array['authorName']); |
|---|
| 101 | | $item->setItemAuthorLink($item_array['authorLink']); |
|---|
| 102 | | $item->setItemPubdate($item_array['pubdate']); |
|---|
| 103 | | $item->setItemComments($item_array['comments']); |
|---|
| 104 | | $item->setItemUniqueId($item_array['uniqueId']); |
|---|
| 105 | | $item->setItemEnclosure($item_array['enclosure']); |
|---|
| 106 | | $item->setItemCategories($item_array['categories']); |
|---|
| | 95 | |
|---|
| | 96 | $item->setItemTitle(isset($item_array['title']) ? $item_array['title'] : ''); |
|---|
| | 97 | $item->setItemLink(isset($item_array['link']) ? $item_array['link'] : ''); |
|---|
| | 98 | $item->setItemDescription(isset($item_array['description']) ? $item_array['description'] : ''); |
|---|
| | 99 | $item->setItemAuthorEmail(isset($item_array['authorEmail']) ? $item_array['authorEmail'] : ''); |
|---|
| | 100 | $item->setItemAuthorName(isset($item_array['authorName']) ? $item_array['authorName'] : ''); |
|---|
| | 101 | $item->setItemAuthorLink(isset($item_array['authorLink']) ? $item_array['authorLink'] : ''); |
|---|
| | 102 | $item->setItemPubdate(isset($item_array['pubdate']) ? $item_array['pubdate'] : ''); |
|---|
| | 103 | $item->setItemComments(isset($item_array['comments']) ? $item_array['comments'] : ''); |
|---|
| | 104 | $item->setItemUniqueId(isset($item_array['uniqueId']) ? $item_array['uniqueId'] : ''); |
|---|
| | 105 | $item->setItemEnclosure(isset($item_array['enclosure']) ? $item_array['enclosure'] : ''); |
|---|
| | 106 | $item->setItemCategories(isset($item_array['categories']) ? $item_array['categories'] : ''); |
|---|