Description
Usage
OIK_action::__construct( $action, $action_label, $action_cb );Parameters
- $action
- ( mixed ) optional –
- $action_label
- ( mixed ) optional –
- $action_cb
- ( mixed ) optional –
Returns
voidSource
File name: oik-rwd/admin/oik-settings.phpLines:
1 to 14 of 14
function __construct( $action=null, $action_label=null, $action_cb=null ) { $this->action = $action; if ( $action_label ) { $this->action_label = $action_label; } else { $this->action_label = $action; } if( $action_cb ) { $this->action_cb = $action_cb; } else { $this->action_cb = "{$action}_cb"; } }View on GitHub
Called by
Invoked by
Calls
Call hooks
API Letters:
