Withdrawal::withdraw_option_save()
Save Withdraw method
Source
File: classes/Withdrawal.php
public function withdraw_option_save() { do_action( 'dozent_withdraw_options_save_before' ); $option = (array) dozent_input_array_field( 'dozent_withdraw_options' ); $option = apply_filters( 'dozent_withdraw_options_input', $option ); update_option( 'dozent_withdraw_options', $option ); do_action( 'dozent_withdraw_options_save_after' ); }
Changelog
Version | Description |
---|---|
v.1.0.0 | Introduced. |