We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eba7eb commit 4788a14Copy full SHA for 4788a14
1 file changed
include/shared-manual.inc
@@ -254,6 +254,28 @@ CONTRIBUTE;
254
]);
255
}
256
257
+function contributors($setup) {
258
+ if (!isset($_GET["contributors"])
259
+ || !isset($setup["history"]["contributors"])
260
+ || count($setup["history"]["contributors"]) < 1) {
261
+ return;
262
+ }
263
+
264
+ $contributorList = "<li>" . implode("</li><li>", $setup["history"]["contributors"]) . "</li>";
265
266
+ echo <<<CONTRIBUTORS
267
+<div class="book">
268
+ <h1 class="title">Output Buffering Control</h1>
269
+ The following have authored commits that contributed to this page:
270
+ <ul>
271
+ $contributorList
272
+ </ul>
273
+</div>
274
+CONTRIBUTORS;
275
+ manual_footer($setup);
276
+ exit;
277
+}
278
279
function autogen(string $text, string $lang) {
280
static $translations = [];
281
0 commit comments