Searched refs:data (Results 1 – 7 of 7) sorted by relevance
/web-bugs/src/Repository/ |
H A D | PackageRepository.php | 51 $data = $statement->fetchAll(); 53 return $this->getNested($data); 75 $data = $statement->fetchAll(); 77 return $this->getNested($data); 83 private function getNested(array $data): array argument 89 foreach ($data as &$node) { 102 foreach ($tree as $data) { 103 if (isset($data['children'])) { 104 $packages[$data['name']] = [$data['long_name'], $data['disabled'], []]; 114 foreach ($data['children'] as $child) { [all …]
|
H A D | BugRepository.php | 91 $data = []; 95 $data[$row['assign']][] = $row; 98 return $data;
|
/web-bugs/src/Utils/ |
H A D | Cache.php | 51 public function set(string $key, $data, int $ttl = self::TTL): void argument 57 $item = [time() + $ttl, serialize($data)]; 58 $this->pool[$key] = $data; 80 $data = require $file; 82 if (is_array($data) && isset($data[0]) && is_int($data[0]) && time() < $data[0]) { 101 $data = require $file; 102 $this->pool[$key] = unserialize($data[1]);
|
/web-bugs/www/js/ |
H A D | search.js | 2 var fnFormatSearchResult = function(value, data, currentValue) { argument 15 onSelect: function(value, data){ $('#assigned_user').val(users[value]["username"]); }, argument
|
H A D | jquery.autocomplete-min.js | 10 …data,currentValue){var pattern="("+currentValue.replace(reEscape,"\\$1")+")";return value.replace(… argument
|
/web-bugs/docs/ |
H A D | container.md | 8 uploading files, data generators, API clients, and similar. 41 $data = $repository->getData(); 53 $data = $container->get(Repository::class)->getData();
|
/web-bugs/www/ |
H A D | lstats.php | 53 foreach ($pseudo_pkgs as $category => $data) {
|
Completed in 7 milliseconds