-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
128 lines (113 loc) · 3.82 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
site_name: modified Entwickler Dokumentation
site_description: Einstieg in die Modulentwicklung für modified Shops
site_author: "Robin Wieschendorf, Jay Trees"
site_url: "https://docs.module-loader.de"
nav:
- Vorwort: index.md
- Einleitung: introduction.md
- Architektur:
- Architektur: architecture.md
- Versionen: modified-versions.md
- Modulentwicklung:
- Einleitung: module-modified.md
- Klassen:
- Abstrakt: module-class-abstract.md
- Konkret:
- System: module-system.md
- Shipping: module-shipping.md
- Payment: module-payment.md
- Export: module-export.md
- Order Total: module-order-total.md
- Erweiterungen: module-class-extention.md
- Autoinclude System: auto-include-system.md
- Configuration:
- Configuration: configuration.md
- setFunction: configuration-set.md
- useFunction: configuration-use.md
- Admin-Menü: admin-menu.md
- Klassen und Schnittstellenreferenz:
- references/index.md
- Modul Klassen:
- references/module-classes/index.md
- Abstrakte Modul Klasse: references/module-classes/module-class-abstract.md
- Konkrete Klassen:
- System: references/module-classes/concrete/system.md
- Shipping: references/module-classes/concrete/shipping.md
- Payment: references/module-classes/concrete/payment.md
- Export: references/module-classes/concrete/export.md
- OrderTotal: references/module-classes/concrete/order-total.md
- Klassenerweiterungen:
- Categories: references/module-classes/extentions/categories.md
- Checkout: references/module-classes/extentions/checkout.md
- Main: references/module-classes/extentions/main.md
- Order: references/module-classes/extentions/order.md
- Product: references/module-classes/extentions/product.md
- ShoppingCart: references/module-classes/extentions/shopping-cart.md
- XtcPrice: references/module-classes/extentions/xtc-price.md
- Appendix:
- Liste Admin-Menü: modified-menu.md
theme:
name: material
language: de
custom_dir: overrides
features:
#- navigation.instant
- navigation.indexes
- navigation.tracking
# - navigation.sections
- navigation.footer
- navigation.top
- content.action.edit
- content.code.copy
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
primary: blue
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: blue
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/extra.css
repo_url: "https://github.com/RobinTheHood/docs.module-loader.de"
repo_name: RobinTheHood/docs.module-loader.de
edit_uri: edit/main/docs/
plugins:
- search:
lang: de
markdown_extensions:
- attr_list
- admonition
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
extra:
generator: false
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/kfUamcNBRH
- icon: fontawesome/brands/github
link: https://github.com/RobinTheHood/docs.module-loader.de
copyright: <a href="https://module-loader.de/privacy.php">Datenschutz</a> | <a href="https://module-loader.de/imprint.php">Impressum</a> | Copyright © Robin Wieschendorf, Jay Trees