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

Appmaker Settings

options['project_id'] ) ) { $auto_login = false; $manage_url_base = 'http://manage.appmaker.xyz'; $manage_url = $manage_url_base . '/apps/' . $this->options['project_id'] . '/'; if ( $auto_login ) { $manage_url = site_url( '?rest_route=/appmaker-wc/v1/manage-login&url=' . $manage_url_base . '&return_to=' . '/apps/' . $this->options['project_id'] ); } ?>

target="_blank" href="" class="">

', 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();