Home
last modified time | relevance | path

Searched refs:id (Results 1 – 25 of 33) sorted by relevance

12

/web-php/js/
H A Dusernotes.js8 var id = url.match(/\?id=(\d+)/)[1];
15 $("#Vu"+id).hide();
16 $("#Vd"+id).hide();
17 …$("#V"+id).html("<img src=\"/images/working.gif\" alt=\"Working...\" border=\"0\" title=\"Working.…
22 …$("#V"+id).html("<div style=\"float: left; width: 16px; height: 16px; background-image: url(/image…
29 …$("#V"+id).html("<div style=\"float: left; width: 16px; height: 16px; background-image: url(/image…
33 $("#Vu"+id).show();
34 $("#Vd"+id).show();
35 …$("#V"+id).html("<div style=\"float: left; width: 16px; height: 16px; background-image: url(/image…
38 $("#V"+id).fadeIn(500, "linear");
H A Dcommon.js372 var id = $(elt).text().replace(/^&?(\.\.\.)?\$?/g, '');
507 var id = url.match(/\?id=(\d+)/)[1];
516 $("#Vu" + id).hide();
517 $("#Vd" + id).hide();
540 $("#Vu" + id).show();
541 $("#Vd" + id).show();
549 $("#V" + id).fadeIn(500, "linear");
595 var id = this.id.replace('V', 'Hcom');
597 $('#' + id).css('opacity', v).data("opacity", v);
691 .attr('id', id)
[all …]
H A Dsearch.js26 Backend.prototype.addItem = function (id, name, description, tokens) { argument
27 this.elements[id] = {
29 id: id, property in Backend.addItem.elements
141 $.each(index, function (id, item) { argument
193 backends[type].addItem(id, item[0], item[1], tokens);
314 window.location = "/manual/" + options.language + "/" + item.id;
/web-php/src/News/
H A DEntry.php40 protected $id = ''; variable in phpweb\\News\\Entry
100 return $this->id;
104 if (empty($this->id)) {
105 $this->id = self::selectNextId();
115 … $archive = self::WEBROOT . "/archive/" . date('Y', $_SERVER['REQUEST_TIME']) . ".php#{$this->id}";
158 $dom->save(self::ARCHIVE_ENTRIES_ABS . $this->id . ".xml");
164 if (empty($this->id)) {
174 $first->setAttribute("href", "entries/{$this->id}.xml");
188 $id = $filename . "-" . $count;
189 $basename = "{$id}.xml";
[all …]
/web-php/include/
H A Dshared-manual.inc63 <section id="usernotes">
75 echo '<div id="allnotes">';
90 function manual_notes_load(string $id): array
92 $hash = substr(md5($id), 0, 16);
107 …$notes[$id] = new UserNote($id, $sect, $rate, $ts, $user, base64_decode($note, true), (int) $up, (…
122 …$name = ($note->id ? "\n <a href=\"#{$note->id}\" class=\"name\">$name</a><a class=\"genanchor\" …
144 <div id="Vu{$note->id}">
147 <div id="Vd{$note->id}">
150 <div class="tally" id="V{$note->id}" title="{$rate}">
192 <div class="text" id="Hcom{$note->id}">
[all …]
H A Dheader.inc97 <nav id="head-nav" class="navbar navbar-fixed-top">
100 <div id="mainmenu-toggle-overlay"></div>
101 <input type="checkbox" id="mainmenu-toggle">
118 <div id="flash-message"></div>
123 <nav id="trick"><div><?php doc_toc("en") ?></div></nav>
124 <div id="goto">
132 <div id="breadcrumbs" class="clearfix">
133 <div id="breadcrumbs-inner">
165 <div id="intro" class="clearfix">
173 <div id="layout" class="clearfix">
[all …]
H A Dlayout.inc373 $id = parse_url($item["id"]);
374 $id = $id["fragment"];
384 $permlink = "#" . $id;
398 "id" => $id,
409 …<h2 class="newstitle"><a id="{$id}" href="{$permlink}" rel="bookmark" class="bookmark">{$item["tit…
H A Dfooter.inc97 <a id="toTop" href="javascript:;"><span id="toTopHover"></span><img width="40" height="40" alt="To …
H A Dget-download.inc30 echo '<div id="mirrors-container">';
H A Dpregen-news.inc5 'id' => 'https://www.php.net/archive/2019.php#2019-09-05-1',
88 'id' => 'https://www.php.net/archive/2019.php#2019-08-30-1',
137 'id' => 'https://www.php.net/archive/2019.php#2019-08-29-2',
186 'id' => 'https://www.php.net/archive/2019.php#2019-08-29-1',
235 'id' => 'https://www.php.net/archive/2019.php#2019-08-22-1',
318 'id' => 'http://php.net/archive/2019.php#id2019-08-17-1',
1030 'id' => 'http://php.net/archive/2019.php#id2019-07-10-1',
1076 'id' => 'http://php.net/archive/2019.php#id2019-07-04-2',
1125 'id' => 'http://php.net/archive/2019.php#id2019-07-04-1',
1174 'id' => 'http://php.net/archive/2019.php#id2019-06-26-1',
[all …]
/web-php/releases/
H A Dfeed.php31 $id = "http://php.net/releases/" . str_replace(".", "_", $version) . ".php"; variable
33 $id = "http://qa.php.net/#$version"; variable
39 <id>{$id}</id>
78 <content src="{$id}" type="application/xhtml+xml"/>
/web-php/tests/Unit/UserNotes/
H A DSorterTest.php106 @list($id, $sect, $rate, $ts, $user, $note, $up, $down) = explode('|', $line);
107 …$notes[$id] = new UserNote($id, $sect, $rate, $ts, $user, base64_decode($note, true), (int) $up, (…
404 'id' => $note->id,
/web-php/
H A Dcal.php22 $id = isset($_GET['id']) ? (int) $_GET['id'] : 0; variable
35 if ($id) {
37 if ($event = load_event($id)) {
44 …$errors[] = "There is no event for specified id ('" . htmlentities($id, ENT_QUOTES | ENT_IGNORE, '…
256 function load_event($id) argument
269 if ($event !== false && $event['id'] == $id) {
358 $sdesc, $id, $ldesc, $url, $recur, $tipo, $sdato, $edato, $category
366 'id' => $id,
H A Dgit-php.php49 if (empty($_POST['id'])) {
51 } elseif (!preg_match('!^[a-z]\w+$!', $_POST['id']) || strlen($_POST['id']) > 16) {
82 "username" => $_POST['id'],
/web-php/.github/workflows/
H A Dpr-preview.yml24 id: fc
32 comment-id: ${{ steps.fc.outputs.comment-id }}
/web-php/conferences/
H A Dindex.php35 …$content .= '<h3 class="newstitle title"><a href="' . $MYSITE . $link . '" id="' . $id . '">' . $e…
/web-php/styles/
H A Dreleases.css2 * because the release page creates empty HTML anchors with id attributes above
4 a[id]:empty {
/web-php/src/UserNotes/
H A DSorter.php47 return $prio[$b->id] <=> $prio[$a->id];
70 $prio[$note->id] = ($this->calcVotePriority($note) * $this->voteWeight)
H A DUserNote.php8 public string $id, argument
/web-php/bin/
H A DcreateNewsEntry64 foreach($ids as $n => $id) {
65 fprintf(STDOUT, "\t%d: %-11s\t [%s]\n", $n, Entry::CATEGORIES[$id], $id);
/web-php/images/sponsors/
H A Dduocast.svg3 <polygon id="a" points="173.672 18.122 173.672 .328 78.256 .328 78.256 18.122"/>
7 <mask id="b" fill="white">
H A Dservercentral.svg8 <clipPath id="clip0_3_8">
/web-php/releases/8.1/
H A Drelease.inc38 <h2 class="php8-h2" id="enumerations">
85 <h2 class="php8-h2" id="readonly_properties">
140 <h2 class="php8-h2" id="first_class_callable_syntax">
177 <h2 class="php8-h2" id="new_in_initializers">
268 <h2 class="php8-h2" id="pure_intersection_types">
318 <h2 class="php8-h2" id="never_return_type">
369 <h2 class="php8-h2" id="final_class_constants">
420 <h2 class="php8-h2" id="explicit_octal_numeral_notation">
456 <h2 class="php8-h2" id="fibers">
497 <h2 class="php8-h2" id="array_unpacking_support_for_string_keyed_arrays">
[all …]
/web-php/releases/8.2/
H A Drelease.inc38 <h2 class="php8-h2" id="readonly_classes">
96 <h2 class="php8-h2" id="dnf_types">
147 <h2 class="php8-h2" id="null_false_true_types">
193 <h2 class="php8-h2" id="random_extension">
246 <h2 class="php8-h2" id="constants_in_traits">
284 <h2 class="php8-h2" id="deprecate_dynamic_properties">
344 … <h2 class="php8-h2" id="other_new_things"><?= message('new_classes_title', $lang) ?></h2>
357 … <h2 class="php8-h2" id="deprecations_and_bc_breaks"><?= message('bc_title', $lang) ?></h2>
/web-php/releases/8.3/
H A Drelease.inc38 <h2 class="php8-h2" id="typed_class_constants">
86 <h2 class="php8-h2" id="dynamic_class_constant_fetch">
129 <h2 class="php8-h2" id="override_attribute">
197 <h2 class="php8-h2" id="readonly_classes">
265 <h2 class="php8-h2" id="json_validate">
307 <h2 class="php8-h2" id="randomizer_get_bytes_from_string">
377 <h2 class="php8-h2" id="randomizer_get_float">
441 <h2 class="php8-h2" id="command_line_linter">
479 … <h2 class="php8-h2" id="other_new_things"><?= message('new_classes_title', $lang) ?></h2>
500 … <h2 class="php8-h2" id="deprecations_and_bc_breaks"><?= message('bc_title', $lang) ?></h2>

Completed in 121 milliseconds

12