diff options
author | Andrey Andreev <narf@devilix.net> | 2017-11-09 12:27:11 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2017-11-09 12:27:11 +0100 |
commit | f2d92ea6cc175a43687665939b097cb6a9c79399 (patch) | |
tree | 1987bcc874a4d6ff62de7d9276ba0f53d0957085 /system/core | |
parent | 0bb08b7a7ab11b4cf655110a5bd17cf7fc61accb (diff) |
Refactor CI_Config, CI_Hooks interaction (close #5323)
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/CodeIgniter.php | 28 | ||||
-rw-r--r-- | system/core/Hooks.php | 6 |
2 files changed, 17 insertions, 17 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index c97ff2bbb..767e1a17a 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -143,20 +143,6 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* * ------------------------------------------------------ - * Instantiate the hooks class - * ------------------------------------------------------ - */ - $EXT =& load_class('Hooks', 'core'); - -/* - * ------------------------------------------------------ - * Is there a "pre_system" hook? - * ------------------------------------------------------ - */ - $EXT->call_hook('pre_system'); - -/* - * ------------------------------------------------------ * Instantiate the config class * ------------------------------------------------------ * @@ -178,6 +164,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* * ------------------------------------------------------ + * Instantiate the hooks class + * ------------------------------------------------------ + */ + $EXT =& load_class('Hooks', 'core', $CFG); + +/* + * ------------------------------------------------------ + * Is there a "pre_system" hook? + * ------------------------------------------------------ + */ + $EXT->call_hook('pre_system'); + +/* + * ------------------------------------------------------ * Important charset-related stuff * ------------------------------------------------------ * diff --git a/system/core/Hooks.php b/system/core/Hooks.php index f2d6f21ca..d21381f5e 100644 --- a/system/core/Hooks.php +++ b/system/core/Hooks.php @@ -83,16 +83,16 @@ class CI_Hooks { /** * Class constructor * + * @param CI_Config $config * @return void */ - public function __construct() + public function __construct(CI_Config $config) { - $CFG =& load_class('Config', 'core'); log_message('info', 'Hooks Class Initialized'); // If hooks are not enabled in the config file // there is nothing else to do - if ($CFG->item('enable_hooks') === FALSE) + if ($config->item('enable_hooks') === FALSE) { return; } |