Home
last modified time | relevance | path

Searched +full:tag +(+path:plugin +path:tag) -(+path:plugin +path:tag +path:lang) (Results 1 – 25 of 174) sorted by relevance

1234567

/plugin/tag/syntax/
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 = $resolver->resolveId($tag);
[all …]
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 acces…
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 => $count) {
[all …]
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'], $data['title'], $data['dynamic']);
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);
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>';
/plugin/tag/
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>
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 the tag the link shall point to
[all …]
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: ' . hsc(str_replace('_', ' ', $INPUT->str('tag'))) . '</h1>' . DOKU_LF;
112 * Inserts the tag toolbar button
118 'icon' => '../../plugins/tag/images/tag-toolbar.png',
[all …]
Dplugin.info.txt1 base tag
5 name Tag Plugin
6 desc tag wiki pages
7 url https://www.dokuwiki.org/plugin:tag
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
DTag.php3 namespace Mpdf\Tag;
18 abstract class Tag class
113 $tag = get_class($this);
114 return strtoupper(str_replace('Mpdf\Tag\\', '', $tag));
/plugin/tagsections/syntax/
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_…
111 …$format = str_replace(array( "{TAG}", "{NAME}", "{RAW}" ), array( urlencode(cleanID($entry)), urle…
[all …]
/plugin/tag/conf/
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?
/plugin/combo/ComboStrap/Tag/
H A DBoxTag.php3 namespace ComboStrap\Tag;
25 const TAG = "box"; define in ComboStrap\\Tag\\BoxTag
28 // the logical tag applied (class)
29 const LOGICAL_TAG_ATTRIBUTE = "logical-tag";
30 const LOGICAL_TAG_DEFAUT = self::TAG;
31 // the html tag
32 const HTML_TAG_ATTRIBUTE = "html-tag";
34 // Tag that may make external http requests are not authorized
39 $tag = $attributes->getValue(self::HTML_TAG_ATTRIBUTE);
40 if (in_array($tag, self::NON_AUTHORIZED_HTML_TAG)) {
[all …]
H A DBarTag.php3 namespace ComboStrap\Tag;
40 $tag = "div";
46 $tag = self::HTML_SECTION_TAG;
48 return $tag;
50 return $tag;
107 $tag = BarTag::BAR_TAG;
108 $editButtonCall = EditButton::create("Edit $tag $id")
H A DBackgroundTag.php3 namespace ComboStrap\Tag;
22 * The {@link BackgroundTag background tag} does not render as HTML tag
50 * Function used in the special and enter tag
159 $imageTag = [syntax_plugin_combo_media::TAG, MediaMarkup::INTERNAL_MEDIA_CALL_NAME];
169 if ($tagName == syntax_plugin_combo_media::TAG) {
H A DRelatedTag.php3 namespace ComboStrap\Tag;
19 public const TAG = "related"; define in ComboStrap\\Tag\\RelatedTag
56 ->setLogicalTag(self::TAG);
84 $html .= $linkUtility->toAttributes(self::TAG)->toHtmlEnterTag("a");
H A DTableTag.php13 namespace ComboStrap\Tag;
34 const TAG = "table"; define in ComboStrap\\Tag\\TableTag
71 $renderer->doc .= TagAttributes::createEmpty(self::TAG)
H A DWebCodeTag.php3 namespace ComboStrap\Tag;
26 public const TAG = 'webcode'; define in ComboStrap\\Tag\\WebCodeTag
28 * The tag that have codes
33 syntax_plugin_combo_codemarkdown::TAG
42 public const CANONICAL = WebCodeTag::TAG;
62 return StyleAttribute::addComboStrapSuffix(WebCodeTag::TAG);
162 …d not be null for the code content " . $codeContent, LogUtility::LVL_MSG_WARNING, WebCodeTag::TAG);
211 * Tag is of an iframe (Web code) or a div (wiki markup)
237 $snippetSystem->attachCssInternalStyleSheet(WebCodeTag::TAG);
238 $snippetSystem->attachJavascriptFromComponentId(WebCodeTag::TAG);
[all …]
/plugin/tindexmenu/syntax/
Dtag.php4 * Info tIndexmenu tag: Tag a page with a sort number.
30 'name' => 'tIndexmenu tag',
31 'desc' => 'tIndexmenu tag plugin.',
/plugin/tag/_test/
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 c…
25 …$this->assertNotContains('tag:test2tag', p_wiki_xhtml('topic_page'), 'Page with tag and topic synt…
26 …$this->assertContains('topic_page', p_wiki_xhtml('topic_page'), 'Page with topic and tag syntax do…
28 …$this->assertContains('tag:mytag', p_wiki_xhtml('tagged_page'), 'Page with tag syntax doesn\'t con…
29 …$this->assertContains('tag:test2tag', p_wiki_xhtml('tagged_page'), 'Page with tag syntax doesn\'t …
30 …$this->assertNotContains('tag:topictag', p_wiki_xhtml('tagged_page'), 'Page with tag syntax contai…
[all …]
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');
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'
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DTag.php10 class Tag class
103 * @param string $tag The tag name
104 * @return \Mpdf\Tag\Tag
106 private function getTagInstance($tag) argument
108 $className = self::getTagClassName($tag);
126 * Returns the fully qualified name of the class handling the rendering of the given tag
128 * @param string $tag The tag name
131 public static function getTagClassName($tag) argument
167 $className = 'Mpdf\Tag\\';
168 $className .= isset($map[$tag]) ? $map[$tag] : ucfirst(strtolower($tag));
[all …]
/plugin/indexmenu/syntax/
Dtag.php6 * Info Indexmenu tag: Tag a page with a sort number.
/plugin/authucenter/lib/uc_client/control/
Dtag.php7 $Id: tag.php 1059 2011-03-01 07:25:09Z monkey $
21 $this->load('tag');
40 $data = $_ENV['tag']->get_tag_by_name($tagname);
54 $_ENV['tag']->formatcache($tagdata['appid'], $tagname);
73 $_ENV['tag']->formatcache($appid, $tagname);

1234567