sanitize( $_POST['appmaker_wc_settings'] ); update_option( 'appmaker_wc_settings', $options, false ); } $this->options = get_option( 'appmaker_wc_settings' ); ?>

Appmaker Settings

', isset( $this->options['project_id'] ) ? esc_attr( $this->options['project_id'] ) : '' ); } /** * Get the settings option array and print one of its values */ public function api_key_callback() { printf( '', isset( $this->options['api_key'] ) ? esc_attr( $this->options['api_key'] ) : '' ); } /** * Get the settings option array and print one of its values */ public function api_secret_callback() { printf( '', isset( $this->options['api_secret'] ) ? esc_attr( $this->options['api_secret'] ) : '' ); } } new APPMAKER_WC_Options();