-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfiguration.dist.php
More file actions
86 lines (78 loc) · 1.27 KB
/
configuration.dist.php
File metadata and controls
86 lines (78 loc) · 1.27 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* @version $Id:
* @package Matware
* @subpackage ExampleWebSocket
* @copyright Copyright (C) 1996 - 2011 Matware - All rights reserved.
* @author Matias Aguirre
* @email maguirre@matware.com.ar
* @link http://www.matware.com.ar/
* @license GNU/GPL http://www.gnu.org/licenses/gpl-2.0-standalone.html
*/
// Prevent direct access to this file outside of a calling application.
defined('_JEXEC') or die;
/**
* WebSocketExample configuration class.
*
* @package Matware
* @since 13.1
*/
final class JConfig
{
/**
* Cli flag
*
* @var string
* @since 13.1
*/
public $cli = 1;
/**
* The database driver.
*
* @var string
* @since 13.1
*/
public $dbtype = 'mysql';
/**
* Database host.
*
* @var string
* @since 13.1
*/
public $host = 'localhost';
/**
* The database connection user.
*
* @var string
* @since 11.3
*/
public $user = '';
/**
* The database connection password.
*
* @var string
* @since 13.1
*/
public $password = '';
/**
* The database name.
*
* @var string
* @since 13.1
*/
public $db = '';
/**
* The database table prefix, if necessary.
*
* @var string
* @since 11.3
*/
public $dbprefix = 'jos_';
/**
* Debug
*
* @var string
* @since 13.1
*/
public $debug = 1;
}