/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/ |
H A D | TagProcessor.php | 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 47 $this->tags = $tags; [all …]
|
/plugin/blogtng/helper/ |
H A D | tags.php | 15 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 = []; 87 $this->tags = $tags; [all …]
|
/plugin/bbs/ |
H A D | syntax.php | 53 $this->tags = array(); 90 else if ($s==1) {$this->tags[bright] = true;} 92 else if ($s==5) {$this->tags[blink] = true;} 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'; 106 if ($this->tags[blink]) $c[] = 'blink'; 107 if ($this->tags[hidden]) $c[] = 'hidden'; 110 $this->tags[count]++; 115 $count = $this->tags[count]; [all …]
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/ |
H A D | DocBlockFactory.php | 217 * @param string $tags Tag block to parse. 224 $tags = $this->filterTagBlock($tags); 225 if (!$tags) { 238 * @param string $tags 242 private function splitTagBlockIntoTagLines($tags) argument 245 foreach (explode("\n", $tags) as $tag_line) { 260 private function filterTagBlock($tags) argument 262 $tags = trim($tags); 263 if (!$tags) { 267 if ('@' !== $tags[0]) { [all …]
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ |
H A D | Description.php | 57 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/ |
H A D | helper.php | 11 * 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'); 162 tagLinks($tags) global() argument 369 tagOccurrences($tags, $namespaces = null, $allTags = false, $isRecursive = null) global() argument 498 parseTagList($tags, $clean = false) global() argument 523 cleanTagList($tags) global() argument 691 _parseTagList($tags, $clean = false) global() argument 716 _cleanTagList($tags) global() argument [all...] |
/plugin/tag/syntax/ |
H A D | tag.php | 4 * 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 multiple spaces with one space character 51 $tags = preg_replace('/[\x00-\x1F\x7F]/u', '', $tags); // stri [all...] |
H A D | count.php | 4 * 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 allowed namespaces 60 if (!$tags) { 61 $tags = '+'; 70 $helper->parseTagList($tags), 86 list($tags, $allowedNamespaces) = $data; 96 // get tags an [all...] |
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/ |
H A D | XML.php | 65 $this->tag->setTagName($tags[0]); 141 if($this->tag->getTagName() == $tags[0]) { 142 if(count($tags) == 1) { 185 if(count($tags) == 1) { 225 if(sizeof($tags) == 1) { 254 if(sizeof($tags) == 1) 439 if(count($tags) > 1) { 440 $parentTagName = array_pop($tags); 508 if(sizeof($tags) == 1) 545 if(sizeof($tags) == 1) { [all …]
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/ |
H A D | FileCommentSniff.php | 37 protected $tags = array( variable in PEAR_Sniffs_Commenting_FileCommentSniff 238 if (isset($this->tags[$name]) === false) { 268 foreach ($this->tags as $tag => $tagData) { 315 * @param array $tags The tokens for these tags. 322 foreach ($tags as $tag) { 364 foreach ($tags as $tag) { 417 foreach ($tags as $tag) { 461 foreach ($tags as $tag) { 491 foreach ($tags as $tag) { 532 foreach ($tags as $tag) { [all …]
|
/plugin/tagging/action/ |
H A D | main.php | 94 $tags = $INPUT->arr('tag', (array)$INPUT->str('tag')); 100 foreach ($tags as $tag) { 115 $tags = array_map('hsc', $tags); 116 msg(sprintf($this->getLang('tagjmp_error'), join(', ', $tags)), -1); 120 * Save new/changed tags 137 '/(\s*,\s*)|(\s*,?\s*\n\s*)/', $data['tags'], -1, 144 $tags = $hlp->findItems(array('pid' => $id), 'tag'); 145 $hlp->html_cloud($tags, 'tag', array($hlp, 'linkToSearch'), false); 158 $tags [all...] |
/plugin/tagging/script/ |
H A D | search.js | 44 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/skilltagicon/action/ |
H A D | icon.php | 42 $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/dw2pdf/vendor/mpdf/mpdf/src/Language/ |
H A D | LanguageToFont.php | 10 $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/tagging/ |
H A D | helper.php | 47 * Return the user to use for accessing tags 105 * Create or Update tags of a page 111 * @param array $tags 115 public function replaceTags($id, $user, $tags) { argument 128 foreach ($tags as $tag) { 193 * @param array $tags list of tags => count 198 public function cloudData($tags, $levels = 10) { argument 199 $min = min($tags); 200 $max = max($tags); 234 html_cloud($tags, $type, $func, $wrap = true, $return = false, $ns = '') global() argument 557 deleteTags($tags, $namespace = '') global() argument [all...] |
/plugin/blogtng/action/ |
H A D | edit.php | 76 $tags = $this->getPostedTags(); 77 if (empty($tags)) { 78 $tags = $this->taghelper->getTags(); 184 $tags = $this->getPostedTags(); 185 if (empty($tags)) { 188 if (!$tags && $isNotExistingBlog) { 199 if(in_array($val, $tags)) { 208 ->val(join(', ', $tags)); 340 unset($tags[$n]); 371 $tags = helper_plugin_blogtng_tools::filterExplodeCSVinput($tags); [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/ |
H A D | TagFilterList.php | 26 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/ |
H A D | NetworkTags.php | 26 public $tags; variable in Google\\Service\\Container\\NetworkTags 31 public function setTags($tags) argument 33 $this->tags = $tags; 40 return $this->tags;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Testing/ |
H A D | XcodeVersion.php | 26 public $tags; variable in Google\\Service\\Testing\\XcodeVersion 35 public function setTags($tags) argument 37 $this->tags = $tags; 44 return $this->tags;
|
H A D | Orientation.php | 34 public $tags; variable in Google\\Service\\Testing\\Orientation 67 public function setTags($tags) argument 69 $this->tags = $tags; 76 return $this->tags;
|
/plugin/tagadd/ |
H A D | action.php | 191 * @param array $tags Array of tags 203 protected function categorysizeTags($tags) argument 206 foreach($tags as $nsTag){ 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); 279 $add = array_intersect($tags,$diff); 280 } else if(!empty($tags)){ [all …]
|
/plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
H A D | OSM.php | 27 * Since geoPHP doesn't support metadata, it cannot read and write OSM tags. 81 $tags = []; 87 $tags[$key] = $tag->attributes->getNamedItem('v')->nodeValue; 92 'tags' => $tags 112 $tags = []; 118 $tags[$key] = $tag->attributes->getNamedItem('v')->nodeValue; 124 'tags' => $tags, 194 (!$way['assigned'] || !empty($way['tags'])) [all...] |
/plugin/data-au/syntax/ |
H A D | cloud.php | 157 $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/data/syntax/ |
H A D | cloud.php | 171 $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) { 204 * @param $tags array ref The tags to weight ( tag => count) 209 protected function cloudWeight(&$tags, $min, $max, $levels) 220 foreach ($tags as $tag) { 223 $tags[ 200 _cloud_weight(& $tags, $min, $max, $levels) global() argument [all...] |
/plugin/tagging/helper/ |
H A D | querybuilder.php | 12 protected $tags = []; variable in helper_plugin_tagging_querybuilder 63 if ($this->tags && $this->logicalAnd) $this->having = ' HAVING cnt = ' . count($this->tags); 69 * Processes all parts of the query for fetching tags 85 * @param array $tags 87 public function setTags($tags) argument 89 $this->tags = $tags; 245 if ($this->tags) { 248 $tagCnt = count($this->tags); [all...] |