You appear to be a bot. Output may be restricted
Description
Display the add settings form
Usage
oik_plugins_add_settings();
Parameters
Returns
voidSource
File name: oik/libs/oik_plugins.phpLines:
1 to 17 of 17
function oik_plugins_add_settings( ) { global $bw_plugin; if ( null === $bw_plugin ) { $bw_plugin['plugin']=''; $bw_plugin['server']=''; $bw_plugin['apikey']=''; } bw_form(); stag( "table", "widefat" ); BW_::bw_textfield( "plugin", 20, __( "plugin", null ), $bw_plugin['plugin'] ); $plugin_server = ( null === $bw_plugin['server']) ? '' : stripslashes( $bw_plugin['server'] ); BW_::bw_textfield( "server", 100, __( "server", null ), $plugin_server ); BW_::bw_textfield( "apikey", 26, __( "apikey", null ), $bw_plugin["apikey"] ); etag( "table" ); BW_::p( isubmit( "_oik_plugins_add_settings", __( "Add new plugin", null ), null, "button-primary" ) ); etag( "form" ); }View on GitHub View on Trac