WC_Admin_Profile::__construct
Hook in tabs.
Метод класса: WC_Admin_Profile{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Admin_Profile = new WC_Admin_Profile(); $WC_Admin_Profile->__construct();
Код WC_Admin_Profile::__construct() WC Admin Profile:: construct WC 10.3.6
public function __construct() {
add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ) );
add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ) );
add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) );
add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) );
}