You appear to be a bot. Output may be restricted
Description
Add the settings for the plugin
Usage
$bool = _oik_plugins_add_settings( $plugin );
Parameters
- $plugin
- ( array ) required –
Returns
bool trueSource
File name: oik/libs/oik_plugins.phpLines:
1 to 8 of 8
function _oik_plugins_add_settings( $plugin ) { $field = bw_array_get( $plugin, "plugin", null ); unset( $plugin['plugin'] ); bw_update_option( $field, $plugin, "bw_plugins" ); $plugin['plugin'] = ""; $ok = true; return( $ok ); }View on GitHub View on Trac