mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
0bc0a09bf4
- application/extensions file system permission now is 775 - application/logs file system permission now is 775 - Added extensions directory in application/: config, controllers, helpers, hooks, libraries, models, views and widgets - Added view views/extensions/manage.php - Added controller controllers/system/extensions/Manager.php - Added library ExtensionsLib to manage extensions - Added model models/system/Extensions_model.php - Moved code related to print out info from MigrationLib to EPrintfLib
114 lines
4.8 KiB
PHP
114 lines
4.8 KiB
PHP
<?php
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| FH-Complete Constants
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These constants are used for internal messages. It are also be used
|
|
| and translated in the language files.
|
|
|
|
|
*/
|
|
define('FHC_SUCCESS', 0); // General Success Message
|
|
define('FHC_ERROR', 1); // General Error Message
|
|
define('FHC_MODEL_ERROR', 2); // Model Error
|
|
define('FHC_DB_ERROR', 3); // Database Error
|
|
define('FHC_NODBTABLE', 4); // No DB-Table is set
|
|
define('FHC_NORIGHT', 5); // No rights
|
|
define('FHC_INVALIDID', 6); // Invalid or no ID (key)
|
|
define('FHC_NOPK', 7); // No primary key
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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', 0755);
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Display Debug backtrace
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| If set to TRUE, a backtrace will be displayed along with php errors. If
|
|
| error_reporting is disabled, the backtrace will not display, regardless
|
|
| of this setting
|
|
|
|
|
*/
|
|
define('SHOW_DEBUG_BACKTRACE', TRUE);
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Exit Status Codes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Used to indicate the conditions under which the script is exit()ing.
|
|
| While there is no universal standard for error codes, there are some
|
|
| broad conventions. Three such conventions are mentioned below, for
|
|
| those who wish to make use of them. The CodeIgniter defaults were
|
|
| chosen for the least overlap with these conventions, while still
|
|
| leaving room for others to be defined in future versions and user
|
|
| applications.
|
|
|
|
|
| The three main conventions used for determining exit status codes
|
|
| are as follows:
|
|
|
|
|
| Standard C/C++ Library (stdlibc):
|
|
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
|
|
| (This link also contains other GNU-specific conventions)
|
|
| BSD sysexits.h:
|
|
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
|
|
| Bash scripting:
|
|
| http://tldp.org/LDP/abs/html/exitcodes.html
|
|
|
|
|
*/
|
|
define('EXIT_SUCCESS', 0); // no errors
|
|
define('EXIT_ERROR', 1); // generic error
|
|
define('EXIT_MODEL', 2); // model error
|
|
define('EXIT_CONFIG', 3); // configuration error
|
|
define('EXIT_UNKNOWN_FILE', 4); // file not found
|
|
define('EXIT_UNKNOWN_CLASS', 5); // unknown class
|
|
define('EXIT_UNKNOWN_METHOD', 6); // unknown class member
|
|
define('EXIT_USER_INPUT', 7); // invalid user input
|
|
define('EXIT_DATABASE', 8); // database error
|
|
define('EXIT_VALIDATION_UDF', 10); // UDF validation has been failed
|
|
define('EXIT_VALIDATION_UDF_MIN_VALUE', 11); // UDF validation has been failed -> MIN VALUE
|
|
define('EXIT_VALIDATION_UDF_MAX_VALUE', 12); // UDF validation has been failed -> MAX VALUE
|
|
define('EXIT_VALIDATION_UDF_MIN_LENGTH', 13); // UDF validation has been failed -> MIN LENGTH
|
|
define('EXIT_VALIDATION_UDF_MAX_LENGTH', 14); // UDF validation has been failed -> MAX LENGTH
|
|
define('EXIT_VALIDATION_UDF_REGEX', 15); // UDF validation has been failed -> REGEX
|
|
define('EXIT_VALIDATION_UDF_REQUIRED', 16); // UDF validation has been failed -> REQUIRED
|
|
define('EXIT_VALIDATION_UDF_NOT_VALID_VAL', 17); // UDF validation has been failed -> Not valid value, object or array
|
|
|
|
define('EXIT_AUTO_MIN', 1000); // lowest automatically-assigned error code
|
|
define('EXIT_AUTO_MAX', 2000); // highest automatically-assigned error code
|