| Cts_Plugin | |
| Author | Jaybill McCarthy |
| License | http://communit.as/docs/license |
| Instance Variables | |
| $_logger | |
| Constructors | |
| Cts_Plugin | |
| Instance Methods | |
| addActionHook | TBD |
| addFilterHook | TBD |
| addFilter | TBD |
| addAction | TBD |
| doFilter | Processes a plugin for a filter hook. |
| doAction | Processes a plugin for an action hook. |
function addFilter( $hook, $class_name, $function_name, $priority = 10 )
TBD
| hook | The name of the hook to add. Ex.: mymodule_default_index |
| class_name | The name of the class to add the hook to. |
| function_name | The name of the function to execute within the plugin. |
| priority | An integer telling the system how to deal with multiple plugins attached to the same hook. |
void
function addAction( $hook, $class_name, $function_name, $priority = 10 )
TBD
| hook | The name of the hook to add. Ex.: mymodule_default_index_pre_render |
| class_name | The name of the class to add the hook to. |
| function_name | The name of the function to execute within the plugin. |
| priority | An integer telling the system how to deal with multiple plugins attached to the same hook. |
void
var $_logger
function Cts_Plugin()
TBD
function addActionHook( $hook )
TBD
function addFilterHook( $hook )
TBD
function addFilter( $hook, $class_name, $function_name, $priority = 10 )
TBD
function addAction( $hook, $class_name, $function_name, $priority = 10 )
Processes a plugin for a filter hook.
function doFilter( $hook, $params )
Processes a plugin for an action hook.
function doAction( $hook, $params )