summaryrefslogtreecommitdiff
path: root/public/app/config/app_constants.php
blob: 9dff566490f634509aa2afc230e742b39242447e (plain)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
<?php
// Contents
// Central Defaults (name)
// Default Values (user-privileges and user-roles)


// read ini file if exist
// --- -- -- - - -
if (file_exists("../core/auth/.env")) {
  $env = parse_ini_file("../core/auth/.env");
}




// CENTRAL DEFAULTS ////////////////////////////////////////////////////////////
// -----------------------------------------------------------------------------

// NOTE:
// if .env file exists ... do not touch anything
// else ... replace $env[*] values with your setup

// WEB-APP name and url
// --- -- -- - - -
define('SITE_TITLE', 'Classroom');
define('SITE_URL', 'http://localhost');

// email setup
// --- -- -- - - -
   // SMTP
define('MAIL_MAILER', $env['MAIL_MAILER']);
define('MAIL_HOST', $env['MAIL_HOST']);
define('MAIL_PORT', $env['MAIL_PORT']);
define('MAIL_USERNAME', $env['MAIL_USERNAME']);
define('MAIL_PASSWORD', $env['MAIL_PASSWORD']);
define('MAIL_ENCRYPTION', $env['MAIL_ENCRYPTION']);
   // Mailjet
define('MAILJET_APIKEY', $env['MAILJET_APIKEY']);   // apikey
define('MAILJET_SECRET', $env['MAILJET_SECRET']);   // secret
define('MAILJET_TICKET', $env['MAILJET_TICKET']);   // apikey:secret
   // sender info
define('MAIL_FROM_NAME', $env['MAIL_FROM_NAME']);
define('NO_REPLY_EMAIL', $env['NO_REPLY_EMAIL']);
define('REPLY_TO_EMAIL', $env['REPLY_TO_EMAIL']);

// default mail service; options so far: [ mailjet | phpmailer ]
define('DEFAULT_MAIL_SERVICE', 'mailjet');


// DEFAULT VALUES //////////////////////////////////////////////////////////////
// -----------------------------------------------------------------------------

// default privileges (for the subscribed user)
// (array of privilege aliases)
// --- -- -- - - -
define('DEFAULT_PRIVILEGES', [
    1,      // economics, level 1
    5       // programming. level 1
]);


// User Roles
// --- -- -- - - -
define('Admin', 1);
define('Secretary', 2);
define('Teacher', 3);


// ACCESS HISTORY //////////////////////////////////////////////////////////////
// -----------------------------------------------------------------------------
// (user-)access types

define('TRACK_LOGIN', 1);       // login / logout
define('TRACK_ACCOUNT', 2);     // create user / activate account / modidy profile
define('TRACK_REQUESTS', 4);    // order / payment / refund etc...

// access type strings
// ---
define('USER_ACCESS_TYPE', [
    1 => 'Login',
    2 => 'Account',
    3 => 'Request'
]);



// ERRORS AND ERROR MESSAGES ///////////////////////////////////////////////////
// -----------------------------------------------------------------------------

define('EMPTY_REQUIRED_FIELDS', 'Δεν έχουν συμπληρωθεί όλα τα υποχρεωτικά πεδία');



// ASSETS: PATHS USED HEAVILY //////////////////////////////////////////////////
// -----------------------------------------------------------------------------
// these paths are used in order to easily find and autoload useful elemets


// JAVASCRIPT LIBRARY PATHS
// -----------------------------------------------------------------------------
define('JS_DIR', '/content/');      // <base> path to contruct link



// CSS ASSET PATHS
// -----------------------------------------------------------------------------
define('CSS_DIR', '/content/css/');    // <base> path to contruct link
define('CSS_FILES', array(            // path after <base> to the actual file
  'main' => 'main.min.css',
  'filter' => 'filter.css',
  'overides' => 'overides.css',
  )
);



// Mesagges ////////////////////////////////////////////////////////////////////
// -----------------------------------------------------------------------------

// 404
// ---
define('PAGE_404_TITLE', '404: Not Found');

// registration
// ---
define('REGISTRATION_SUCCESS', "<h3>Επιτυχής Εγγραφή</h3>
  <p>
      Παρακαλώ ελέγξτε το email σας και ακολουθήστε το σύνδεσμο ενεργοποίησης
      που σας 'εχει αποσταλεί, ώστε να έχετε πρόσβαση σε επιπλέον περιεχόμενο του site
  </p>"
);
define ('REGISTRATION_USER_EXISTS', "<h3>Αποτυχία Εγγραφής</h3>
  <p>
      Υπάρχει ήδη χρήστης με αυτό το email. Αν δεν θυμάστε το password
      μπορείτε να κάνετε επαναφορά του ακολουθώντας
      <a href='/reset-password'>αυτό το σύνδεσμο</a>.
  </p>"
);


