Andrey Andreev | f9938a2 | 2012-01-07 22:10:47 +0200 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | f9938a2 | 2012-01-07 22:10:47 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | f9938a2 | 2012-01-07 22:10:47 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | /** |
| 29 | * CodeIgniter Hooks Class |
| 30 | * |
Derek Jones | 6f4d17f | 2010-03-02 13:34:23 -0600 | [diff] [blame] | 31 | * Provides a mechanism to extend the base system without hacking. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 32 | * |
| 33 | * @package CodeIgniter |
| 34 | * @subpackage Libraries |
| 35 | * @category Libraries |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 36 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 37 | * @link http://codeigniter.com/user_guide/libraries/encryption.html |
| 38 | */ |
| 39 | class CI_Hooks { |
| 40 | |
David Behler | 9b5df59 | 2011-08-14 21:04:17 +0200 | [diff] [blame] | 41 | /** |
| 42 | * Determines wether hooks are enabled |
| 43 | * |
| 44 | * @var bool |
| 45 | */ |
Timothy Warren | 48a7fbb | 2012-04-23 11:58:16 -0400 | [diff] [blame] | 46 | public $enabled = FALSE; |
Andrey Andreev | 92ebfb6 | 2012-05-17 12:49:24 +0300 | [diff] [blame] | 47 | |
David Behler | 9b5df59 | 2011-08-14 21:04:17 +0200 | [diff] [blame] | 48 | /** |
| 49 | * List of all hooks set in config/hooks.php |
| 50 | * |
| 51 | * @var array |
| 52 | */ |
Timothy Warren | 48a7fbb | 2012-04-23 11:58:16 -0400 | [diff] [blame] | 53 | public $hooks = array(); |
Andrey Andreev | 92ebfb6 | 2012-05-17 12:49:24 +0300 | [diff] [blame] | 54 | |
David Behler | 9b5df59 | 2011-08-14 21:04:17 +0200 | [diff] [blame] | 55 | /** |
| 56 | * Determines wether hook is in progress, used to prevent infinte loops |
| 57 | * |
| 58 | * @var bool |
| 59 | */ |
Timothy Warren | 48a7fbb | 2012-04-23 11:58:16 -0400 | [diff] [blame] | 60 | public $in_progress = FALSE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 61 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 62 | /** |
| 63 | * Initialize the Hooks Preferences |
| 64 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 65 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 66 | */ |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 67 | public function __construct() |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 68 | { |
Derek Jones | c64ca01 | 2010-03-07 07:55:56 -0600 | [diff] [blame] | 69 | $CFG =& load_class('Config', 'core'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 70 | |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 71 | log_message('debug', 'Hooks Class Initialized'); |
| 72 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 73 | // If hooks are not enabled in the config file |
| 74 | // there is nothing else to do |
Alex Bilbie | ed944a3 | 2012-06-02 11:07:47 +0100 | [diff] [blame^] | 75 | if ($CFG->item('enable_hooks') === FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 76 | { |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | // Grab the "hooks" definition file. |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 81 | if (defined('ENVIRONMENT') && is_file(APPPATH.'config/'.ENVIRONMENT.'/hooks.php')) |
Greg Aker | d96f882 | 2011-12-27 16:23:47 -0600 | [diff] [blame] | 82 | { |
| 83 | include(APPPATH.'config/'.ENVIRONMENT.'/hooks.php'); |
| 84 | } |
| 85 | elseif (is_file(APPPATH.'config/hooks.php')) |
| 86 | { |
| 87 | include(APPPATH.'config/hooks.php'); |
| 88 | } |
| 89 | |
Andrey Andreev | f9938a2 | 2012-01-07 22:10:47 +0200 | [diff] [blame] | 90 | // If there are no hooks, we're done. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 91 | if ( ! isset($hook) OR ! is_array($hook)) |
| 92 | { |
| 93 | return; |
| 94 | } |
| 95 | |
| 96 | $this->hooks =& $hook; |
| 97 | $this->enabled = TRUE; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 98 | } |
| 99 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 100 | // -------------------------------------------------------------------- |
| 101 | |
| 102 | /** |
| 103 | * Call Hook |
| 104 | * |
Andrey Andreev | f9938a2 | 2012-01-07 22:10:47 +0200 | [diff] [blame] | 105 | * Calls a particular hook. Called by CodeIgniter.php. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 106 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 107 | * @param string the hook name |
| 108 | * @return mixed |
| 109 | */ |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 110 | public function call_hook($which = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 111 | { |
| 112 | if ( ! $this->enabled OR ! isset($this->hooks[$which])) |
| 113 | { |
| 114 | return FALSE; |
| 115 | } |
| 116 | |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 117 | if (isset($this->hooks[$which][0]) && is_array($this->hooks[$which][0])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 118 | { |
| 119 | foreach ($this->hooks[$which] as $val) |
| 120 | { |
| 121 | $this->_run_hook($val); |
| 122 | } |
| 123 | } |
| 124 | else |
| 125 | { |
| 126 | $this->_run_hook($this->hooks[$which]); |
| 127 | } |
| 128 | |
| 129 | return TRUE; |
| 130 | } |
| 131 | |
| 132 | // -------------------------------------------------------------------- |
| 133 | |
| 134 | /** |
| 135 | * Run Hook |
| 136 | * |
| 137 | * Runs a particular hook |
| 138 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 139 | * @param array the hook details |
| 140 | * @return bool |
| 141 | */ |
Andrey Andreev | f9938a2 | 2012-01-07 22:10:47 +0200 | [diff] [blame] | 142 | protected function _run_hook($data) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 143 | { |
| 144 | if ( ! is_array($data)) |
| 145 | { |
| 146 | return FALSE; |
| 147 | } |
| 148 | |
| 149 | // ----------------------------------- |
| 150 | // Safety - Prevents run-away loops |
| 151 | // ----------------------------------- |
| 152 | |
| 153 | // If the script being called happens to have the same |
| 154 | // hook call within it a loop can happen |
Andrey Andreev | 92ebfb6 | 2012-05-17 12:49:24 +0300 | [diff] [blame] | 155 | if ($this->in_progress === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 156 | { |
| 157 | return; |
| 158 | } |
| 159 | |
| 160 | // ----------------------------------- |
| 161 | // Set file path |
| 162 | // ----------------------------------- |
| 163 | |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 164 | if ( ! isset($data['filepath'], $data['filename'])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 165 | { |
| 166 | return FALSE; |
| 167 | } |
| 168 | |
| 169 | $filepath = APPPATH.$data['filepath'].'/'.$data['filename']; |
| 170 | |
| 171 | if ( ! file_exists($filepath)) |
| 172 | { |
| 173 | return FALSE; |
| 174 | } |
| 175 | |
| 176 | // ----------------------------------- |
| 177 | // Set class/function name |
| 178 | // ----------------------------------- |
| 179 | |
| 180 | $class = FALSE; |
| 181 | $function = FALSE; |
| 182 | $params = ''; |
| 183 | |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 184 | if ( ! empty($data['class'])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 185 | { |
| 186 | $class = $data['class']; |
| 187 | } |
| 188 | |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 189 | if ( ! empty($data['function'])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 190 | { |
| 191 | $function = $data['function']; |
| 192 | } |
| 193 | |
| 194 | if (isset($data['params'])) |
| 195 | { |
| 196 | $params = $data['params']; |
| 197 | } |
| 198 | |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 199 | if ($class === FALSE && $function === FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 200 | { |
| 201 | return FALSE; |
| 202 | } |
| 203 | |
| 204 | // ----------------------------------- |
| 205 | // Set the in_progress flag |
| 206 | // ----------------------------------- |
| 207 | |
| 208 | $this->in_progress = TRUE; |
| 209 | |
| 210 | // ----------------------------------- |
| 211 | // Call the requested class and/or function |
| 212 | // ----------------------------------- |
| 213 | |
| 214 | if ($class !== FALSE) |
| 215 | { |
| 216 | if ( ! class_exists($class)) |
| 217 | { |
| 218 | require($filepath); |
| 219 | } |
| 220 | |
| 221 | $HOOK = new $class; |
| 222 | $HOOK->$function($params); |
| 223 | } |
| 224 | else |
| 225 | { |
| 226 | if ( ! function_exists($function)) |
| 227 | { |
| 228 | require($filepath); |
| 229 | } |
| 230 | |
| 231 | $function($params); |
| 232 | } |
| 233 | |
| 234 | $this->in_progress = FALSE; |
| 235 | return TRUE; |
| 236 | } |
| 237 | |
| 238 | } |
| 239 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 240 | /* End of file Hooks.php */ |
Andrey Andreev | a5dd297 | 2012-03-26 14:43:01 +0300 | [diff] [blame] | 241 | /* Location: ./system/core/Hooks.php */ |