| /dokuwiki/inc/Remote/OpenApiDoc/ |
| H A D | DocBlock.php | 18 /** @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 D | DocBlockMethod.php | 75 // 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 D | DocBlockProperty.php | 44 if (!isset($this->tags['var'])) return; 46 [$type, $description] = array_map(trim(...), sexplode(' ', $this->tags['var'][0], 2, ''));
|
| /dokuwiki/inc/ |
| H A D | JpegMeta.php | 1590 $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 D | template.php | 338 // 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 D | media.php | 31 * 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 D | ButtonElementTest.php | 23 $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 D | extension.neon | 5 tags:
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/ |
| H A D | Parser.php | 291 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 D | twig.php | 15 * - 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 D | mxml.php | 103 // opening tags 111 // closing tags
|
| H A D | html4strict.php | 22 * - Removed the background colour from tags' styles 29 * * Eliminate empty tags that aren't allowed in HTML4 strict
|
| H A D | html5.php | 22 * - Removed the background colour from tags' styles 29 * * Eliminate empty tags that aren't allowed in HTML4 strict
|
| /dokuwiki/lib/scripts/ |
| H A D | toolbar.js | 173 tags; 180 tags = (new Array(8 - lvl)).join('='); 181 insertTags(edid, tags+' ', ' '+tags+"\n", props.text);
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Sanitize.php | 32 …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 D | Copyright.php | 11 * Manages `<media:copyright>` copyright tags as defined in Media RSS
|
| H A D | Item.php | 279 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 D | Rating.php | 11 …* Handles `<media:rating>` or `<itunes:explicit>` tags as defined in Media RSS and iTunes RSS resp…
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/ |
| H A D | FeedHtmlField.php | 43 // - valid html in $rawFieldContent and we enclose in CDATA tags
|
| H A D | FeedItem.php | 46 * if $value contains markup. This may be abused to embed tags not implemented by
|
| /dokuwiki/inc/Form/ |
| H A D | CheckableElement.php | 67 * Note: allow HTML tags in label text
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | HTMLCreator.php | 8 * 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 D | JSONCreator.php | 48 $entry['tags'] = (array)$item->category;
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | GuiExtension.php | 248 $tags = $this->extension->getTags(); 249 if ($tags) { 250 $list['tags'] = implode(', ', array_map(function ($tag) { 253 }, $tags));
|
| /dokuwiki/inc/Ui/ |
| H A D | Index.php | 101 * <li> tags for namespaces when displaying the page index
|