Home
last modified time | relevance | path

Searched refs:items (Results 1 – 25 of 27) sorted by last modified time

12

/dokuwiki/vendor/geshi/geshi/
H A DLICENSE323 mouse-clicks or menu items--whatever suits your program.
/dokuwiki/inc/
H A Dtemplate.php1915 * @param array $items
1921 function tpl_toolsevent($toolsname, $items, $view = 'main')
1924 $data = ['view' => $view, 'items' => $items];
1929 foreach ($evt->data['items'] as $html) echo $html;
1827 tpl_toolsevent($toolsname, $items, $view = 'main') global() argument
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DRSSCreator091.php43 if (count($this->items) > 0
44 && !empty($this->items[0]->lat)
48 if (count($this->items) > 0
49 && isset($this->items[0]->additionalElements['xcal:dtstart'])
130 for ($i = 0; $i < count($this->items); $i++) {
133 htmlspecialchars(strip_tags((string) $this->items[$i]->title)),
136 $feed .= " <link>".htmlspecialchars((string) $this->items[$i]->link)."</link>\n";
137 $feed .= " <description>".$this->items[$i]->getDescription()."</description>\n";
139 $creator = $this->getAuthor($this->items[$i]->author, $this->items[
[all...]
H A DRSSCreator10.php26 if (!empty($this->items[0]->thumb)) {
29 if (!empty($this->items[0]->lat)) {
42 $feed .= " <items>\n";
44 for ($i = 0; $i < count($this->items); $i++) {
45 $feed .= " <rdf:li rdf:resource=\"".htmlspecialchars((string) $this->items[$i]->link)."\"/>\n";
48 $feed .= " </items>\n";
59 for ($i = 0; $i < count($this->items); $i++) {
60 $feed .= " <item rdf:about=\"".htmlspecialchars((string) $this->items[$i]->link)."\">\n";
62 if ($this->items[$i]->date != null) {
63 $itemDate = new FeedDate($this->items[
[all...]
H A DFeedCreator.php33 public $items = Array();
74 $this->items[] = $item;
32 public $items = Array(); global() variable in FeedCreator
H A DHTMLCreator.php50 * add strings to it while iterating over the items ($this->stylelessOutput .= ...)
111 for ($i = 0; $i < count($this->items); $i++) {
116 if ($this->items[$i]->title) {
117 if ($this->items[$i]->link) {
119 "<div class='".$this->stylePrefix."item_title'><a href='".$this->items[$i]->link."' class='".$this->stylePrefix.
121 htmlspecialchars(strip_tags($this->items[$i]->title)),
128 FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100).
132 if ($this->items[$i]->getDescription()) {
135 str_replace("]]>", "", str_replace("<![CDATA[", "", $this->items[$i]->getDescription())).
H A DKMLCreator.php31 if (!empty($_GET['simple']) && count($this->items) > 0) {
38 (($this->items[0]->thumb != "") ? "
63 for ($i = 0; $i < count($this->items); $i++) {
65 $this->items[$i]->description = "<b>".$this->items[$i]->description."</b><br/>
66 ".$this->items[$i]->licence."
67 <br/><br/><a href=\"".htmlspecialchars($this->items[$i]->link)."\">View Online</a>";
71 <description>".$this->items[$i]->getDescription(true)."</description>
72 <name>".FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)."</name>
75 <coordinates>".$this->items[
[all...]
H A DOPMLCreator.php46 for ($i = 0; $i < count($this->items); $i++) {
48 $title = htmlspecialchars(strip_tags(strtr($this->items[$i]->title, "\n\r", " ")));
52 if (isset($this->items[$i]->xmlUrl)) {
53 $feed .= " xmlUrl=\"".htmlspecialchars($this->items[$i]->xmlUrl)."\"";
56 if (isset($this->items[$i]->link)) {
57 $feed .= " url=\"".htmlspecialchars($this->items[$i]->link)."\"";
H A DPHPCreator.php30 for ($i = 0; $i < count($this->items); $i++) {
32 if ($this->items[$i]->guid != "") {
33 $feed .= " \$feedItem[$i]->id='".htmlspecialchars($this->items[$i]->guid)."';\n";
36 FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)
38 $feed .= " \$feedItem[$i]->link='".htmlspecialchars($this->items[$i]->link)."';\n";
39 $feed .= " \$feedItem[$i]->date=".htmlspecialchars($this->items[$i]->date).";\n";
40 if ($this->items[$i]->author != "") {
41 $feed .= " \$feedItem[$i]->author='".htmlspecialchars($this->items[$i]->author)."';\n";
42 if ($this->items[$i]->authorEmail != "") {
43 $feed .= " \$feedItem[$i]->authorEmail='".$this->items[
[all...]
H A DMBOXCreator.php69 for ($i = 0; $i < count($this->items); $i++) {
70 if ($this->items[$i]->author != "") {
71 $from = $this->items[$i]->author;
75 $itemDate = new FeedDate($this->items[$i]->date);
86 $feed .= "Subject: ".MBOXCreator::qp_enc(FeedCreator::iTrunc($this->items[$i]->title, 100))."\n";
88 $body = chunk_split(MBOXCreator::qp_enc($this->items[$i]->description));
H A DAtomCreator03.php60 for ($i = 0; $i < count($this->items); $i++) {
62 $feed .= " <title>".htmlspecialchars(strip_tags($this->items[$i]->title))."</title>\n";
64 $this->items[$i]->link
66 if ($this->items[$i]->date == "") {
67 $this->items[$i]->date = time();
69 $itemDate = new FeedDate($this->items[$i]->date);
73 $feed .= " <id>".htmlspecialchars($this->items[$i]->link)."</id>\n";
74 $feed .= $this->_createAdditionalElements($this->items[$i]->additionalElements, " ");
75 if ($this->items[$i]->author != "") {
77 $feed .= " <name>".htmlspecialchars($this->items[
[all...]
H A DAtomCreator10.php37 if (!empty($this->items[0]->lat)) {
71 for ($i = 0; $i < count($this->items); $i++) {
73 $feed .= " <title>".htmlspecialchars(strip_tags((string) $this->items[$i]->title))."</title>\n";
75 (string) $this->items[$i]->link
77 if ($this->items[$i]->date == "") {
78 $this->items[$i]->date = time();
80 $itemDate = new FeedDate($this->items[$i]->date);
84 $tempguid = $this->items[$i]->link;
85 if ($this->items[$i]->guid != "") {
86 $tempguid = $this->items[
[all...]
H A DPIECreator01.php31 for ($i = 0; $i < count($this->items); $i++) {
34 htmlspecialchars(strip_tags($this->items[$i]->title)),
37 $feed .= " <link>".htmlspecialchars($this->items[$i]->link)."</link>\n";
38 $itemDate = new FeedDate($this->items[$i]->date);
42 $feed .= " <id>".htmlspecialchars($this->items[$i]->guid)."</id>\n";
43 if ($this->items[$i]->author != "") {
45 $feed .= " <name>".htmlspecialchars($this->items[$i]->author)."</name>\n";
46 if ($this->items[$i]->authorEmail != "") {
47 $feed .= " <email>".$this->items[$i]->authorEmail."</email>\n";
52 $feed .= " <div xmlns=\"http://www.w3.org/1999/xhtml\">".$this->items[
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php408 $items = [];
413 foreach ($mf['items'] as $mf_item) {
443 if (isset($mf['items'][0]['properties']['name'][0])) {
444 $feed_title = $mf['items'][0]['properties']['name'][0];
446 if (isset($mf['items'][0]['properties']['author'][0])) {
447 $feed_author = $mf['items'][0]['properties']['author'][0];
450 $entries = $mf['items'];
491 foreach ($mf['items'] as $hcard) {
593 $items[] = ['child' => ['' => $item]];
617 'item' => $items]]]]];
[all...]
H A DSimplePie.php631 * @var integer Stores the number of items to return per-feed with multifeeds.
733 * Remove items that link back to this before destroying this object
738 if (!empty($this->data['items'])) {
739 foreach ($this->data['items'] as $item) {
742 unset($item, $this->data['items']);
978 * Set whether feed items should be sorted into reverse chronological order
1115 * Set which class SimplePie uses for handling feed items
1487 * Set the limit for items returned per-feed with multifeeds
1489 * @param integer $limit The maximum number of items to return.
2939 * Get the number of items i
[all...]
/dokuwiki/inc/Sitemap/
H A DMapper.php61 $items = [];
63 // build the sitemap items
70 $items[] = $item;
73 $eventData = ['items' => &$items, 'sitemap' => &$sitemap];
77 $event->result = io_saveFile($sitemap, (new Mapper())->getXML($items));
87 * @param $items array The SitemapItems that shall be included in the sitemap.
92 private function getXML($items)
97 foreach ($items as $item) {
86 getXML($items) global() argument
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DDB.php67 $items = $data->get_items();
70 if (!empty($items)) {
71 foreach ($items as $item) {
75 if (count($items_by_id) !== count($items)) {
77 foreach ($items as $item) {
111 if (isset($data->data['items'])) {
112 unset($data->data['items']);
H A DMySQL.php130 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'cache_data` (`id` TEXT CHARACTER SET utf8 NOT NULL, `items` SMALLINT NOT NULL DEFAULT 0, `data` BLOB NOT NULL, `mtime` INT UNSIGNED NOT NULL, UNIQUE (`id`(125)))');
138 if (!in_array($this->options['extras']['prefix'] . 'items', $db)) {
139 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'items` (`feed_id` TEXT CHARACTER SET utf8 NOT NULL, `id` TEXT CHARACTER SET utf8 NOT NULL, `data` MEDIUMBLOB NOT NULL, `posted` INT UNSIGNED NOT NULL, INDEX `feed_id` (`feed_id`(125)))');
141 trigger_error("Can't create " . $this->options['extras']['prefix'] . "items table, check permissions", \E_USER_WARNING);
161 '`' . $this->options['extras']['prefix'] . 'items` i ' .
179 $items = count($prepared[1]);
180 if ($items) {
181 $sql = 'UPDATE `' . $this->options['extras']['prefix'] . 'cache_data` SET `items` = :items, `data` = :data, `mtime` = :time WHERE `id` = :feed';
183 $query->bindValue(':items',
[all...]
/dokuwiki/
H A DCOPYING323 mouse-clicks or menu items--whatever suits your program.
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md38 // get your news items from somewhere, e.g. your database:
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt222 Also take a look at the [[doku>faq:lists|FAQ on list items]].
444 | any number | will be used as maximum number items to show, defaults to 8 |
445 | reverse | display the last items in the feed first |
449 | nosort | do not sort the items in the feed |
454 By default the feed will be sorted by date, newest items first. You can sort it by oldest first using the ''reverse'' parameter, or display the feed as is with ''nosort''.
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dpagetools.less112 // on hover or focus show all items
/dokuwiki/inc/Menu/
H A DMobileMenu.php11 * menus. This is a meta menu, aggregating the items from the other menus and offering a combined
17 * Returns all items grouped by view
35 * Get all items in a flat array
75 foreach ($this->getGroupedItems() as $tools => $items) {
76 if ($items !== []) {
78 foreach ($items as $item) {
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md274 * All items are now forced to have a timestamp. [#348](https://github.com/simplepie/simplepie/pull/348)
278 * Fixed the datatype for `items.data` to be more appropriate in when using MySQL cache. [#302](https://github.com/simplepie/simplepie/pull/302)

12