// activation
// ---
define('ACCOUNT_ACTIVATED_TITLE', 'Ο λογαριασμός σας έχει ενεργοποιηθεί');
define('ACCOUNT_ACTIVATED_MESSAGE', 'Τώρα μπορείτε να
  <a href="/login">συνδεθείτε στο σύστημα</a>.');
define('NOT_VALID_ACTIVATION_TITLE', 'Σφάλμα!');



define('REGISTRATION_FORM', [
    'defaults' => [
        'outer_class' => 'col-12',
        'inner_class' => 'form-control',
        'type' => 'text'
    ],
    'form' => [
        [
            'name' => 'first_name',
            'label' => 'Όνομα',
            'attributes' => ['required']
        ],
        [
            'name' => 'last_name',
            'label' => 'Επίθετο',
            'attributes' => ['required']
        ],
        [
            'name' => 'email',
            'label' => 'e-mail',
            'type' => 'email',
            'attributes' => ['required']
        ],
        [
            'name' => 'father_name',
            'label' => 'Πατρώνυμο',
            'attributes' => ['required']
        ],
        [
            'name' => 'registration_number',
            'label' => 'Αριθμός μητρώου',
            'class' => 'col-8',
            'attributes' => ['required']
        ],
        [
            'name' => 'sector',
            'label' => 'Κλάδος / Ειδικότητα',
            'type' => 'select',
            // 'source' => 'sectors',
            'attributes' => ['required'],
            'options' => [
                'Π01.00 Θεολόγοι',
                'Π02.00 Φιλόλογοι',
                'Π04.01 Φυσικοί',
                'Π04.02 Χημικοί'
            ]
        ],
        [
            'name' => 'belonging_school',
            'label' => 'Σχολείο τοποθέτησης',
            'attributes' => ['required']
        ],
        [
            'name' => 'working_school',
            'label' => 'Σχολείο εργασίας',
            'attributes' => ['required']
        ],
        [
            'name' => 'position',
            'label' => 'Θέση',
            'type' => 'select',
            'attributes' => ['required'],
            'options' => [
                'Διευθυν-τής/τρια',
                'Υποδιευθυν-τής/τρια',
                'Μόνιμ-ος/η Καθηγη-τής/τρια',
                'Αναπληρω-τής/τρια',
            ]
        ],
        [
            'name' => 'phone',
            'label' => 'Τηλέφωνο',
            'class' => 'col-8',
            'attributes' => ['required']
        ],
        [
            'name' => 'password',
            'label' => 'Κωδικός πρόσβασης',
            'type' => 'password',
            'class' => 'col-8',
            'attributes' => ['required']
        ],
        [
            'name' => 'confirm_password',
            'label' => 'Επαλήθευση κωδικού πρόσβασης',
            'type' => 'password',
            'class' => 'col-8',
            'attributes' => ['required']
        ]
    ]
]);


define('COMMON_REQUEST_FORM', [
    'defaults' => [
        'outer_class' => 'col-12',
        'inner_class' => 'form-control',
        'type' => 'text',
        'source' => '\app\controllers\User::current'
    ],
    'form' => [
        [
            'name' => 'first_name',
            'label' => 'Όνομα',
            'attributes' => ['auto']
        ],
        [
            'name' => 'last_name',
            'label' => 'Επίθετο',
            'attributes' => ['auto']
        ],
        [
            'name' => 'email',
            'label' => 'e-mail',
            'type' => 'email',
            'attributes' => ['auto']
        ],
        [
            'name' => 'father_name',
            'label' => 'Πατρώνυμο',
            'attributes' => ['auto']
        ],
        [
            'name' => 'registration_number',
            'label' => 'Αριθμός μητρώου',
            'class' => 'col-5',
            'attributes' => ['auto']
        ],
        [
            'name' => 'sector',
            'label' => 'Κλάδος / Ειδικότητα',
            'attributes' => ['auto']
        ],
        [
            'name' => 'belonging_school',
            'label' => 'Σχολείο τοποθέτησης',
            'attributes' => ['required']
        ],
        [
            'name' => 'working_school',
            'label' => 'Σχολείο εργασίας',
            'attributes' => ['required']
        ],
        [
            'name' => 'position',
            'label' => 'Θέση',
            'type' => 'select',
            'source' => 'positions',
            'attributes' => ['required']
        ],
        [
            'name' => 'phone',
            'label' => 'Τηλέφωνο',
            'attributes' => ['required']
        ],
        [
            'name' => 'request',
            'label' => 'Αίτημα (πχ, Παρακαλώ να μου χορηγήσετε ...)',
            'type' => 'textarea',
            'attributes' => ['required']
        ],
        [
            'name' => 'date',
            'label' => 'Ημερομηνία αίτησης',
            'type' => 'date',
            'attributes' => ['required']
        ]
    ]
]);


define('PENALTY_FORM', [
  'defaults' => [
      'outer_class' => 'col-12',
      'inner_class' => 'form-control',
      'type' => 'text',
      'source' => 'user'
  ],
  'form' => [
      [
          'label' => 'Πειθαρχική υπόθεση',
          'type' => 'label'
      ],
      [
        'name' => 'of_article',
        'label' => 'του/της...',
        'type' => 'select',
        'options' => [
            'του μαθητή',
            'της μαθήτριας',
            'των μαθητών',
            'των μαθητριών'
        ],
        'class' => 'col-4',
        'attributes' => ['required']
      ],
      [
          'name' => 'student_names',
          'label' => '(ονοματεπώνυ-μο/μα, πτώση γενική)',
          'type' => 'textarea',
          'class' => 'col-8',
          'attributes' => ['required']
      ],
      [
          'name' => 'of_department',
          'label' => 'του τμήματος...',
          'class' => 'col-4',
          'attributes' => ['required']
      ],
      [
          'name' => 'date',
          'label' => 'Ημερομηνία',
          'type' => 'date',
          'class' => 'col-4',
          'attributes' => ['required']
      ],
      [
          'name' => 'time',
          'label' => 'Ώρα',
          'class' => 'col-4',
          'attributes' => ['required']
      ],
      [
          'name' => 'place',
          'label' => 'Τόπος',
          'type' => 'select',
          'options' => [
              'Γραφείο Διευθηντή',
              'Γραφείο Καθηγητών'
          ],
          'attributes' => ['required']
      ],
      [
          'name' => 'rapporteur',
          'label' => 'εισηγητής',
          'source' => '\app\extends\Cache_service::all_users',
          'attributes' => ['required']
      ],
      [
          'name' => 'charge',
          'label' => 'Περιγραφή συμβάντος:',
          'type' => 'textarea',
          'attributes' => ['required']
      ],
      [
          'name' => 'apology',
          'label' => 'Απολογία: (μαθητή/-των)',  // + of_student
          'type' => 'textarea',
          'attributes' => []
      ],
      [
          'name' => 'decision_reasoning',
          'label' => 'Αιτιολογία απόφασης (πχ. Επειδή...)',
          'type' => 'textarea',
          'attributes' => []
      ],
      [
          'label' => 'Το Πειθαρχικό Συμβούλιο',
          'type' => 'label'
      ],
      [
          'name' => 'decision',
          'label' => 'Αποφασίζει',
          'type' => 'select',
          'options' => [
              'προφορική επίπληξη',
              'ωριαία αποβολή',
              'ημερήσια αποβολή'
          ],
          'attributes' => []
      ],
      [
          'name' => 'decision_more',
          'label' => '(μη τυποποιημένο κείμενο απόφασης)',
          'attributes' => []
      ],
      [
          'name' => 'president',
          'label' => 'Πρόεδρος συνεδρίασης',
          'type' => 'text',
          'source' => '\app\extends\Cache_service::all_users',
          'attributes' => ['required']
      ],
      [
          'name' => 'members',
          'label' => 'Μέλη',
          'type' => 'select',
          'attributes' => ['required', 'multiple'],
          'source' => '\app\extends\Cache_service::all_users',
          'options' => [
            'Μαρία Χαλκιαδάκη',
            'Σπαγκοβαγγελοδημήτρης Νικόλαος',
            'Χατζηχριστοδούλου Παναγιώτης',
            'Μαρία Χαλκιά',
            'Σπανοβαγγελοδημήτρης Νικόλαος',
            'Χριστοδούλου Παναγιώτης',
            'Μαρίκα Χαλκιαδάκη',
            'Σπανακοβαγγελοδημήτρης Νικόλαος',
            'Χατζηχριστοδούλου Χριστόδουλος',
            'Αννέτα Καββαδία',
            'Γιώργος Καΐσας',
            'Διονύσης - Χαράλαμπος Καλαματιανός',
            'Ηλίας Καματερός',
            'Μαρία Κανελλοπούλου',
            'Ιωάννης Καραγιάννης',
            'Χρήστος Καραγιαννίδης',
            'Ευαγγελία Καρακώστα',
            'Απόστολος Καραναστάσης',
            'Ευφροσύνη Καρασαρλίδου',
            'Νίνα Κασιμάτη',
            'Αστέριος Καστόρης',
            'Βασιλική Κατριβάνου',
            'Γιώργος Κατρούγκαλος',
            'Χρυσούλα Κατσαβριά-Σιωροπούλου',
            'Μάριος Κάτσης',
            'Χαρά Καφαντάρη',
            'Σίμος Α. Κεδίκογλου',
            'Παναγιώτα Κοζομπόλη-Αμανατίδη',
            'Βασίλης Κόκκαλης',
            'Σταύρος Κοντονής',
            'Περικλής Κοροβέσης',
            'Νίκος Κοτζιάς',
            'Φώτης Κουβέλης',
            'Τάσος Κουράκης',
            'Παναγιώτης Κουρουμπλής',
            'Μιχαήλ Κριτσωτάκης',
            'Βασίλης Κυριακάκης',
            'Αγλαΐα Κυρίτση',
            'Γιώργος Κυρίτσης',
            'Πέτρος Κωνσταντινέας',
            'Ζωή Κωνσταντοπούλου',
            'Ηλίας Κωστοπαναγιώτου'
          ]
      ]
  ]
]);