Home
last modified time | relevance | path

Searched full:tags (Results 1 – 25 of 1550) sorted by relevance

12345678910>>...62

/plugin/diagramsnet/lib/templates/
Dindex.xml47 <template url="basic/classes.xml" title="classDiagram" libs="general;uml" tags="classDiagram;Classe…
48 <template url="basic/flowchart.xml" title="flowchart" libs="general;flowchart" tags="flowchart;Flow…
49 <template url="basic/orgchart.xml" title="orgChart" libs="general;basic;arrows" tags="orgChart;Orgc…
50 <template url="basic/swimlanes.xml" title="swimlaneDiagram" libs="general;flowchart;bpmn" tags="swi…
51 <template url="basic/erd.xml" title="entityRelationshipDiagram" libs="general;er" tags="entityRelat…
52 <template url="basic/sequence.xml" title="Sequence Diagram" tags="Sequence;Diagram;Sequence"/>
53 <template url="basic/kanban.xml" title="Simple Kanban Board" tags="Simple;Kanban;Board;Kanban"/>
54 <template url="basic/cross.xml" title="Cross-Functional Flowchart" tags="Cross-Functional;Flowchart…
55 <template url="business/accd.xml" name="Accd" libs="general" tags="Accd"/>
56 <template url="business/archimate.xml" name="Archimate" libs="general;archimate3" tags="Archimate"/>
[all …]
/plugin/combo/resources/dictionary/
H A Dmaterial-design-icon-meta.json1tags":["Developer \/ Languages"],"author":"Michael Richins","version":"4.0.96"},{"id":"E20665F3-53… array
/plugin/blogtng/helper/
Dtags.php15 private $tags = array(); variable in helper_plugin_blogtng_tags
36 * Set tags, filtered and unique
38 * @param array $tags
40 public function setTags($tags) { argument
41 $this->tags = array_unique(array_filter(array_map('trim', $tags)));
47 * @return array tags
50 return $this->tags;
54 * Load tags for specified pid
64 $this->tags = [];
68 FROM tags
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
DTagProcessor.php15 * Adds a tags array into record
22 private $tags; variable in Monolog\\Processor\\TagProcessor
25 * @param string[] $tags
27 public function __construct(array $tags = []) argument
29 $this->setTags($tags);
33 * @param string[] $tags
35 public function addTags(array $tags = []): self argument
37 $this->tags = array_merge($this->tags, $tags);
43 * @param string[] $tags
45 public function setTags(array $tags = []): self argument
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
DDescription.php15 use phpDocumentor\Reflection\DocBlock\Tags\Formatter;
16 use phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter;
22 …* A Description object can consist of plain text but can also include tags. A Description Formatte…
23 …* a body template with sprintf-style placeholders together with formatted tags in order to reconst…
31 …ctory will interpret the given body and create a body template and list of tags from them, and pass
49 * @see Description\Formatter for the formatting of the body and tags.
57 private $tags; variable in phpDocumentor\\Reflection\\DocBlock\\Description
60 …* Initializes a Description with its body (template) and a listing of the tags used in the body te…
63 * @param Tag[] $tags
65 public function __construct($bodyTemplate, array $tags = []) argument
[all …]
DStandardTagFactory.php15 use phpDocumentor\Reflection\DocBlock\Tags\Factory\StaticMethod;
16 use phpDocumentor\Reflection\DocBlock\Tags\Generic;
47 'author' => '\phpDocumentor\Reflection\DocBlock\Tags\Author',
48 'covers' => '\phpDocumentor\Reflection\DocBlock\Tags\Covers',
49 'deprecated' => '\phpDocumentor\Reflection\DocBlock\Tags\Deprecated',
50 // 'example' => '\phpDocumentor\Reflection\DocBlock\Tags\Example',
51 'link' => '\phpDocumentor\Reflection\DocBlock\Tags\Link',
52 'method' => '\phpDocumentor\Reflection\DocBlock\Tags\Method',
53 'param' => '\phpDocumentor\Reflection\DocBlock\Tags\Param',
54 'property-read' => '\phpDocumentor\Reflection\DocBlock\Tags\PropertyRead',
[all …]
/plugin/tagsections/
Dhelper.php33 'desc' => 'returns tags for given Regular Expression',
35 'tags (required)' => 'string',
37 'return' => array('tags' => 'array'),
41 'desc' => 'returns tags for given namespace',
44 'return' => array('tags' => 'array'),
48 'desc' => 'returns tags for given siteID',
51 'return' => array('tags' => 'array'),
58 * Search index for tags using preg_match
59 * @param tags
61 * return tags
[all …]
/plugin/tag/
Dhelper.php11 * Helper part of the tag plugin, allows to query and print tags
65 'desc' => 'returns the header for the tags column for pagelist',
77 'params' => ['tags' => 'array'],
92 'desc' => 'refines an array of pages with tags',
95 'refinement tags' => 'string'
101 'desc' => 'returns a list of tags with their number of occurrences',
103 'list of tags to get the occurrences for' => 'array',
105 … 'if all tags shall be returned (then the first parameter is ignored)' => 'boolean',
108 'return' => ['tags' => 'array'],
134 return $this->getLang('tags');
[all …]
/plugin/tag/syntax/
Dtag.php4 * belongs to. The links are marked as tags for Technorati and other services
7 * Usage: {{tag>category tags space separated}}
14 * Tag syntax plugin, allows to specify tags in a page
48 $tags = trim(substr($match, 6, -2)); // strip markup & whitespace
49 $tags = trim($tags, "\xe2\x80\x8b"); // strip word/wordpad breaklines
50 …$tags = preg_replace(['/[[:blank:]]+/', '/\s+/'], " ", $tags); // replace linebreaks and multip…
51 …$tags = preg_replace('/[\x00-\x1F\x7F]/u', '', $tags); // strip unprintable ascii code out of utf-…
53 if (!$tags) return false;
61 // split tags and returns for renderer
62 return $helper->parseTagList($tags);
[all …]
Dcount.php4 * belongs to. The links are marked as tags for Technorati and other services
7 * Usage: {{tag>category tags space separated}}
47 $match = trim(substr($match, 8, -2)); // get given tags
48 …[$tags, $nsstring] = array_pad(explode('&', $match,2),2,''); // split to tags and allo…
60 if (!$tags) {
61 $tags = '+';
70 $helper->parseTagList($tags),
86 list($tags, $allowedNamespaces) = $data;
96 // get tags and their occurrences
97 if($tags[0] == '+') {
[all …]
/plugin/tagfilter/
Dhelper.php32 'desc' => 'returns tags for given Regular Expression',
34 'tags (required)' => 'string',
36 'return' => ['tags' => 'array'],
40 'desc' => 'returns tags for given namespace',
43 'return' => ['tags' => 'array'],
47 'desc' => 'returns tags for given pageID',
50 'return' => ['tags' => 'array'],
57 * Search in Tagindex for tags that matches the tag pattern and are in requested namespace
59 * @param string $tagExpression regexp pattern of wanted tags e.g. "status:.*"
61 * @param bool $aclSafe if true, add only tags that are on readable pages
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/
DDocBlockFactory.php91 list($templateMarker, $summary, $description, $tags) = $parts;
96 array_filter($this->parseTagBlock($tags, $context), function ($tag) {
131 * Splits the DocBlock into a template marker, summary, description and block of tags.
138 …g[] containing the template marker (if any), summary, description and a string containing the tags.
142 …// Performance improvement cheat: if the first character is an @ then only tags are in this DocBlo…
143 …// method does not split tags so we return this verbatim as the fourth result (tags). This saves u…
153 * Splits the docblock into a template marker, summary, description and tags section.
162 * - Tags; the remaining characters
199 # 4. Extract the tags (anything that follows)
217 * @param string $tags Tag block to parse.
[all …]
/plugin/tagadd/
Daction.php84 //Action Save Tags
152 * Returns html string with the accordion to select the tags
153 * loads the tags from the given site and the tags of the given namespace
156 * @param string $ns namespace from which the tags should be loaded
179 if(count($nsTags)<1) return $html."<br><br>no Tags found";
190 * Categorysize Tags by the first part before a ':'
191 * @param array $tags Array of tags
203 protected function categorysizeTags($tags) argument
206 foreach($tags as $nsTag){
217 * @param array $nsTags Selectable tags
[all …]
/plugin/tagfilter/_test/
Dajax.test.php30 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags'));
56 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags'));
75 … $this->assertStringContainsString('id=test:plugin_tagfilter:tags:tagpage1', $response['text']);
76 … $this->assertStringContainsString('id=test:plugin_tagfilter:tags:tagpage2', $response['text']);
86 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags'));
98 … $this->assertFalse(strpos($response['text'], 'id=test:plugin_tagfilter:tags:tagpage1') !== false);
99 … $this->assertStringContainsString('id=test:plugin_tagfilter:tags:tagpage2', $response['text']);
109 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags'));
111 $INPUT->set('pagesearch', json_encode(array('test:plugin_tagfilter:tags:tagpage2')));
121 … $this->assertFalse(strpos($response['text'], 'id=test:plugin_tagfilter:tags:tagpage1') !== false);
[all …]
/plugin/bbs/
Dsyntax.php53 $this->tags = array();
90 else if ($s==1) {$this->tags[bright] = true;}
91 else if ($s==3) {$this->tags[italic] = true;}
92 else if ($s==5) {$this->tags[blink] = true;}
93 else if ($s==8) {$this->tags[hidden] = true;}
94 else if ($s>=30 && $s<=37) {$this->tags[fg] = $s;}
95 else if ($s>=40 && $s<=47) {$this->tags[bg] = $s;}
103 if ($this->tags[fg]) $c[] = ($this->tags[bright]?'fgb':'fgd').$this->tags[fg];
104 if ($this->tags[bg]) $c[] = 'bg'.$this->tags[bg];
105 if ($this->tags[italic]) $c[] = 'italic';
[all …]
/plugin/tagging/script/
H A Dsearch.js44 const $filterContainer = jQuery('#plugin__tagging-tags');
50 * @param {*} tags
54 function buildFilter(tags, filters) { argument
58 // when tag search has no results, build the filter dropdown anyway but from tags in query
59 if (Object.keys(tags).length === 0 && filters.length > 0) {
61 tags[key] = 0;
65 for (const tag in tags) {
71 ${tag} (${tags[tag]})
87 * Collects tags from results list
92 const tags = [];
[all …]
/plugin/diagramsnet/lib/plugins/
Dtags.js2 * Tags plugin.
4 * - Set tags via dialog
5 * - Toggle hidden tags
11 * - Export to PDF ignores current tags
12 * - Sync hiddenTags with removed tags
19 mxResources.parse('hiddenTags=Hidden Tags');
64 searchInput.setAttribute('placeholder', 'Type in the tags and press Enter to add them');
75 filterInput.setAttribute('placeholder', 'Filter tags');
106 * Returns true if tags exist and are all in lookup.
108 function matchTags(tags, lookup, tagCount) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataCatalog/Resource/
DProjectsLocationsEntryGroupsEntriesTags.php25 * The "tags" collection of methods.
29 * $tags = $datacatalogService->tags;
36 * `projects.locations.entryGroups.entries.tags.create`. * Or EntryGroupif the
37 * method name is `projects.locations.entryGroups.tags.create`. Note: The
40 * ons.entryGroups.entries.tags/create#path-parameters) and the [tag template]
44 * (tags.create)
47 * to. Tags can be attached to entries or entry groups. An entry can have up to
48 * 1000 attached tags. Note: The tag and its child resources might not be stored
61 * Deletes a tag. (tags.delete)
74 * Lists tags assigned to an Entry. The columns in the response are lowercased.
[all …]
DProjectsLocationsEntryGroupsTags.php25 * The "tags" collection of methods.
29 * $tags = $datacatalogService->tags;
36 * `projects.locations.entryGroups.entries.tags.create`. * Or EntryGroupif the
37 * method name is `projects.locations.entryGroups.tags.create`. Note: The
40 * ons.entryGroups.entries.tags/create#path-parameters) and the [tag template]
44 * (tags.create)
47 * to. Tags can be attached to entries or entry groups. An entry can have up to
48 * 1000 attached tags. Note: The tag and its child resources might not be stored
61 * Deletes a tag. (tags.delete)
74 * Lists tags assigned to an Entry. The columns in the response are lowercased.
[all …]
/plugin/blogtng/action/
Dedit.php76 $tags = $this->getPostedTags();
77 if (empty($tags)) {
78 $tags = $this->taghelper->getTags();
80 …if (!$tags && $isNotExistingBlog) $tags = helper_plugin_blogtng_tools::filterExplodeCSVinput($this…
87 if (in_array($val, $tags)) $data['checked'] = 'checked';
88 …$event->data->insertElement($pos++, form_makeCheckboxField('post-tags[]', $val, $val, '', '', $dat…
92 …$event->data->insertElement($pos, form_makeTextField('post-tags', join(', ', $tags), 'Tags', 'blog…
184 $tags = $this->getPostedTags();
185 if (empty($tags)) {
186 $tags = $this->taghelper->getTags();
[all …]
/plugin/tagging/
H A Dhelper.php53 * Return the user to use for accessing tags
134 * Create or Update tags of a page
140 * @param array $tags
143 public function replaceTags($id, $user, $tags) argument
158 foreach ($tags as $tag) {
176 * Get a list of Tags or Pages matching search criteria
222 * @param array $tags list of tags => count
227 public function cloudData($tags, $levels = 10) argument
229 $min = min($tags);
230 $max = max($tags);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/Resource/
DAccountsContainersWorkspacesTags.php25 * The "tags" collection of methods.
29 * $tags = $tagmanagerService->tags;
35 * Creates a GTM Tag. (tags.create)
50 * Deletes a GTM Tag. (tags.delete)
53 * d}/containers/{container_id}/workspaces/{workspace_id}/tags/{tag_id}
63 * Gets a GTM Tag. (tags.get)
66 * d}/containers/{container_id}/workspaces/{workspace_id}/tags/{tag_id}
77 * Lists all GTM Tags of a Container.
78 * (tags.listAccountsContainersWorkspacesTags)
95 * Reverts changes to a GTM Tag in a GTM Workspace. (tags.revert)
[all …]
/plugin/pagecss/vendor/csstidy-2.2.1/Docs/csstidy/
H A Dcsstidy.html154 <div class="tags">
157 <h4>Tags:</h4>
158 <div class="tags">
174 <div class="tags">
180 <h4>Tags:</h4>
181 <div class="tags">
190 <div class="tags">
204 <h4>Tags:</h4>
205 <div class="tags">
214 <div class="tags">
[all …]
/plugin/asciidocjs/node_modules/nunjucks/src/
Dlexer.js56 var tags = opts.tags || {};
57 this.tags = { property in Tokenizer.Tokenizer
58 BLOCK_START: tags.blockStart || BLOCK_START,
59 BLOCK_END: tags.blockEnd || BLOCK_END,
60 VARIABLE_START: tags.variableStart || VARIABLE_START,
61 VARIABLE_END: tags.variableEnd || VARIABLE_END,
62 COMMENT_START: tags.commentStart || COMMENT_START,
63 COMMENT_END: tags.commentEnd || COMMENT_END
85 …} else if ((tok = this._extractString(this.tags.BLOCK_END)) || (tok = this._extractString('-' + th…
88 // It is a requirement that start and end tags are composed of
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ArtifactRegistry/Resource/
DProjectsLocationsRepositoriesPackagesTags.php25 * The "tags" collection of methods.
29 * $tags = $artifactregistryService->tags;
35 * Creates a tag. (tags.create)
52 * Deletes a tag. (tags.delete)
65 * Gets a tag. (tags.get)
78 * Lists tags. (tags.listProjectsLocationsRepositoriesPackagesTags)
80 * @param string $parent The name of the parent resource whose tags will be
88 * central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Tags that are
90 * @opt_param int pageSize The maximum number of tags to return. Maximum page
103 * Updates a tag. (tags.patch)
[all …]

12345678910>>...62