WC_Admin_API_Keys::allow_save_settings()
Check if should allow save settings. This prevents "Your settings have been saved." notices on the table list.
Method of the class: WC_Admin_API_Keys{}
No Hooks.
Return
true|false
.
Usage
$WC_Admin_API_Keys = new WC_Admin_API_Keys(); $WC_Admin_API_Keys->allow_save_settings( $allow );
- $allow(true|false) (required)
- If allow save settings.
WC_Admin_API_Keys::allow_save_settings() WC Admin API Keys::allow save settings code WC 7.5.1
public function allow_save_settings( $allow ) { if ( ! isset( $_GET['create-key'], $_GET['edit-key'] ) ) { // WPCS: input var okay, CSRF ok. return false; } return $allow; }