Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 32) sorted by relevance

12

/dokuwiki/inc/Form/
H A DTagElement.php15 * @param string $tag
18 public function __construct($tag, $attributes = []) argument
20 parent::__construct('tag', $tag, $attributes);
H A DTagOpenElement.php16 * @param string $tag
19 public function __construct($tag, $attributes = []) argument
21 parent::__construct('tagopen', $tag, $attributes);
H A DTagCloseElement.php16 * @param string $tag
19 public function __construct($tag, $attributes = []) argument
21 parent::__construct('tagclose', $tag, $attributes);
H A DForm.php368 * @param string $tag
372 public function addTag($tag, $pos = -1) argument
374 return $this->addElement(new TagElement($tag), $pos);
382 * @param string $tag
386 public function addTagOpen($tag, $pos = -1) argument
388 return $this->addElement(new TagOpenElement($tag), $pos);
396 * @param string $tag
400 public function addTagClose($tag, $pos = -1) argument
402 return $this->addElement(new TagCloseElement($tag), $pos);
/dokuwiki/inc/Remote/OpenApiDoc/
H A DDocBlock.php103 * @param string $tag
106 public function getTag($tag) argument
108 if (!isset($this->tags[$tag])) return [];
109 return $this->tags[$tag];
/dokuwiki/inc/Ui/
H A DMediaDiff.php288 foreach ($rev1Tags as $key => $tag) {
289 if ($tag['value'] != $rev2Tags[$key]['value']) {
292 } elseif (!$tag['value'] || !$rev2Tags[$key]['value']) {
303 foreach ($tags as $tag) {
304 $value = cleanText($tag['value']);
306 echo '<dt>' . $lang[$tag['tag'][1]] . '</dt>';
308 if (!empty($tag['highlighted'])) echo '<strong>';
309 if ($tag['tag'][2] == 'date') {
314 if (!empty($tag['highlighted'])) echo '</strong>';
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php101 public function tagOpen($parser, $tag, $attr) argument
104 $this->_currentTag = $tag;
105 switch ($tag) {
109 $this->messageType = $tag;
138 public function tagClose($parser, $tag) argument
141 switch ($tag) {
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php386 foreach ($this->strip_htmltags as $tag) {
387 $this->strip_tag($tag, $document, $xpath, $type);
404 foreach ($this->add_attributes as $tag => $valuePairs) {
405 $this->add_attr($tag, $valuePairs, $document);
496 public function replace_urls($document, $tag, $attributes) argument
502 if (!is_array($this->strip_htmltags) || !in_array($tag, $this->strip_htmltags)) {
503 $elements = $document->getElementsByTagName($tag);
535 protected function strip_tag($tag, $document, $xpath, $type) argument
537 $elements = $xpath->query('body//' . $tag);
543 if (!in_array($tag, ['script', 'style'])) {
[all …]
H A DSimplePie.php2153 * @param string $tag Tag name
2156 public function get_feed_tags($namespace, $tag) argument
2160 … if (isset($this->data['child'][self::NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag])) {
2161 … return $this->data['child'][self::NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag];
2165 … if (isset($this->data['child'][self::NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag])) {
2166 … return $this->data['child'][self::NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag];
2170 … if (isset($this->data['child'][self::NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag])) {
2171 … return $this->data['child'][self::NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag];
2175 … if (isset($this->data['child'][self::NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag])) {
2176 … return $this->data['child'][self::NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag];
[all …]
H A DParser.php265 public function tag_open($parser, $tag, $attributes) argument
267 [$this->namespace[], $this->element[]] = $this->split_ns($tag);
326 public function tag_close($parser, $tag) argument
H A DSource.php79 public function get_source_tags($namespace, $tag) argument
81 if (isset($this->data['child'][$namespace][$tag])) {
82 return $this->data['child'][$namespace][$tag];
H A DItem.php142 * @param string $tag Tag name
145 public function get_item_tags($namespace, $tag) argument
147 if (isset($this->data['child'][$namespace][$tag])) {
148 return $this->data['child'][$namespace][$tag];
/dokuwiki/lib/plugins/extension/
H A DExtension.php828 * @param string|string[] $tag one or multiple keys to check
832 protected function getTag($tag, $default = '') argument
834 foreach ((array)$tag as $t) {
838 return $this->getRemoteTag($tag, $default);
844 * @param string|string[] $tag one or mutiple keys to check
848 protected function getRemoteTag($tag, $default = '') argument
851 foreach ((array)$tag as $t) {
H A DGuiExtension.php250 $list['tags'] = implode(', ', array_map(function ($tag) {
251 $url = $this->tabURL('search', ['q' => 'tag:' . $tag]);
252 return '<bdi><a href="' . $url . '">' . hsc($tag) . '</a></bdi>';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php234 $tag = $type & 0x1F;
235 if ($tag == 0x1F) {
236 $tag = 0;
245 $tag <<= 7;
251 $tag |= $temp;
308 'constant' => $tag,
337 'constant' => $tag,
347 $current += ['type' => $tag];
350 switch ($tag) {
495 $current['content'] = self::decodeTime(substr($content, $content_pos), $tag);
[all …]
/dokuwiki/conf/
H A Dinterwiki.conf30 amazon https://www.amazon.com/dp/{URL}?tag=splitbrain-20
31 amazon.de https://www.amazon.de/dp/{URL}?tag=splitbrain-21
/dokuwiki/inc/
H A Dtemplate.php425 foreach ($data as $tag => $inst) {
430 if ($nonce && $tag == 'script' && !empty($attr['_data'])) {
433 echo '<', $tag, ' ', buildAttributes($attr);
434 if (isset($attr['_data']) || $tag == 'script') {
435 echo '>', $attr['_data'] ?? '', '</', $tag, '>';
1120 foreach ($tags as $tag) {
1121 $label = $lang[$tag['langkey']];
1122 if (!$label) $label = $tag['langkey'] . ':';
1125 if ($tag['type'] == 'date') {
1126 echo dformat($tag['value']);
[all …]
H A Dform.php342 * @param string $tag Tag name.
348 function form_makeTag($tag, $attrs = array()) argument
350 $elem = array('_elem' => 'tag', '_tag' => $tag);
360 * @param string $tag Tag name.
366 function form_makeOpenTag($tag, $attrs = array()) argument
368 $elem = array('_elem' => 'opentag', '_tag' => $tag);
378 * @param string $tag Tag name.
383 function form_makeCloseTag($tag) argument
385 return array('_elem' => 'closetag', '_tag' => $tag);
H A DJpegMeta.php1757 $tag = $this->_getShort($data, $base + $offset, $isBigEndian);
1900 if (($mode == 'ifd0') && ($tag == 0x8769)) { // ExifIFDOffset
1902 } elseif (($mode == 'ifd0') && ($tag == 0x8825)) { // GPSIFDOffset
1904 } elseif (($mode == 'ifd1') && ($tag == 0x0111)) { // TIFFStripOffsets
1906 } elseif (($mode == 'ifd1') && ($tag == 0x0117)) { // TIFFStripByteCounts
1908 } elseif (($mode == 'ifd1') && ($tag == 0x0201)) { // TIFFJFIFOffset
1910 } elseif (($mode == 'ifd1') && ($tag == 0x0202)) { // TIFFJFIFLength
1912 } elseif (($mode == 'exif') && ($tag == 0xA005)) { // InteropIFDOffset
1918 if (isset($EXIFTags[$tag])) {
1919 $tagName = $EXIFTags[$tag];
[all …]
H A Dmedia.php1242 foreach ($fields as $tag) {
1244 if (!empty($tag[0])) $t = [$tag[0]];
1245 if (isset($tag[3]) && is_array($tag[3])) $t = array_merge($t, $tag[3]);
1247 $tags[] = ['tag' => $tag, 'value' => $value];
1271 foreach ($tags as $tag) {
1272 if ($tag['value']) {
1273 $value = cleanText($tag['value']);
1274 echo '<dt>' . $lang[$tag['tag'][1]] . '</dt><dd>';
1275 if ($tag['tag'][2] == 'date') echo dformat($value);
H A DDifferenceEngine.php976 function addWords($words, $tag = '') { argument
977 if ($tag != $this->_tag)
978 $this->_flushGroup($tag);
986 $this->_flushLine($tag);
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DParser.php278 if ($this->tag($tag, true) && $this->argumentDef($args, $isVararg) &&
281 $block = $this->pushBlock($this->fixTags([$tag]));
312 foreach ($block->tags as $tag) {
313 if (!is_string($tag) || $tag[0] != Constants::MPREFIX) {
320 foreach ($block->tags as $tag) {
321 if (is_string($tag)) {
322 $this->env->children[$tag][] = $block;
369 foreach ($tags as &$tag) {
370 if ($tag[0] == Constants::VPREFIX)
371 $tag[0] = Constants::MPREFIX;
[all …]
H A DLessc.php721 protected function expandParentSelectors(&$tag, $replace): int argument
723 $parts = explode("$&$", $tag);
729 $tag = implode(Constants::PARENT_SELECTOR, $parts);
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md91 Rotates the image according to the EXIF rotation tag if found.
/dokuwiki/_test/core/
H A DphpQuery-onefile.php791 public static function expandEmptyTag($tag, $xml){ argument
794 $pos = strpos($xml, "<$tag ", $indice);
798 $xml = substr_replace($xml, "></$tag>", $posCierre-1, 2);
1830 $ns = $tag = null;
1831 list($ns, $tag) = explode('|', $s);
1832 $XQuery .= "$ns:$tag";
4203 $tag = in_array($node->tagName, array('php', 'js'))
4206 $return[] = $tag

12