1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<?php
namespace PicoFeed\Syndication;
use DOMElement;
/**
* Atom Item Builder
*
* @package PicoFeed\Syndication
* @author Frederic Guillot
*/
class AtomItemBuilder extends ItemBuilder
{
/**
* @var DOMElement
*/
protected $itemElement;
/**
* @var AtomHelper
*/
protected $helper;
/**
* Build item
*
* @access public
* @return DOMElement
*/
public function build()
{
$this->itemElement = $this->feedBuilder->getDocument()->createElement('entry');
$this->helper = new AtomHelper($this->feedBuilder->getDocument());
if (!empty($this->itemId)) {
$this->helper->buildId($this->itemElement, $this->itemId);
} else {
$this->helper->buildId($this->itemElement, $this->itemUrl);
}
$this->helper
->buildTitle($this->itemElement, $this->itemTitle)
->buildLink($this->itemElement, $this->itemUrl)
->buildDate($this->itemElement, $this->itemUpdatedDate, 'updated')
->buildDate($this->itemElement, $this->itemPublishedDate, 'published')
->buildAuthor($this->itemElement, $this->authorName, $this->authorEmail, $this->authorUrl)
;
if (!empty($this->itemSummary)) {
$this->helper->buildNode($this->itemElement, 'summary', $this->itemSummary);
}
if (!empty($this->itemContent)) {
$node = $this->feedBuilder->getDocument()->createElement('content');
$node->setAttribute('type', 'html');
$node->appendChild($this->feedBuilder->getDocument()->createCDATASection($this->itemContent));
$this->itemElement->appendChild($node);
}
return $this->itemElement;
}
}
|