Lines Matching refs:item
112 $item = $dom->createElementNs("http://www.w3.org/2005/Atom", "entry");
118 self::ce($dom, "title", $this->title, [], $item);
119 self::ce($dom, "id", $archive, [], $item);
120 self::ce($dom, "published", date(DATE_ATOM), [], $item);
121 self::ce($dom, "updated", date(DATE_ATOM), [], $item);
122 …ink", null, ['href' => "{$href}#{$this->id}", "rel" => "alternate", "type" => "text/html"], $item);
123 … self::ce($dom, "link", null, ['href' => $link, 'rel' => 'via', 'type' => 'text/html'], $item);
126 …$item->appendChild($dom->createElementNs("http://php.net/ns/news", "finalTeaserDate", date("Y-m-d"…
130 … self::ce($dom, "category", null, ['term' => $cat, "label" => self::CATEGORIES[$cat]], $item);
134 …$image = $item->appendChild($dom->createElementNs("http://php.net/ns/news", "newsImage", $this->im…
139 $content = self::ce($dom, "content", null, [], $item);
157 $dom->appendChild($item);
176 … $second = $arch->getElementsByTagNameNs("http://www.w3.org/2001/XInclude", "include")->item(0);