blob: c34309d47f237f2b15ae4545891eca1bf8aa1f16 (
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
|
<?php
// config.php
// fichier à modifier soi-même
// les lignes commentées correspondent aux réglages par défaut
$business_name = 'ORDIPOLO';
// $receipts = '~/ORDIPOLO/Applis_PHP/LaTeX/';
$receipts = 'LaTeX/';
// $quotations = '~/ORDIPOLO/Applis_PHP/LaTeX/';
$quotations = 'LaTeX/';
// $pub = "~/ORDIPOLO/PUB/";
$pub = "pub/";
// $flyer = "flyer.xcf";
$flyer = "flyer.xcf";
// $business_card = "carte.sla";
$business_card = "carte.sla";
// $envelopes = '~/ORDIPOLO/Applis_PHP/LaTeX/';
$envelopes = 'LaTeX/';
// $db_name = "ordipolo";
$db_name = "ordipolo";
// $db_place = '~/ORDIPOLO/Appli_PHP/';
$db_place = '';
// $image_editor = 'gimp';
$image_editor = 'gimp';
// $publishing = 'scribus';
$publishing = 'scribus';
// $x_terminal = 'xterm';
//$x_terminal = 'xterm';
// les terminaux disponibles sont: xterm...
// vérification des variables
// dans config_check.php
|