Home
last modified time | relevance | path

Searched +full:tag +(+path:plugin +path:tag) -(+path:plugin +path:tag +path:lang) (Results 1 – 25 of 172) sorted by last modified time

1234567

/plugin/struct/types/
H A DTag.php11 class Tag extends AbstractMultiBaseType class
/plugin/mikioplugin/icons/bootstrap-icons/svg/
H A Dtag.svg1 <svg class="bi bi-tag" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
/plugin/tag/_test/
H A Dtopic_and_tagrefine.test.php6 * Tests the tagRefine function of the tag plugin
15 $this->pluginsEnabled[] = 'tag';
20 '{{tag>mytag test2tag}}', 'Test'
24 '{{tag>negative_tag mytag}}',
29 '{{tag>third_tag}}',
64 $helper = plugin_load('helper', 'tag');
77 $helper = plugin_load('helper', 'tag');
H A Dtopic_sort.test.php6 * Tests the tagRefine function of the tag plugin
23 $this->pluginsEnabled[] = 'tag';
26 $conf['plugin']['tag']['sortkey'] = 'ns';
28 $this->helper = plugin_load('helper', 'tag');
34 '{{tag>mytag}}', 'Test'
H A Dtopic_tag.test.php4 * Tests the basic functionality of the tag and topic syntax
8 $this->pluginsEnabled[] = 'tag';
16 '{{tag>mytag test2tag}}', 'Test'
20 '{{topic>mytag}}'.DOKU_LF.DOKU_LF.'{{tag>topictag mytag}}'.DOKU_LF, 'Test'
24 $this->assertContains('tag:topictag', p_wiki_xhtml('topic_page'), 'Page with tag syntax doesn\'t contain tag output');
25 $this->assertNotContains('tag:test2tag', p_wiki_xhtml('topic_page'), 'Page with tag and topic syntax tag whic
[all...]
/plugin/tag/
H A Daction.php8 * Action part of the tag plugin, handles tag display and index updates
42 if ($helper = $this->loadHelper('tag')) {
54 * catch tag action
64 * Display the tag page
79 $tag = trim(str_replace($tagns.':', '', $INPUT->str('tag')));
83 if ($helper = $this->loadHelper('tag')) {
84 $pages = $helper->getTopic($ns, '', $tag);
101 print '<h1>TAG
[all...]
H A Dhelper.php11 * Helper part of the tag plugin, allows to query and print tags
17 * @var string namespace tag links point to
30 * @deprecated 2022-08-31 Not used/filled any more by tag plugin
70 'desc' => 'returns the tag links of a given page',
76 'desc' => 'generates tag links for given words',
86 'tag (required)' => 'string'
168 foreach ($tags as $tag) {
169 $links[] = $this->tagLink($tag);
175 * Returns the link for one given tag
177 * @param string $tag th
182 tagLink($tag, $title = '', $dynamic = false) global() argument
533 cleanTag($tag) global() argument
549 replacePlaceholders($tag) global() argument
[all...]
H A Dplugin.info.txt1 base tag
5 name Tag Plugin
6 desc tag wiki pages
7 url https://www.dokuwiki.org/plugin:tag
H A Dscript.js3 * so the user can't both include and exclude a tag
H A Dstyle.css21 background: transparent url(images/tag.gif) 0 2px no-repeat;
H A DREADME1 ====== Tag Plugin for DokuWiki ======
3 All documentation for the Tag Plugin is available online at:
5 * http://dokuwiki.org/plugin:tag
9 (c) 2012 - 2013 by Michael Hamann and the tag plugin team <michael@content-space.de>
/plugin/tag/conf/
H A Ddefault.php3 * Options for the Tag Plugin
5 $conf['namespace'] = 'tag'; // where should tag links point to? default: 'tag'
11 $conf['tags_list_css'] = 'tags'; // wich CSS style to use for tag list?
H A Dmetadata.php4 * Additions for the tag plugin
/plugin/tag/syntax/
H A Dcount.php3 * Tag Plugin: displays list of keywords with links to categories this page
7 * Usage: {{tag>category tags space separated}}
13 /** Count syntax, allows to list tag counts */
65 if(!($helper = $this->loadHelper('tag'))) {
94 if(!($helper = $this->loadHelper('tag'))) return false;
109 $renderer->doc .= '<th class="'.$col.'">'.$this->getLang('tag').'</th>';
H A Dsearchtags.php3 * Syntax plugin part for displaying a tag search form with results.
11 * Tagsearch syntax, displays a tag search form with results similar to the topic syntax
90 // get the tag input data
95 if ($helper = $this->loadHelper('tag')) {
122 * Return the search form for the namespace and the tag selection
161 // load the tag list - only tags that actually have pages assigned that the current user can access are listed
163 if ($my = $this->loadHelper('tag')) {
166 // sort tags by name ($tags is in the form $tag => $count)
191 // print tag checkboxes
192 foreach ($tags as $tag
276 isSelected($tag) global() argument
[all...]
H A Dtag.php3 * Tag Plugin: displays list of keywords with links to categories this page
7 * Usage: {{tag>category tags space separated}}
14 * Tag syntax plugin, allows to specify tags in a page
35 $this->Lexer->addSpecialPattern('\{\{tag>.*?\}\}', $mode, 'plugin_tag_tag');
39 * Handle matches of the tag syntax
57 if (!$helper = $this->loadHelper('tag')) {
76 if (!$helper = $this->loadHelper('tag')) return false;
113 // add references if tag page exists
114 foreach ($data as $tag) {
119 $tag
[all...]
H A Dtagpage.php3 * Tag Plugin: Display a link to the listing of all pages with a certain tag.
11 /** Tagpage syntax, allows to link to a given tag */
53 $match = trim(substr($match, 10, -2)); // get given tag
56 [$tag, $flag] = array_pad(explode('&', $match[0], 2), 2, '');
58 $params['tag'] = trim($tag);
72 if($data['tag'] === '') return false;
82 if(!$helper = $this->loadHelper('tag')) {
86 $renderer->doc .= $helper->tagLink($data['tag'],
[all...]
H A Dtopic.php3 * Tag Plugin, topic component: displays links to all wiki pages with a certain tag
10 * Topic syntax, displays links to all wiki pages with a certain tag
52 list($ns, $tag) = array_pad(explode('?', $match), 2, '');
54 if (!$tag) {
55 $tag = $ns;
67 return [$ns, trim($tag), $flags];
79 list($ns, $tag, $flags) = $data;
98 if ($helper = $this->loadHelper('tag')) {
100 $pages = $helper->getTopic($ns, '', $tag);
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DA.php3 namespace Mpdf\Tag;
5 class A extends Tag
H A DAcronym.php3 namespace Mpdf\Tag;
H A DAddress.php3 namespace Mpdf\Tag;
H A DAnnotation.php3 namespace Mpdf\Tag;
5 class Annotation extends Tag
H A DArticle.php3 namespace Mpdf\Tag;
H A DAside.php3 namespace Mpdf\Tag;
H A DB.php3 namespace Mpdf\Tag;

1234567