This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 168
/
glossary.txt
72 lines (66 loc) · 2.24 KB
/
glossary.txt
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
FORMATTING
==========
ViewHelpers:
* ViewHelpers in continuous text should be formatted like that:
... the <code>cObject</code> ViewHelper
... there exists a ViewHelper <code>format.date</code>
Code Snippets:
* Code Snippets are indented with a single TAB character
GLOSSARY
========
The glossary should provide information on how certain german words should be translated. Please update the glossary if you come over any special words.
German = English
Ablaufmuster = schedule model
Action = Action
Eine Methode als Teil eines Controllers
Aggregate = Aggregate
im Sinne von Domain-Driven Design
Allgegenwärtige Sprache = Ubiquitous Language
Feststehender Begriff in Domain-Driven-Design
Anmerkung = Annotation
Annotation = Ein konfigurations-relevanter "Doc Comment", z.B. @scope
Ausnahme = Exception
Controller = Controller
Domänenmodell = Domain Model
Variante eines Models das dem Domain-Driven Design Prinzipien entspricht
Domain-Driven Design (DDD) = Domain-Driven Design
Programmier-Paradigma zur Modellierung von Domänen mit Fokus auf die Geschäftslogik
Entität = Entity
Individuelles Objekt nach DDD
Entwurfsmuster = Design Pattern
Formale Beschreibung einer Lösung für ein gängiges Design-Problem
Exception = Exception
Eine Ausnahmesituation, technisch umgesetzt durch PHPs Exception Handler
Exception werfen = ... throw Exception ...
Fehler = Error
Fehlerbehandlung = Error Handling
Fabrik = Factory
spezielles Design Pattern
Interface = Interface
Im Sinne von PHP "interface"
Schnittstelle = Interface
Lazy Loading = Lazy Loading
Modell = Model
Komponente aus dem MVC Pattern
Namensraum = Namespace
Namentliche Abgrenzung von Klassen, Interfaces aber auch Parametern.
Paket = Package
Ein FLOW3 Paket
Persistenz = Persistence
Prototyp = Prototype
(Design Pattern)
Reflection = Reflection
Repository = Repository
Teil des DDD, allgemeines Konstrukt zur Aufbewahrung von Entities
Anfrage = Request
Anfrage an das Framework z.B. über einen Web Browser oder die Kommandozeile
Request Handler
Service = Service
im Sinne von Domain-Driven Design
Singleton (Design Pattern)
Type Hint
Klassen- oder Interfacename vor einem Methoden- oder Funktionsargument. foo(TypeHint $bar)
Value Object (VO)
ein Design Pattern, verwendet in DDD
View
View Helper