woocommerce/tests/framework/helpers/class-wc-helper-settings.php

84 lines
2.4 KiB
PHP
Raw Normal View History

2016-03-07 21:46:40 +00:00
<?php
/**
* Class WC_Helper_Settings.
*
* This helper class should ONLY be used for unit tests!
*/
class WC_Helper_Settings {
/**
* Hooks in some dummy data for testing the settings REST API.
* @since 2.7.0
*/
public static function register() {
add_filter( 'woocommerce_settings_groups', array( 'WC_Helper_Settings', 'register_groups' ) );
add_filter( 'woocommerce_settings_test', array( 'WC_Helper_Settings', 'register_test_settings' ) );
2016-03-07 21:46:40 +00:00
}
/**
* Registers some example setting groups, including invalid ones that should not show up in JSON responses.
2016-03-07 21:46:40 +00:00
* @since 2.7.0
* @param array $groups
2016-03-07 21:46:40 +00:00
* @return array
*/
public static function register_groups( $groups ) {
$groups[] = array(
2016-03-07 21:46:40 +00:00
'id' => 'test',
'bad' => 'value',
'label' => __( 'Test Extension', 'woocommerce' ),
'description' => __( 'My awesome test settings.', 'woocommerce' ),
);
$groups[] = array(
'id' => 'sub-test',
'parent_id' => 'test',
'label' => __( 'Sub test', 'woocommerce' ),
'description' => '',
);
$groups[] = array(
2016-03-07 21:46:40 +00:00
'id' => 'coupon-data',
'label' => __( 'Coupon Data', 'woocommerce' ),
);
$groups[] = array(
2016-03-07 21:46:40 +00:00
'id' => 'invalid',
);
return $groups;
2016-03-07 21:46:40 +00:00
}
/**
* Registers some example settings.
* @since 2.7.0
* @param array $settings
* @return array
*/
public static function register_test_settings( $settings ) {
$settings[] = array(
'id' => 'catalog_options',
'label' => __( 'Shop & Product Pages', 'woocommerce' ),
'type' => 'title',
);
$settings[] = array(
'id' => 'woocommerce_shop_page_display',
'label' => __( 'Shop Page Display', 'woocommerce' ),
'description' => __( 'This controls what is shown on the product archive.', 'woocommerce' ),
'default' => '',
'type' => 'select',
'options' => array(
'' => __( 'Show products', 'woocommerce' ),
'subcategories' => __( 'Show categories &amp; subcategories', 'woocommerce' ),
'both' => __( 'Show both', 'woocommerce' ),
),
);
$settings[] = array(
'id' => 'woocommerce_enable_lightbox',
'label' => __( 'Product Image Gallery', 'woocommerce' ),
'description' => __( 'Enable Lightbox for product images', 'woocommerce' ),
'default' => 'yes',
'tip' => __( 'Product gallery images will open in a lightbox.', 'woocommerce' ),
'type' => 'checkbox',
);
return $settings;
}
2016-03-07 21:46:40 +00:00
}