-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php.example
61 lines (43 loc) · 1.4 KB
/
config.php.example
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
<?php
$htmlTitle = "boekhouding";
$adminMail = "[email protected]";
$adminMailName = "boekhouding";
$controlpanelDisabled = false;
$controlpanelDisabledNotice = "<p>De boekhouding is tijdelijk buiten gebruik voor onderhoud.</p>";
$controlpanelEnableAssetDepreciation = true;
$controlpanelEnableCustomerEmail = false;
$controlpanelUrl = "http://boekhouding.example.com/";
$database_hostname = "localhost";
$database_username = "";
$database_password = "";
$database_name = "boekhouding";
$crypto_key = "asdasdasd123123123";
$taxRate = 0.21;
$defaultCurrencyID = 0;
$revenueDirectoryAccountID = 0;
$expensesDirectoryAccountID = 0;
$assetsDirectoryAccountID = 0;
$customersDirectoryAccountID = 0;
$suppliersDirectoryAccountID = 0;
$bankDirectoryAccountID = 0;
$bankDefaultAccountID = 0;
$fixedAssetValueDirectoryAccountID = 0;
$fixedAssetDepreciationDirectoryAccountID = 0;
$fixedAssetExpenseDirectoryAccountID = 0;
$taxPayableAccountID = 0;
$taxReceivableAccountID = 0;
$componentsEnabled = array();
$componentsEnabled[] = "customers";
$componentsEnabled[] = "accounting";
$componentsEnabled[] = "accounts";
$componentsEnabled[] = "billing";
$invoiceLatexDocumentClass = "demobrief";
$invoiceLatexPackage = "demo-factuur";
$invoiceAccountNumber = "";
$invoiceAccountName = "";
$invoiceSenderEmail = "";
$invoiceSenderName = "";
$invoiceBCCEmail = "";
$invoiceEmailSignature = "";
$brandingColor = "#c11b17";
?>