Home
last modified time | relevance | path

Searched +full:tag +(+path:plugin +path:tag) -(+path:plugin +path:tag +path:lang) (Results 151 – 172 of 172) sorted by path

1234567

/plugin/jukebox/id3/
H A Dmodule.tag.id3v1.php10 // module.tag.id3v1.php //
26 if (substr($id3v1tag, 0, 3) == 'TAG') {
78 if (substr($preid3v1, 0, 3) == 'TAG') {
81 // This goes as far as adding a new v1 tag *even if there already is one*
83 // A suspected double-ID3v1 tag has been detected, but it could be that
84 // the "TAG" identifier is a legitimate part of an APE or Lyrics3 tag
86 // an APE tag footer was found before the last ID3v1, assume false "TAG" synch
88 // a Lyrics3 tag footer was found before the last ID3v1, assume false "TAG" synch
91 …$ThisFileInfo['warning'][] = 'Duplicate ID3v1 tag detected - this has been known to happen with iT…
322 $ID3v1Tag = 'TAG';
H A Dmodule.tag.id3v2.php22 // Overall tag structure:
186 // b - Tag is an update
191 // d - Tag restrictions
718 // There may only be one 'IPL' frame in each tag
1368 // Offset to next tag $xx xx xx xx
1506 // There may only be one 'OWNE' frame in a tag
1619 // There may be several 'ENCR' frames in a tag,
1642 // There may be several 'GRID' frames in a tag,
1695 // There may only be one 'seek frame' in a tag
1697 // Minimum offset to next tag $xx xx xx xx
[all …]
/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/struct/types/
H A DTag.php11 class Tag extends AbstractMultiBaseType class
/plugin/tag/
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>
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;
/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/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/tagsections/syntax/
H A Dtag.php3 * Tag Plugin: displays list of keywords with links to categories this page
7 * Usage: {{tag>category tags space separated}}
23 * Tag syntax plugin, allows to specify tags in a page
28 if (plugin_isdisabled('tag') || (!$this->Htag = plugin_load('helper', 'tag'))) {
29 msg('tag plugin is required by tagsections plugin, but missing', -1);
47 $this->Lexer->addSpecialPattern('\{\{tag>.*?\}\}', $mode, 'plugin_tagsections_tag');
65 …// If we are directly after an opening Tag of a section level. This only applies if the option is …
104 if ( ($my = $this->loadHelper('tag')) && $this->getConf('useTagLinks')) {
105 …return '<span class="tagsections header tag '.implode(' ', $list).'">'.$my->tagLink($entry, array_…
112 $link = tpl_link($format, $name, 'rel="tag" title="'.$entry.'"', true);
[all …]
/plugin/tindexmenu/syntax/
H A Dtag.php4 * Info tIndexmenu tag: Tag a page with a sort number.
30 'name' => 'tIndexmenu tag',
31 'desc' => 'tIndexmenu tag plugin.',

1234567