forked from pkriete/simplypost
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.php
78 lines (68 loc) · 2.55 KB
/
constants.php
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| File and Directory Modes
|--------------------------------------------------------------------------
|
| These prefs are used when checking and setting modes when working
| with the file system. The defaults are fine on servers with proper
| security, but you may wish (or even need) to change the values in
| certain environments (Apache running a separate process for each
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
| always be used to set the mode correctly.
|
*/
define('FILE_READ_MODE', 0644);
define('FILE_WRITE_MODE', 0666);
define('DIR_READ_MODE', 0755);
define('DIR_WRITE_MODE', 0777);
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
define('FOPEN_READ', 'rb');
define('FOPEN_READ_WRITE', 'r+b');
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
define('FOPEN_WRITE_CREATE', 'ab');
define('FOPEN_READ_WRITE_CREATE', 'a+b');
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
/*
|--------------------------------------------------------------------------
| Versioning Information
|--------------------------------------------------------------------------
|
| The app_version is used for statistics
|
*/
define('APP_NAME', 'SimplyPost');
/*
|--------------------------------------------------------------------------
| Tree Information
|--------------------------------------------------------------------------
|
| The forum tree uses constants, since int fields are marginally more
| performant than varchar fields.
|
| A quick note on how they're determined: The first letter of the constant
| constant *category* (tree, permissions, user, etc) determines the first
| two numbers of the constant.
|
| Max Length: 5
|
*/
// Authentication
define('BANNED', 1);
define('TIMEOUT', 10);
// Permissions
define('PERMISSION_INC', 160);
define('PERMISSION_EXC', 161);
define('PERMISSION_GROUP', 162);
define('PERMISSION_USER', 163);
/* End of file constants.php */
/* Location: ./system/application/config/constants.php */