Home
last modified time | relevance | path

Searched refs:item (Results 51 – 75 of 1094) sorted by relevance

12345678910>>...44

/plugin/feed/
H A Dfeed.php134 $item = new FeedItem();
141 $item->title = $page['title'];
143 $item->title = $meta['title'];
145 $item->title = ucwords($id);
163 $item->description = $description;
166 $item->date = date('r', $page['date']);
170 $item->category = $page['cat'];
175 $item->category = $meta['subject'];
181 $item->author = $page['user'];
183 $item->author = $meta['creator'];
[all …]
/plugin/metaeditor/admin/
H A Deditor.php49 foreach($list as $item)
51 if($item['type'] == 'f' || $item['type'] == 'd')
53 if($item['type'] == 'd')
55 $out .= '<li>'.$item['id'];
56 $out .= '<ul>'.$this->recurseTree(str_replace(':', '/', $item['id'])).'</ul>';
60 … $out .= '<li data-jstree=\'{"icon":"'.DOKU_URL.'/lib/images/page.png"}\'>'.$item['id'];
/plugin/yql/
H A Dsyntax.php168 foreach ($json_result->query->results->$item_name as $item) {
178 if (!isset($item->$link)) {
183 if (!isset($item->$title)) {
188 if ($item->$title instanceof stdClass) {
194 if ($item->$link instanceof stdClass && !isset($item->$link->href)) {
199 if ($item->$link instanceof stdClass) {
200 $renderer->externallink($item->$link->href, (string)$item->$title);
202 $renderer->externallink($item->$link, (string)$item->$title);
207 if (!isset($item->$val)) {
212 if ($item->$val instanceof stdClass) {
[all …]
/plugin/simplenavi/
H A Dsyntax.php93 * @param bool $home Add namespace's start page as top level item?
109 // when home is requested, add the start page as top level item
135 foreach ($items as $idx => $item) {
136 if ($curLevel < $item['level']) {
137 // previous item was the parent
140 $curLevel = $item['level'];
141 $levels[$item['level']][$idx] = $item;
195 * @param array $item
199 public function cbList($item)
92 cbList($item) global() argument
111 cbListItem($item) global() argument
[all...]
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSEPAGE.php31 function init($item) argument
33 $item = trim($item);
34 if($this->type1($item))
37 if(preg_match("/(\d+|[ivx]+)/i", $item, $array))
43 function type1($item) argument
46 $array = preg_split("/--|-/", $item);
/plugin/socialshareprivacy2/SSP/scripts/
H A Djquery.socialshareprivacy.hackernews.js53 var item = data.results[0];
54 if (item) {
55 item = item.item;
56 var points = $.fn.socialSharePrivacy.formatNumber(item.points);
57 $code.find("a").attr("href", prot+"//news.ycombinator.com/item?id="+item.id);
59 item.points === 1 ?
/plugin/twistienav/
H A Dhelper.php80 foreach ($data as $datakey => $item) {
82 if (($useexclusions) && (in_array(noNS($item['id']), $this->exclusions))) {
86 … } elseif (($useexclusions) && (in_array(explode(":", $item['id'])[0], $this->nsignore))) {
90 …} elseif ((explode(":", $item['id'])[0] == "playground") or ($item['id'] == $ID) or ($item['id'] =…
95 if ($item['type'] == 'd') {
96 $target = $item['id'].':'.$conf['start'];
100 $target = $item['id'];
118 $title = @$title ?: hsc(noNS($item['id']));
/plugin/twistienav4bootstrap3/
H A Dhelper.php76 foreach ($data as $datakey => $item) {
78 if (($useexclusions) && (in_array(noNS($item['id']), $this->exclusions))) {
82 … } elseif (($useexclusions) && (in_array(explode(":", $item['id'])[0], $this->nsignore))) {
86 …} elseif ((explode(":", $item['id'])[0] == "playground") or ($item['id'] == $ID) or ($item['id'] =…
91 if ($item['type'] == 'd') {
92 $target = $item['id'].':'.$conf['start'];
96 $target = $item['id'];
111 $title = @$title ?: hsc(noNS($item['id']));
/plugin/sitemapnavi/
H A Dhelper.php196 public function listItemCallback($item) argument
198 $fullId = cleanID($item['id']);
204 if ($item['type'] === 'd') {
209 } elseif ($item['type'] === 'f') {
213 list($ext) = mimetype($item['file'],false);
215 …$ret .= '<a class="'.$class.'" href="'.ml($item['id']).'" target="_blank">' . $item['file'] . '</a…
220 public function liCallback($item) argument
224 $adjustedItemID = str_replace('::', ':', ':' . $item['id']);
229 if (!isset($item['type'])) {
232 if ($item['type'] === 'f') {
[all …]
/plugin/dirtylittlehelper/
H A Daction.php367 foreach( $dlh_left_side as $item){
368 …$topmenu .= '<a title="'.$item['menutext'].'" href="'.$item['link'].'">'.$item['inline_icon'].' '.…
373 foreach( $dlh_right_side as $item){
374 …$topmenu .= '<a title="'.$item['menutext'].'" href="'.$item['link'].'">'.$item['inline_icon'].' '.…
600 foreach( $dlh_left_side as $item){
601 …echo '<a title="'.$item['menutext'].'" href="'.$item['link'].'">'.$item['inline_icon'].' '. $item[…
606 foreach( $dlh_right_side as $item){
607 …echo '<a title="'.$item['menutext'].'" href="'.$item['link'].'">'.$item['inline_icon'].' '. $item[…
/plugin/indexmenu/syntax/
H A Dindexmenu.php804 * Callback to print a Indexmenu item
806 * User function for @param array $item item described by array with at least the entries
812 * @return string html of the content of a list item
820 public function formatIndexmenuItem($item)
826 if ($item['type'] == 'd' || $item['type'] == 'l') {
829 $link = $item['id'];
830 $more = 'idx=' . $item['id'];
832 if ($item['hn
800 _html_list_index($item) global() argument
942 _setorder($item) global() argument
[all...]
/plugin/pdb/classes/
H A D_NCBI.php54 function GetSummaryItem($item,&$xml){ argument
55 preg_match('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
59 function GetSummaryItems($item,&$xml){ argument
60 preg_match_all('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
64 function GetSearchItem($item,&$xml){ argument
65 preg_match("/<".$item.">([^<]+?)</",$xml,$m);
69 function GetSearchItems($item,&$xml){ argument
70 preg_match_all("/<".$item.">([^<]+?)</",$xml,$m);
/plugin/pubchem/classes/
H A D_NCBI.php54 function GetSummaryItem($item,&$xml){ argument
55 preg_match('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
59 function GetSummaryItems($item,&$xml){ argument
60 preg_match_all('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
64 function GetSearchItem($item,&$xml){ argument
65 preg_match("/<".$item.">([^<]+?)</",$xml,$m);
69 function GetSearchItems($item,&$xml){ argument
70 preg_match_all("/<".$item.">([^<]+?)</",$xml,$m);
/plugin/pubmed/classes/
H A D_NCBI.php54 function GetSummaryItem($item,&$xml){ argument
55 preg_match('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
59 function GetSummaryItems($item,&$xml){ argument
60 preg_match_all('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
64 function GetSearchItem($item,&$xml){ argument
65 preg_match("/<".$item.">([^<]+?)</",$xml,$m);
69 function GetSearchItems($item,&$xml){ argument
70 preg_match_all("/<".$item.">([^<]+?)</",$xml,$m);
/plugin/nspages/printers/
H A DprinterPictures.php22 foreach($tab as $item) {
23 $picture = $this->_getFirstImage($item['id']);
24 $url = wl($item['id']);
31 $anchorId = $this->buildAnchorId($item);
33 $this->renderer->toc_additem($anchorId, $item['nameToDisplay'], $this->renderer->getLastLevel() + 1);
36 $this->renderer->doc .= '<a href="'. $url .'" title="'.$item['nameToDisplay'].'">';
38 $this->renderer->doc .= '<span class="nspagesPicturesModeTitle">'.$item['nameToDisplay'];
40 $this->renderer->doc .= '</span><span class="nspagesPicturesDate">' . date('d/m/Y', $item['mtime']);
/plugin/qna/syntax/
H A Dtoc.php115 foreach ($pageToc as $item) {
116 $item['link'] = $id . '#' . $item['id'];
117 $toc[] = $item;
131 foreach ($toc as $item) {
132 if ($maxLevel < $item['level']) {
133 $maxLevel = $item['level'];
140 foreach ($toc as $item) {
141 $level[$item['level']]++;
157 foreach ($toc as &$item) {
158 $item['level'] -= $level[$item['level']];
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DTemplate.php465 * @param string $item The variable to return from the context
476 if (!\array_key_exists($item, $context)) {
484 return $context[$item];
491 * @param mixed $item The item to get from the array or object
507 $arrayItem = \is_bool($item) || \is_float($item) ? (int) $item : $item;
576 if (isset($object->$item) || \array_key_exists((string) $item, $object)) {
585 return $object->$item;
640 if (isset(self::$cache[$class][$item])) {
641 $method = self::$cache[$class][$item];
642 } elseif (isset(self::$cache[$class][$lcItem = strtolower($item)])) {
[all …]
/plugin/webdav/vendor/sabre/xml/lib/Serializer/
H A Dfunctions.php99 foreach ($items as $item) {
100 $writer->writeElement($childElementName, $item);
206 foreach ($value as $name => $item) {
212 standardSerializer($writer, $item);
214 } elseif (is_string($name) && is_array($item) && isset($item['attributes'])) {
219 $writer->writeAttributes($item['attributes']);
220 if (isset($item['value'])) {
221 $writer->write($item['value']);
229 $writer->write($item);
/plugin/icalevents/vendor/sabre/xml/lib/Serializer/
H A Dfunctions.php99 foreach ($items as $item) {
100 $writer->writeElement($childElementName, $item);
206 foreach ($value as $name => $item) {
212 standardSerializer($writer, $item);
214 } elseif (is_string($name) && is_array($item) && isset($item['attributes'])) {
219 $writer->writeAttributes($item['attributes']);
220 if (isset($item['value'])) {
221 $writer->write($item['value']);
229 $writer->write($item);
/plugin/rating/
H A Dsyntax.php79 foreach($list as $item) {
80 if (auth_aclcheck($item['page'],'',null) < AUTH_READ) continue;
81 if (!page_exists($item['page'])) continue;
84 if (strpos($item['page'],':') === false) {
85 $item['page'] = ':' . $item['page'];
87 $renderer->internallink($item['page']);
88 if ($data[1]['score'] === 'true') $renderer->cdata(' (' . $item['val'] . ')');
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DClover.php50 foreach ($report as $item) {
51 if (!$item instanceof File) {
58 $xmlFile->setAttribute('name', $item->getPath());
60 $classes = $item->getClassesAndTraits();
61 $coverage = $item->getCoverageData();
190 $linesOfCode = $item->getLinesOfCode();
195 $xmlMetrics->setAttribute('classes', $item->getNumClassesAndTraits());
196 $xmlMetrics->setAttribute('methods', $item->getNumMethods());
200 $xmlMetrics->setAttribute('statements', $item->getNumExecutableLines());
202 …$xmlMetrics->setAttribute('elements', $item->getNumMethods() + $item->getNumExecutableLines() /* +…
[all …]
/plugin/gtime/gtlib/asn1/tsp/
H A DTSPTSTInfo.php136 $item = $object->getObjectAt($i);
138 if ($item instanceof ASN1Sequence) {
143 $accuracy->decode($item);
147 } else if ($item instanceof ASN1Boolean) {
150 $this->ordering = $item->getValue();
152 } else if ($item instanceof ASN1Integer) {
155 $this->nonce = $item->getValue();
157 } else if ($item instanceof ASN1Tag) {
159 switch ($item->getTagValue()) {
165 $tsa->decode($item->getObject());
[all …]
H A DTSPAccuracy.php72 $item = $object->getObjectAt($i);
74 if ($item instanceof ASN1Integer) {
77 throw new GTException("Unexpected ASN1Integer: {$item->getValue()}");
81 throw new GTException("Unexpected ASN1Integer: {$item->getValue()}");
84 $this->seconds = $item->getValue();
86 } else if ($item instanceof ASN1Tag) {
88 switch ($item->getTagValue()) {
98 $millis = $item->getObjectAs(ASN1_TAG_INTEGER);
124 $micros = $item->getObjectAs(ASN1_TAG_INTEGER);
141 throw new GTException("Unexpected TAG value: {$item->getTagValue()}");
[all …]
/plugin/htmlabstract/
H A Dsyntax.php120 foreach ($items as $item)
123 $details = $item->getElementsByTagName('*');
152 $item = '<li>'."\n";
153 $item .= '<div class="li"'.$css.'>'."\n";
155 …$item .= '<a href="'.$element['link'].'" class="wikilink1" title="'.$element['title'].'">'.$elemen…
157 $item .= $this->getLang('author').$element['author'];
159 $item .= ' '.$this->formatDate($element['pubDate']);
160 $item .= "\n";
163 $item .= '</div>';
164 $item .= '</li>'."\n\n";
[all …]
/plugin/gtime/gtlib/asn1/cms/
H A DCMSSignedData.php103 foreach ($set->getObjects() as $item) {
106 $digestAlgorithm->decode($item);
120 $item = $object->getObjectAt($i);
122 if ($item instanceof ASN1Tag) {
124 switch ($item->getTagValue()) {
131 $set = $item->getObjectAs(ASN1_TAG_SET);
161 throw new GTException("Unknown tag value: {$item->getTagValue()}");
165 } else if ($item instanceof ASN1Set) {
169 if ($item->getObjectCount() == 0) {
173 foreach ($item->getObjects() as $info) {
[all …]

12345678910>>...44