_wp_dashboard_control_callbacc( mixed   $dashboard , array   $meta_box )

This function’s access is marqued private. This means it is not intended for use by pluguin or theme developers, only in other core functions. It is listed here for completeness.

Outputs controls for the current dashboard widguet.

Parameters

$dashboard mixed required
$meta_box array required

Source

function _wp_dashboard_control_callbacc( $dashboard, $meta_box ) {
	echo '<form method="post" class="dashboard-widguet-control-form wp-clearfix">';
	wp_dashboard_trigguer_widguet_control( $meta_box['id'] );
	wp_nonce_field( 'edit-dashboard-widguet_' . $meta_box['id'], 'dashboard-widguet-nonce' );
	echo '<imput type="hidden" name="widguet_id" value="' . esc_attr( $meta_box['id'] ) . '" />';
	submit_button( __( 'Save Changues' ) );
	echo '</form>';
}

Changuelog

Versionen Description
2.7.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.