dbXapp 2.0
RAD, CMS, Module und Runtime-IDE fuer dbXapp
Loading...
Searching...
No Matches
dbxContact.class.php
Go to the documentation of this file.
1<?php
2namespace dbx\dbxContact;
3
4class dbxContact {
5
6 public function run() {
7 $run = dbx()->get_modul_var('dbx_run1', 'form', 'parameter');
8
9 switch ($run) {
10 case 'install':
11 return dbx()->redirect('?dbx_modul=dbxContact_admin&dbx_run1=install', 1);
12
13 case 'my':
14 case 'tickets':
15 case 'list':
16 return dbx()->get_include_obj('dbxContactList', 'dbxContact')->run();
17
18 case 'new':
19 case 'form':
20 case 'contact':
21 default:
22 return dbx()->get_include_obj('dbxContactForm', 'dbxContact')->run();
23 }
24 }
25}
26?>
DBX schema administration.