1<?php
2/**
3* Web based SQLite management
4* User defined
5* @package SQLiteManager
6* @author Fr�d�ric HENNINOT
7* @version $Id: user_defined.inc.php,v 1.7 2006/04/14 15:16:52 freddy78 Exp $ $Revision: 1.7 $
8*/
9
10
11/**
12 * General include path
13 */
14// define("INCLUDE_LIB", "./include/");
15
16/**
17 * By default the DEBUG mode depend of SQLiteManagerVersion, if it's finish by 'CVS' debug mode turn on
18 * You can force debug mode to on by setting 'DEBUG' constante
19 */
20// define("DEBUG", false);
21
22/**
23 * You can move configuration database, it's best for security reason.
24 * for this you can set 'SQLiteDb' constante with the full path!
25 * The configuration database version must be the same of 'SQLITE3' constante.
26 * for windows : define('SQLiteDb', 'c:\path\to\sqlite\config.db');
27 */
28// define ("SQLiteDb", "/usr/local/apache2/htdocs/SQLiteManager-1.2.0RC1/include/config.db");
29/**
30 * You can define a default dir where you place all sqlite databases!!
31 * All database create without path will be save here, and the uploaded database so
32 */
33// define("DEFAULT_DB_PATH", "/var/www/sqliteDb/");
34/**
35 * Some plugins has been in development
36 * To activate the use of plugin set the 'ALLOW_EXEC_PLUGIN' to true
37 */
38// define("ALLOW_EXEC_PLUGIN", false);
39
40/**
41 * You activate authenticate by setting the constante 'WITH_AUTH' to true
42 * In admin mode you can manage all users and groups
43 * The default passwd of 'admin' user is 'admin'
44 */
45//define("WITH_AUTH", false);
46
47/**
48 * In authenticate mode, you can autorize the user to change password
49 */
50// define("ALLOW_CHANGE_PASSWD", true);
51
52/**
53 * The 'NAV_NBLINK' constante, define the default number of link into navigation bar
54 */
55// define("NAV_NBLINK", 10);
56
57/**
58 * Left Frame width
59 */
60//define("LEFT_FRAME_WIDTH", 200);
61
62/**
63 * display empty item into left frame
64 */
65// define("DISPLAY_EMPTY_ITEM_LEFT", true);
66
67/**
68 * Number of columns for textarea
69 */
70// define("TEXTAREA_NB_COLS", 60);
71
72/**
73 * Number of rows for textarea
74 */
75// define("TEXAREA_NB_ROWS", 5);
76
77/**
78 * Number of char display on partial text view
79 */
80// define("PARTIAL_TEXT_SIZE", 20);
81
82/**
83 * Number of record per page display on browse mode
84 */
85// define("BROWSE_NB_RECORD_PAGE", 20);
86
87/**
88 * Replace TextArea with advanced editor SPAW Editor
89 * Only where 'HTML' is selected in browse mode
90 */
91// define("ADVANCED_EDITOR", false);
92
93/**
94 * Define the full path to SPAW Editor
95 */
96// define("SPAW_PATH", "/usr/local/apache2/htdocs/sqlitemanager/spaw/");
97
98/**
99 * Define Toolbar style for the SPAW Editor
100 */
101// define("SPAW_TOOLBAR_STYLE", "sqlitemanager");
102
103/**
104 * Use jscalendar for date entrie
105 */
106// define('JSCALENDAR_USE', true);
107
108/**
109 * jscalendar path
110 */
111// define('JSCALENDAR_PATH', '/jscalendar/');
112
113/**
114 *Allow use of 'Full search' UDF
115 */
116 // define("ALLOW_FULLSEARCH", true);
117?>
118