\CI_Hooks

Hooks Class

Provides a mechanism to extend the base system without hacking.

Summary

Methods
Properties
Constants
__construct()
call_hook()
$enabled
$hooks
No constants found
_run_hook()
$_objects
$_in_progress
N/A
No private methods found
No private properties found
N/A

Properties

$enabled

$enabled : boolean

Determines whether hooks are enabled

Type

boolean

$hooks

$hooks : array

List of all hooks set in config/hooks.php

Type

array

$_objects

$_objects : array

Array with class objects to use hooks methods

Type

array

$_in_progress

$_in_progress : boolean

In progress flag

Determines whether hook is in progress, used to prevent infinte loops

Type

boolean

Methods

__construct()

__construct(\CI_Config  $config) : void

Class constructor

Parameters

\CI_Config $config

call_hook()

call_hook(string  $which = '') : boolean

Call Hook

Calls a particular hook. Called by CodeIgniter.php.

Parameters

string $which

Hook name

Returns

boolean —

TRUE on success or FALSE on failure

_run_hook()

_run_hook(array  $data) : boolean

Run Hook

Runs a particular hook

Parameters

array $data

Hook details

Returns

boolean —

TRUE on success or FALSE on failure