Home
last modified time | relevance | path

Searched +full:tags -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 60) sorted by relevance

123

/dokuwiki/inc/Remote/OpenApiDoc/
H A DDocBlock.php18 /** @var string The parsed tags */
19 protected $tags = []; variable in dokuwiki\\Remote\\OpenApiDoc\\DocBlock
40 // get all tags
41 $tags = [];
44 $tags[$match[1]][] = trim($match[2]);
48 // strip the tags from the docblock
57 $this->tags = $tags;
91 * Get all tags
97 return $this->tags;
108 if (!isset($this->tags[$tag])) return [];
[all …]
H A DDocBlockMethod.php75 // refine from doc tags
76 foreach ($this->tags['param'] ?? [] as $param) {
85 $this->tags['param'] = $result;
105 foreach ($this->tags['return'] ?? [] as $return) {
110 $this->tags['return'] = $result;
H A DDocBlockProperty.php44 if (!isset($this->tags['var'])) return;
46 [$type, $description] = array_map(trim(...), sexplode(' ', $this->tags['var'][0], 2, ''));
/dokuwiki/inc/
H A DJpegMeta.php1590 $result = xml_parse_into_struct($parser, $data, $values, $tags);
1935 // Unknown Tags will be ignored!!!
2686 $tags = array();
2689 $tags[0x010E] = 'ImageDescription';
2690 $tags[0x010F] = 'Make';
2691 $tags[0x0110] = 'Model';
2692 $tags[0x0112] = 'Orientation';
2693 $tags[0x011A] = 'XResolution';
2694 $tags[0x011B] = 'YResolution';
2695 $tags[0x0128] = 'ResolutionUnit';
[all …]
H A Dtemplate.php338 // setup robot tags appropriate for different modes
409 * $data is an array of different header tags. Each tag can have multiple
413 * For tags having a body attribute specify the body data in the special
431 $attr['nonce'] = $nonce; // add nonce to inline script tags
1067 * If $tags is an array all given tags are tried until a
1076 * @param array|string $tags tag or array of tags to try
1083 function tpl_img_getTag($tags, $alt = '', $src = null) argument
1095 $info = cleanText($imgMeta->getField($tags));
1117 $tags = tpl_get_img_meta();
1120 foreach ($tags as $tag) {
[all …]
H A Dmedia.php31 * their CSS tags except pagenames won't be links.
183 $tags = [$field[0]];
184 if (isset($field[3]) && is_array($field[3])) $tags = array_merge($tags, $field[3]);
185 $value = tpl_img_getTag($tags, '', $src);
1208 * @param array $tags array with tags, first existing is returned
1213 function media_getTag($tags, $meta = false, $alt = '') argument
1216 $info = $meta->getField($tags);
1222 * Returns mediafile tags
1227 * @return array list of tags of the mediafile
1240 $tags = [];
[all …]
/dokuwiki/_test/tests/Form/
H A DButtonElementTest.php23 $this->assertEquals('Hello <b>World</b>', $input->text()); // tags were escaped
25 $b = $input->find('b'); // no tags found
41 $this->assertEquals('Hello World', $input->text()); // tags are stripped here
43 $b = $input->find('b'); // tags found
/dokuwiki/vendor/simplepie/simplepie/utils/PHPStan/
H A Dextension.neon5 tags:
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DParser.php291 if ($this->tags($tags) && $this->literal('{', false)) {
292 $tags = $this->fixTags($tags);
293 $this->pushBlock($tags);
312 foreach ($block->tags as $tag) {
320 foreach ($block->tags as $tag) {
338 if ($this->mixinTags($tags) &&
341 $tags = $this->fixTags($tags);
342 $this->append(['mixin', $tags, $argv, $suffix], $s);
366 protected function fixTags($tags) argument
368 // move @ tags out of variable namespace
[all …]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dtwig.php15 * - Added new tags, filters and functions
54 //Tags
204 1 => 'color: #0600FF;', //Tags
242 1 => 'http://twig.sensiolabs.org/doc/tags/{FNAMEL}.html',
H A Dmxml.php103 // opening tags
111 // closing tags
H A Dhtml4strict.php22 * - Removed the background colour from tags' styles
29 * * Eliminate empty tags that aren't allowed in HTML4 strict
H A Dhtml5.php22 * - Removed the background colour from tags' styles
29 * * Eliminate empty tags that aren't allowed in HTML4 strict
/dokuwiki/lib/scripts/
H A Dtoolbar.js173 tags;
180 tags = (new Array(8 - lvl)).join('=');
181 insertTags(edid, tags+' ', ' '+tags+"\n", props.text);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php32 …low tags to be properly stripped, and to switch between HTML and XHTML), this will also make it ea…
223 …* @param string[]|string|false $tags Set a list of tags to strip, or set empty string to use defau…
226 …public function strip_htmltags($tags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form… argument
228 if ($tags) {
229 if (is_array($tags)) {
230 $this->strip_htmltags = $tags;
232 $this->strip_htmltags = explode(',', $tags);
463 // Strip out HTML tags and attributes that might cause various security problems.
496 … // If image handling (caching, etc.) is enabled, cache and rewrite all the image tags.
H A DCopyright.php11 * Manages `<media:copyright>` copyright tags as defined in Media RSS
H A DItem.php279 if (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_10, 'summary')) &&
280 …his->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_type', [$tag…
282 … } elseif (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_03, 'summary')) &&
283 …his->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct_type', [$tag…
285 … } elseif (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_RSS_10, 'description')) &&
286 …($return = $this->sanitize($tags[0]['data'], \SimplePie\SimplePie::CONSTRUCT_MAYBE_HTML, $this->ge…
288 … } elseif (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_RSS_20, 'description')) &&
289 …($return = $this->sanitize($tags[0]['data'], \SimplePie\SimplePie::CONSTRUCT_HTML, $this->get_base…
291 … } elseif (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_DC_11, 'description')) &&
292 … ($return = $this->sanitize($tags[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT))) {
[all …]
H A DRating.php11 …* Handles `<media:rating>` or `<itunes:explicit>` tags as defined in Media RSS and iTunes RSS resp…
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedHtmlField.php43 // - valid html in $rawFieldContent and we enclose in CDATA tags
H A DFeedItem.php46 * if $value contains markup. This may be abused to embed tags not implemented by
/dokuwiki/inc/Form/
H A DCheckableElement.php67 * Note: allow HTML tags in label text
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DHTMLCreator.php8 * All output by this class is embedded in <div></div> tags to enable formatting
48 * In case of very simple output you may want to get rid of the style tags,
H A DJSONCreator.php48 $entry['tags'] = (array)$item->category;
/dokuwiki/lib/plugins/extension/
H A DGuiExtension.php248 $tags = $this->extension->getTags();
249 if ($tags) {
250 $list['tags'] = implode(', ', array_map(function ($tag) {
253 }, $tags));
/dokuwiki/inc/Ui/
H A DIndex.php101 * <li> tags for namespaces when displaying the page index

123