You appear to be a bot. Output may be restricted
Description
Display the edit settings form
Usage
oik_plugins_edit_settings();
Parameters
Returns
voidSource
File name: oik/libs/oik_plugins.phpLines:
1 to 12 of 12
function oik_plugins_edit_settings( ) { global $bw_plugin; bw_form(); stag( "table", "wide-fat" ); bw_tablerow( array( __( "plugin", null ), $bw_plugin['plugin'] . ihidden( 'plugin', $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_edit_settings", __( "Change plugin", null ), null, "button-primary" )); etag( "form" ); }View on GitHub View on Trac