Home
last modified time | relevance | path

Searched refs:tags (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
DTagProcessor.php22 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
47 $this->tags = $tags;
[all …]
/plugin/blogtng/helper/
Dtags.php15 private $tags = array(); variable in helper_plugin_blogtng_tags
38 * @param array $tags
40 public function setTags($tags) { argument
41 $this->tags = array_unique(array_filter(array_map('trim', $tags)));
50 return $this->tags;
64 $this->tags = [];
74 $this->tags = [];
78 $this->tags = [];
83 $tags = [];
85 $tags[] = $tag_from_db['tag'];
[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/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/
DDocBlockFactory.php91 list($templateMarker, $summary, $description, $tags) = $parts;
96 array_filter($this->parseTagBlock($tags, $context), function ($tag) {
217 * @param string $tags Tag block to parse.
222 private function parseTagBlock($tags, Types\Context $context) argument
224 $tags = $this->filterTagBlock($tags);
225 if (!$tags) {
229 $result = $this->splitTagBlockIntoTagLines($tags);
238 * @param string $tags
242 private function splitTagBlockIntoTagLines($tags) argument
245 foreach (explode("\n", $tags) as $tag_line) {
[all …]
/plugin/tag/
Dhelper.php159 * @param array $tags an array of tags
162 public function tagLinks($tags) { argument
163 if (empty($tags) || ($tags[0] == '')) {
168 foreach ($tags as $tag) {
362 * @param array $tags array of tags
369 … public function tagOccurrences($tags, $namespaces = null, $allTags = false, $isRecursive = null) { argument
372 $tags = array_map('trim', idx_getIndex('subject', '_w'));
374 $tags = $this->cleanTagList($tags);
382 $indexedPagesWithTags = $indexer->lookupKey('subject', $tags, array($this, 'tagCompare'));
389 foreach ($tags as $tag) {
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
DDescription.php57 private $tags; variable in phpDocumentor\\Reflection\\DocBlock\\Description
63 * @param Tag[] $tags
65 public function __construct($bodyTemplate, array $tags = []) argument
70 $this->tags = $tags;
80 return $this->tags;
97 $tags = [];
98 foreach ($this->tags as $tag) {
99 $tags[] = '{' . $formatter->format($tag) . '}';
102 return vsprintf($this->bodyTemplate, $tags);
/plugin/tag/syntax/
Dtag.php48 $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;
62 return $helper->parseTagList($tags);
80 $tags = $helper->tagLinks($data);
81 if (!$tags) {
86 . DOKU_TAB.$tags.DOKU_LF
Dcount.php48 …[$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;
97 if($tags[0] == '+') {
99 $occurrences = $helper->tagOccurrences($tags, $allowedNamespaces, true);
101 $occurrences = $helper->tagOccurrences($tags, $allowedNamespaces);
/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…
111 …} else if ((tok = this._extractString(this.tags.VARIABLE_END)) || (tok = this._extractString('-' +…
[all …]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
DXML.php64 $tags = explode($this->pathSeparator, $argument);
65 $this->tag->setTagName($tags[0]);
140 $tags = explode($this->pathSeparator, $tagPath);
141 if($this->tag->getTagName() == $tags[0]) {
142 if(count($tags) == 1) {
158 if($this->nodes[$arrKeys[$index]]->tag->getTagName() == $tags[1]) {
159 $newTagPath = implode($this->pathSeparator, array_slice($tags, 1));
183 $tags = explode($this->pathSeparator, $tagPath);
184 if($this->tag->getTagName() == $tags[0]) {
185 if(count($tags) == 1) {
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
DFileCommentSniff.php37 protected $tags = array( variable in PEAR_Sniffs_Commenting_FileCommentSniff
238 if (isset($this->tags[$name]) === false) {
242 … if ($this->tags[$name]['allow_multiple'] === false && isset($tagTokens[$name]) === true) {
268 foreach ($this->tags as $tag => $tagData) {
315 * @param array $tags The tokens for these tags.
319 protected function processCategory(PHP_CodeSniffer_File $phpcsFile, array $tags) argument
322 foreach ($tags as $tag) {
357 * @param array $tags The tokens for these tags.
361 protected function processPackage(PHP_CodeSniffer_File $phpcsFile, array $tags) argument
364 foreach ($tags as $tag) {
[all …]
/plugin/tagging/action/
H A Dmain.php111 $tags = $INPUT->arr('tag', (array)$INPUT->str('tag'));
117 foreach ($tags as $tag) {
132 $tags = array_map('hsc', $tags);
133 msg(sprintf($this->getLang('tagjmp_error'), implode(', ', $tags)), -1);
165 $tags = $hlp->findItems(['pid' => $id], 'tag');
166 $hlp->html_cloud($tags, 'tag', [$hlp, 'linkToSearch'], false);
180 … $tags = $hlp->findItems(['tag' => '*' . $hlp->getDB()->escape_string($search) . '*'], 'tag');
181 arsort($tags);
182 $tags = array_keys($tags);
186 echo json_encode(array_combine($tags, $tags));
[all …]
/plugin/tagging/script/
H A Dsearch.js54 function buildFilter(tags, filters) { argument
59 if (Object.keys(tags).length === 0 && filters.length > 0) {
61 tags[key] = 0;
65 for (const tag in tags) {
71 ${tag} (${tags[tag]})
92 const tags = [];
97 tags.push(tag);
101 return tags.sort().reduce(function (allTags, tag) {
161 const tags = getFiltersFromQuery();
162 if (tags.length === 0) {
[all …]
/plugin/skilltagicon/action/
Dicon.php42 $tags = plugin_load('helper', 'tagging');
43 if(is_null($tags)) {
47 $tags = $tags->findItems(array('pid' => $ID),'tag');
54 if (array_key_exists($easy_tag,$tags)) {
57 } elseif (array_key_exists($intermediate_tag,$tags)) {
60 } elseif (array_key_exists($expert_tag,$tags)) {
/plugin/tagging/
H A Dhelper.php140 * @param array $tags
143 public function replaceTags($id, $user, $tags) argument
158 foreach ($tags as $tag) {
222 * @param array $tags list of tags => count
227 public function cloudData($tags, $levels = 10) argument
229 $min = min($tags);
230 $max = max($tags);
239 foreach ($tags as $tag => $cnt) {
242 $tags[$tag] = $tresh;
245 $tags[$tag] = $levels;
[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';
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();
188 if (!$tags && $isNotExistingBlog) {
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Language/
DLanguageToFont.php10 $tags = explode('-', $llcc);
11 $lang = strtolower($tags[0]);
14 if (!empty($tags[1])) {
15 if (strlen($tags[1]) === 4) {
16 $script = strtolower($tags[1]);
18 $country = strtolower($tags[1]);
21 if (!empty($tags[2])) {
22 $country = strtolower($tags[2]);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/
DTagFilterList.php26 public $tags; variable in Google\\Service\\CloudHealthcare\\TagFilterList
31 public function setTags($tags) argument
33 $this->tags = $tags;
40 return $this->tags;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Container/
DNetworkTags.php26 public $tags; variable in Google\\Service\\Container\\NetworkTags
31 public function setTags($tags) argument
33 $this->tags = $tags;
40 return $this->tags;
/plugin/tagadd/
Daction.php191 * @param array $tags Array of tags
203 protected function categorysizeTags($tags) argument
206 foreach($tags as $nsTag){
226 foreach($nsTags_cat as $category=>$tags) {
228 …$form->_content[]='<h3><a href="#">'.$category.' ('.$catTagsCount.'/'.count($tags).')</a></h3><div…
229 foreach($tags as $tag){
247 protected function editWiki($tags) { argument
264 $newstr=implode(" ",$tags);
276 $diff =array_diff($oldtags_r,$tags);
278 $diff =array_diff($tags,$oldtags_r);
[all …]
/plugin/data/syntax/
Dcloud.php171 $tags = [];
177 $tags[$row['value']]['cnt'] = $row['cnt'];
178 $tags[$row['value']]['value'] = $row['value'];
180 $this->cloudWeight($tags, $min, $max, 5);
184 foreach ($tags as $tag) {
209 protected function cloudWeight(&$tags, $min, $max, $levels) argument
220 foreach ($tags as $tag) {
223 $tags[$tag['value']]['lvl'] = $tresh;
226 $tags[$tag['value']]['lvl'] = $levels;
231 ksort($tags);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Testing/
DXcodeVersion.php26 public $tags; variable in Google\\Service\\Testing\\XcodeVersion
35 public function setTags($tags) argument
37 $this->tags = $tags;
44 return $this->tags;
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
DOSM.php92 'tags' => $tags
124 'tags' => $tags,
194 (!$way['assigned'] || !empty($way['tags']))
195 && !isset($way['tags']['boundary'])
196 … && (!isset($way['tags']['natural']) || $way['tags']['natural'] !== 'mountain_range')
217 if (!$node['assigned'] || !empty($node['tags'])) {
/plugin/data-au/syntax/
Dcloud.php157 $tags = array();
163 $tags[$row['value']]['cnt'] = $row['cnt'];
164 $tags[$row['value']]['value'] = $row['value'];
166 $this->_cloud_weight($tags, $min, $max, 5);
170 foreach($tags as $tag) {
194 protected function _cloud_weight(&$tags, $min, $max, $levels) { argument
204 foreach($tags as $tag) {
207 $tags[$tag['value']]['lvl'] = $tresh;
210 $tags[$tag['value']]['lvl'] = $levels;
215 ksort($tags);
/plugin/tagging/helper/
H A Dquerybuilder.php15 protected $tags = []; variable in helper_plugin_tagging_querybuilder
66 if ($this->tags && $this->logicalAnd) $this->having = ' HAVING cnt = ' . count($this->tags);
88 * @param array $tags
90 public function setTags($tags) argument
92 $this->tags = $tags;
248 if ($this->tags) {
251 $tagCnt = count($this->tags);
253 foreach ($this->tags as $tag) {

12345678910>>...25