Searched refs:key (Results 1 – 10 of 10) sorted by relevance
/web-bugs/www/rss/ |
H A D | xml.php | 3 foreach ($bug as $key => $value) { 4 if (is_int($key)) continue; 5 echo " <$key>", clean($value), "</$key>\n"; 10 foreach ($comment as $key => $value) { 11 if (is_int($key)) continue; 12 echo " <$key>", clean($value), "</$key>\n";
|
/web-bugs/src/Utils/ |
H A D | Cache.php | 53 if (!$this->validateKey($key)) { 58 $this->pool[$key] = $data; 68 public function has(string $key): bool argument 70 if (isset($this->pool[$key])) { 74 $file = $this->dir.'/'.$key.'.php'; 94 if (isset($this->pool[$key])) { 95 return $this->pool[$key]; 98 $file = $this->dir.'/'.$key.'.php'; 104 return $this->pool[$key]; 139 unset($this->pool[$key]); [all …]
|
H A D | Uploader.php | 83 public function upload(string $key): string argument 85 $files = isset($_FILES[$key]) ? $_FILES[$key] : [];
|
/web-bugs/www/ |
H A D | stats.php | 57 foreach ($titles as $key => $val) { 58 if (isset($pkg_tmp[$key]) && is_array($pkg_tmp[$key])) { 59 $pkg[$key] = array_merge($pkg_names, $pkg_tmp[$key]); 61 $pkg[$key] = $pkg_names; 108 foreach ($titles as $key => $val) { 110 echo bugstats($key, 'all') , "</td>\n"; 128 foreach ($titles as $key => $val) { 130 echo bugstats($key, $name), "</td>\n"; 218 foreach ($titles as $key => $val) { 219 $stat_head .= ' <th>' . sort_url($key) . "</th>\n";
|
H A D | search.php | 263 <?php foreach (PackageRepository::PROJECTS as $key => $value): ?> 264 …pecialchars($key, ENT_QUOTES); ?>" <?php if ($project === strtolower($key)): ?> selected="selected…
|
/web-bugs/templates/pages/ |
H A D | quick_fix_desc.php | 6 <?php foreach ($reasons as $key => $reason): ?> 17 <?php if (isset($variations[$key])): ?> 18 <?php foreach ($variations[$key] as $type => $variation): ?>
|
/web-bugs/src/Container/ |
H A D | Container.php | 45 public function set(string $key, $entry): void argument 47 $this->entries[$key] = $entry;
|
/web-bugs/src/Horde/Text/ |
H A D | Diff.php | 194 * @param integer $key The index of the line in the array. Not used. 196 public static function trimNewlines(&$line, $key) argument
|
/web-bugs/www/js/ |
H A D | Markdown.Converter.js | 96 set: function (key, value) { 97 this["s_" + key] = value; 99 get: function (key) { 100 return this["s_" + key];
|
/web-bugs/include/ |
H A D | functions.php | 658 foreach ($bug_groups as $key => $bug_group) { 662 array_unshift($bug_group[2], $key); 665 if ($show_any == 1 || $key != 'Any') {
|
Completed in 38 milliseconds