Merge pull request woocommerce/woocommerce-beta-tester#33 from woocommerce/update/channel-settings-radio

Use radio inputs for settings
This commit is contained in:
Claudio Sanches 2018-06-06 11:27:31 -03:00 committed by GitHub
commit 7a17bc4a01
1 changed files with 35 additions and 33 deletions

View File

@ -22,22 +22,20 @@ class WC_Beta_Tester_Settings {
/** /**
* Initialise settings * Initialise settings
*
* @return void
*/ */
public function settings_init() { public function settings_init() {
register_setting( 'wc-beta-tester', 'wc_beta_tester_options' ); register_setting( 'wc-beta-tester', 'wc_beta_tester_options' );
add_settings_section( add_settings_section(
'wc-beta-tester-update', 'wc-beta-tester-update',
__( 'Plugin Update Settings', 'woocommerce-beta-tester' ), __( 'Update Settings', 'woocommerce-beta-tester' ),
array( $this, 'update_section_html' ), array( $this, 'update_section_html' ),
'wc-beta-tester' 'wc-beta-tester'
); );
add_settings_field( add_settings_field(
'wc-beta-tester-version', 'wc-beta-tester-version',
__( 'WooCommerce Version', 'woocommerce-beta-tester' ), __( 'Release Channel', 'woocommerce-beta-tester' ),
array( $this, 'version_select_html' ), array( $this, 'version_select_html' ),
'wc-beta-tester', 'wc-beta-tester',
'wc-beta-tester-update', 'wc-beta-tester-update',
@ -51,11 +49,10 @@ class WC_Beta_Tester_Settings {
* Update section HTML output. * Update section HTML output.
* *
* @param array $args Arguments. * @param array $args Arguments.
* @return void
*/ */
public function update_section_html( $args ) { public function update_section_html( $args ) {
?> ?>
<p id="<?php echo esc_attr( $args['id'] ); ?>"><?php esc_html_e( 'Which version of WooCommerce to provide updates for.', 'woocommerce-beta-tester' ); ?></p> <p id="<?php echo esc_attr( $args['id'] ); ?>"><?php esc_html_e( 'The following settings allow you to choose which WooCommerce updates to receive on this site, including beta and RC versions not quite ready for production deployment.', 'woocommerce-beta-tester' ); ?></p>
<?php <?php
} }
@ -63,44 +60,49 @@ class WC_Beta_Tester_Settings {
* Version select markup output * Version select markup output
* *
* @param array $args Arguments. * @param array $args Arguments.
* @return void
*/ */
public function version_select_html( $args ) { public function version_select_html( $args ) {
$options = get_option( 'wc_beta_tester_options' ); $options = get_option( 'wc_beta_tester_options' );
?> $selected = isset( $options[ $args['label_for'] ] ) ? $options[ $args['label_for'] ] : 'stable';
<select $channels = array(
id="<?php echo esc_attr( $args['label_for'] ); ?>" 'beta' => array(
name="wc_beta_tester_options[<?php echo esc_attr( $args['label_for'] ); ?>]" 'name' => __( 'Beta Releases', 'woocommerce-beta-tester' ),
> 'description' => __( 'Beta releases contain experimental functionality for testing purposes only. This channel will also include RC and stable releases if more current.', 'woocommerce-beta-tester' ),
<option value="beta" <?php echo isset( $options[ $args['label_for'] ] ) ? ( selected( $options[ $args['label_for'] ], 'beta', false ) ) : ( '' ); ?>> ),
<?php esc_html_e( 'Beta', 'woocommerce-beta-tester' ); ?> 'rc' => array(
</option> 'name' => __( 'Release Candidates', 'woocommerce-beta-tester' ),
<option value="rc" <?php echo isset( $options[ $args['label_for'] ] ) ? ( selected( $options[ $args['label_for'] ], 'rc', false ) ) : ( '' ); ?>> 'description' => __( 'Release candidates are released to ensure any critical problems have not gone undetected. This channel will also include stable releases if more current.', 'woocommerce-beta-tester' ),
<?php esc_html_e( 'Release Candidate', 'woocommerce-beta-tester' ); ?> ),
</option> 'stable' => array(
<option value="stable" <?php echo isset( $options[ $args['label_for'] ] ) ? ( selected( $options[ $args['label_for'] ], 'stable', false ) ) : ( '' ); ?>> 'name' => __( 'Stable Releases', 'woocommerce-beta-tester' ),
<?php esc_html_e( 'Stable', 'woocommerce-beta-tester' ); ?> 'description' => __( 'This is the default behaviour in WordPress.', 'woocommerce-beta-tester' ),
</option> ),
</select> );
<p class="description"> echo '<fieldset><legend class="screen-reader-text"><span>' . esc_html__( 'Update Channel', 'woocommerce-beta-tester' ) . '</span></legend>';
<?php esc_html_e( 'Which version of WooCommerce do you want to keep up to date with?.', 'woocommerce-beta-tester' ); ?> foreach ( $channels as $channel_id => $channel ) {
</p> ?>
<?php <label>
<input type="radio" id="<?php echo esc_attr( $args['label_for'] ); ?>" name="wc_beta_tester_options[<?php echo esc_attr( $args['label_for'] ); ?>]" value="<?php echo esc_attr( $channel_id ); ?>" <?php checked( $selected, $channel_id ); ?> />
<?php echo esc_html( $channel['name'] ); ?>
<p class="description">
<?php echo esc_html( $channel['description'] ); ?>
</p>
</label>
<br>
<?php
}
echo '</fieldset>';
} }
/** /**
* Add options page to menu * Add options page to menu
*
* @return void
*/ */
public function add_to_menus() { public function add_to_menus() {
add_submenu_page( 'plugins.php', __( 'WooCommerce Beta Tester', 'woocommerce-beta-tester' ), __( 'WooCommerce Beta Tester', 'woocommerce-beta-tester' ), 'install_plugins', 'wc-beta-tester', array( $this, 'settings_page_html' ) ); add_submenu_page( 'plugins.php', __( 'WooCommerce Beta Tester', 'woocommerce-beta-tester' ), __( 'WC Beta Tester', 'woocommerce-beta-tester' ), 'install_plugins', 'wc-beta-tester', array( $this, 'settings_page_html' ) );
} }
/** /**
* Output settings HTML * Output settings HTML
*
* @return void
*/ */
public function settings_page_html() { public function settings_page_html() {
if ( ! current_user_can( 'install_plugins' ) ) { if ( ! current_user_can( 'install_plugins' ) ) {
@ -122,7 +124,7 @@ class WC_Beta_Tester_Settings {
settings_fields( 'wc-beta-tester' ); settings_fields( 'wc-beta-tester' );
do_settings_sections( 'wc-beta-tester' ); do_settings_sections( 'wc-beta-tester' );
submit_button( 'Save Settings' ); submit_button();
?> ?>
</form> </form>