-
Notifications
You must be signed in to change notification settings - Fork 0
/
Planung.txt
114 lines (92 loc) · 2.35 KB
/
Planung.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
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
##{CMSNAME}## 29. November 2013 12:49
https://github.com/RTK/CMS.git
Phase 1: Planung
..............................................
Beschreibung:
Das {CMSNAME} ist ein simples, funktionales und stabiles Content Management System mit intuitiever Bedienung.
Eingesetzte Technologien:
- (X)HTML (5)
- CSS (3)
- JavaScript (jQuery)
- PHP (5)
- SQL (mySQL)
ggfs.
- Templatesystem (eigenes, alternativ: Smarty, Twig)
Sektionen:
- Frontend (HTML, CSS, JS)
- Backend (PHP, SQL)
Strukturierung:
- MVC Konzept (Model View Controller)
Grundklassen:
- Model (Datenbank -> SQL)
- View (Templates -> Design, Funktionalität)
- Controller (Basis -> Schnittstelle zwischen Model und View)
----------------------------------------------
Phase 2: Beratung - Konventionen
..............................................
Klassen - Namespace:
- \ITC\{CMSNAME}\[Klasse]
Syntax:
- [modifizierer] function funktionsname()
{
machwas();
}
- class Name [extends Oberklasse]
{
private $variable;
public __construct($parameter1 = null, $parameter2 = null )
{
$this->variable = $parameter1;
}
public wichtigeFunktion()
{
machWasTolles();
}
private interneFunktion()
{
machnix();
}
}
Variablenmodifizierer in Klassen:
- private
Datei (-) - und Ordnerstruktur (+):
+ core
+ model
+ entities
+ collections
- testmodel.php [Klasse Testmodel, extends Model]
+ view
- testview.php [Klasse Testview, extends View]
+ controller
- testview.php [Klasse Testcontroller, extends Controller]
+ init
- init.php
- config.php
+ mvc
- controller.php [Klasse Controller]
- model.php [Klasse Model]
- view.php [Klasse View]
+ out
+ frontend
+ templates
- index.tpl
+ css
+ js
+ img
+ backend
+ css
+ js
+ img
- index.php
- .htaccess
----------------------------------------------
Phase 3: Noch zu besprechende Teilbereiche:
..............................................
Datenbankkonzept:
- Tabellen (Anzahl benötigter Tabellen, Namensgebung, ...)
- Spalten (Namen, Datentypen, ...)
- Relationen der Tabellen
Aufteilung:
- Model
- View
- Controller