-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php.dist
67 lines (61 loc) · 1.36 KB
/
config.inc.php.dist
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
<?php
$this->url="http://www.reisacher-software.de/formedit2";
/**
* file open, file save dialog
*/
$this->fileBrowser = [
'editor' => [
'path' => "./projectfiles",
'url' => $this->url."/projectfiles",
'ext' => [
'cpf2'
]
],
'assetimage' => [
'path' => "./asset",
'url' => $this->url."/asset",
'ext' => [
'png',
'jpg'
]
],
'assetlink' => [
'path' => "./asset",
'url' => $this->url."/asset",
'ext' => []
],
];
/**
* project settings
*/
//where can the project connect to
$this->projectConnection = [
'mysql' => [
'name' => 'MySQL',
'class' => 'formedit\addons\connections\mysql',
'properties' => [
/** properties which use in the class */
'host' => '#HOST#',
'port' => #PORT#,
'schema' => '#DB NAME#',
'user' => '#DB USER#',
'pass' => '#DB PASS#',
'charset' => 'utf8',
]
],
/*
'sqllite' => [
'name' => 'Sql Lite',
'class' => 'addons\connections\sqllite',
'properties' => [
'path' => 'out/sqllite'
]
],
'laravel' => [
'name' => 'Laravel',
'class' => 'addons\connections\laravel',
'properties' => [
]
],
*/
];