Home
last modified time | relevance | path

Searched refs:FeedCreator (Results 1 – 16 of 16) sorted by relevance

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DRSSCreator091.php4 * RSSCreator091 is a FeedCreator that implements RSS 0.91 Spec, revision 3.
10 class RSSCreator091 extends FeedCreator
59 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars((string) $this->title), 100)."</title>\n";
72 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->image->title), 100)."</title>\n";
89 $feed .= " <copyright>".FeedCreator::iTrunc(
95 $feed .= " <managingEditor>".FeedCreator::iTrunc(
101 $feed .= " <webMaster>".FeedCreator::iTrunc(
114 $feed .= " <docs>".FeedCreator::iTrunc(htmlspecialchars($this->docs), 500)."</docs>\n";
120 $feed .= " <rating>".FeedCreator::iTrunc(htmlspecialchars($this->rating), 500)."</rating>\n";
132 $feed .= " <title>".FeedCreator
[all...]
H A DHTMLCreator.php4 * HTMLCreator is a FeedCreator that writes an HTML feed file to a specific
5 * location, overriding the createFeed method of the parent FeedCreator.
14 class HTMLCreator extends FeedCreator
85 FeedCreator::iTrunc(htmlspecialchars($this->image->title), 100).
99 FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</a></div>";
120 "item_title'".$targetInsert.">".FeedCreator::iTrunc(
128 FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100).
H A DKMLCreator.php4 * KMLCreator is a FeedCreator that implements a KML output, suitable for Keyhole/Google Earth
9 class KMLCreator extends FeedCreator
59 $feed .= " <name>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</name>
72 <name>".FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)."</name>
93 * Generate a filename for the feed cache file. Overridden from FeedCreator to prevent XML data types.
H A DPIECreator01.php4 * PIECreator01 is a FeedCreator that implements the emerging PIE specification,
11 class PIECreator01 extends FeedCreator
28 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</title>\n";
33 $feed .= " <title>".FeedCreator::iTrunc(
H A DPHPCreator.php4 * PHPCreator is a FeedCreator that implements a PHP output, suitable for an include
9 class PHPCreator extends FeedCreator
26 $feed .= " \$feedTitle='".addslashes(FeedCreator::iTrunc(htmlspecialchars($this->title), 100))."';\n";
36 FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)
H A DGPXCreator.php4 * GPXCreator is a FeedCreator that implements a GPX output, suitable for a GIS packages
9 class GPXCreator extends FeedCreator
31 $feed .= "<desc>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</desc>
H A DMBOXCreator.php4 * MBOXCreator is a FeedCreator that implements the mbox format
10 class MBOXCreator extends FeedCreator
86 $feed .= "Subject: ".MBOXCreator::qp_enc(FeedCreator::iTrunc($this->items[$i]->title, 100))."\n";
98 * Generate a filename for the feed cache file. Overridden from FeedCreator to prevent XML data types.
H A DAtomCreator03.php4 * AtomCreator03 is a FeedCreator that implements the atom specification,
14 * @see FeedCreator#additionalElements
18 class AtomCreator03 extends FeedCreator
H A DAtomCreator10.php4 * AtomCreator10 is a FeedCreator that implements the atom specification,
14 * @see FeedCreator#additionalElements
18 class AtomCreator10 extends FeedCreator
63 $feed .= " <rights>".FeedCreator::iTrunc(htmlspecialchars($this->copyright), 100)."</rights>\n";
H A DOPMLCreator.php4 * OPMLCreator is a FeedCreator that implements OPML 1.0.
10 class OPMLCreator extends FeedCreator
H A DFeedCreator.php4 * FeedCreator is the abstract base implementation for concrete
10 abstract class FeedCreator extends HtmlDescribable class
55 protected $_timeout; # lib/Creator/FeedCreator.php line 238
63 * the FeedCreator class used.
178 * to .xml. For example: echo $_SERVER["SCRIPT_NAME"]."\n"; echo FeedCreator::_generateFilename(); would produce:
227 * To effectively use caching, you should create the FeedCreator object and call this method
H A DRSSCreator10.php4 * RSSCreator10 is a FeedCreator that implements RDF Site Summary (RSS) 1.0.
10 class RSSCreator10 extends FeedCreator
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/
H A DUniversalFeedCreator.php5 * For general usage of a feed class, see the FeedCreator class
11 class UniversalFeedCreator extends FeedCreator
13 /** @var FeedCreator */
112 * @see FeedCreator::addItem()
147 * To effectively use caching, you should create the FeedCreator object and call this method
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedHtmlField.php51 $result = FeedCreator::iTrunc(htmlspecialchars($this->rawFieldContent), $this->truncSize);
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md132 renamed to FeedCreator, as it not only creates RSS anymore
/dokuwiki/
H A Dfeed.php13 use dokuwiki\Feed\FeedCreator;
68 $feed = (new FeedCreator($options))->build();