Skip to content

Commit 6de8126

Browse files
committed
docs(consent_manager): credits-seite aus git-history ergänzen
1 parent 1e0cf11 commit 6de8126

3 files changed

Lines changed: 70 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,8 @@ MIT Lizenz - siehe [LICENSE.md](LICENSE.md)
841841
842842
**Contributors:** [Siehe GitHub](https://github.com/FriendsOfREDAXO/consent_manager/graphs/contributors)
843843
844+
**Vollständige Historie (aus Git-History):** [credits.md](credits.md)
845+
844846
**Besonderer Dank an:**
845847
- [Christoph Böcker](https://github.com/Christophboecker) - Code refactoring, bug fixing und mehr
846848
- [Thomas Blum](https://github.com/tbaddade/) - Code aus Sprog AddOn

credits.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Credits
2+
3+
Vielen Dank an alle, die jemals am AddOn `consent_manager` mitgearbeitet haben. Ohne eure Hilfe, Ideen, Reviews, Tests und Fixes wäre dieses Projekt nicht da, wo es heute ist. ❤️
4+
5+
Diese Liste basiert auf der Git-History (`git shortlog -sne --all`, Stand: 2026-03-06).
6+
7+
## Mitwirkende (nach Commits)
8+
9+
- Thomas Skerbis — 539
10+
- aeberhard — 308 (Alias: Andreas Eberhard, Eberhard)
11+
- Ingo Winter — 89
12+
- Ingo Winter — 47 (Alias: IngoWinter)
13+
- Norbert Micheel — 40 (Alias: tyrant88)
14+
- Tobias Krais — 23
15+
- Alexander Walther — 19 (Alias: alxndr-w)
16+
- Marco Hanke — 13
17+
- Stefan Brinkers — 8
18+
- Stefan Brinkers — 5
19+
- 36pixel — 4
20+
- ischfr — 3
21+
- Thomas Blum — 3
22+
- Peter Schulze — 3
23+
- Jürgen Weiss — 3
24+
- Chris A — 3
25+
- tobias — 2
26+
- christophboecker — 2
27+
- Yves Torres — 2
28+
- Robert Rupf — 2
29+
- Peter Schulze — 2
30+
- Peter Bickel — 2
31+
- Oliver — 2
32+
- Falko Müller — 2
33+
- Dirk Schürjohann — 2
34+
- voezdemir — 1
35+
- ritzfritz — 1
36+
- Thomas Rolinger — 1
37+
- Sven — 1
38+
- Simon Krull — 1
39+
- Phillip Möller — 1
40+
- Oliver Hörold — 1
41+
- Nico G — 1
42+
- Michael Schuler — 1
43+
- Ingo Winter — 1
44+
- Ingo Tegeder — 1
45+
- Eberhard — 1
46+
47+
## Automatisierte Beiträge
48+
49+
- copilot-swe-agent[bot] — 17 (Alias: Copilot)
50+
- github-actions — 6
51+
- ImgBotApp — 2
52+
53+
---
54+
55+
Wenn jemand fehlt oder falsch zugeordnet ist (z. B. durch unterschiedliche E-Mail-Adressen), gerne ein Issue oder PR erstellen – wir ergänzen das sofort.

pages/help.php

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@
2828
'icon' => 'rex-icon fa-list',
2929
'file' => 'CHANGELOG.md'
3030
],
31+
'license' => [
32+
'title' => 'Lizenz',
33+
'icon' => 'rex-icon fa-gavel',
34+
'file' => 'LICENSE.md'
35+
],
36+
'credits' => [
37+
'title' => 'Credits',
38+
'icon' => 'rex-icon fa-heart',
39+
'file' => 'credits.md'
40+
],
3141
];
3242

3343
$cm_help_file_map = [];
@@ -140,6 +150,8 @@
140150
$url = rex_url::currentBackendPage(['func' => $cm_help_file_map[$fileName]]);
141151
if (isset($matches[3])) {
142152
$url .= $matches[3];
153+
} else {
154+
$url .= '#cm-doc-top';
143155
}
144156

145157
return '[' . $matches[1] . '](' . $url . ')';
@@ -188,7 +200,7 @@
188200
$tocHtml .= '</div></div>';
189201
}
190202

191-
$content = '<div class="rex-docs" style="display: block !important">' . $parsed . '</div>';
203+
$content = '<a id="cm-doc-top"></a><div class="rex-docs" style="display: block !important">' . $parsed . '</div>';
192204
}
193205
}
194206
}

0 commit comments

Comments
 (0)