Files
2018-07-09 12:34:06 +02:00

295 lines
12 KiB
PHP

<?php
/**
* Booster for WooCommerce - Settings - SKU
*
* @version 3.7.0
* @since 2.8.0
* @author Algoritmika Ltd.
* @todo deprecate `wcj_sku_prefix` and `wcj_sku_suffix` (as user can now add it directly to "Template")
* @todo tags (check SKU plugin); template: '{category_prefix}{tag_prefix}{prefix}{sku_number}{suffix}{tag_suffix}{category_suffix}{variation_suffix}'
* @todo add "Sequential Number Generation - By Category" to SKU plugin
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
$settings = array(
array(
'title' => __( 'SKU Format Options', 'woocommerce-jetpack' ),
'type' => 'title',
'id' => 'wcj_sku_format_options',
),
array(
'title' => __( 'Number Generation', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_number_generation',
'default' => 'product_id',
'type' => 'select',
'options' => array(
'product_id' => __( 'From product ID', 'woocommerce-jetpack' ),
'sequential' => __( 'Sequential', 'woocommerce-jetpack' ),
'hash_crc32' => __( 'Pseudorandom - Hash (max 10 digits)', 'woocommerce-jetpack' ),
),
'desc_tip' => __( 'Number generation method.', 'woocommerce-jetpack' ) . ' ' .
__( 'Possible values: from product ID, sequential or pseudorandom.', 'woocommerce-jetpack' ),
'desc' => apply_filters( 'booster_message', '', 'desc' ),
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
),
array(
'title' => __( 'Sequential Number Generation - Counter', 'woocommerce-jetpack' ),
'desc_tip' => __( 'If you choose to use sequential number inside SKU, you can set current sequential number counter here.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_number_generation_sequential',
'default' => 1,
'type' => 'number',
'desc' => apply_filters( 'booster_message', '', 'desc' ),
'custom_attributes' => array_merge(
is_array( apply_filters( 'booster_message', '', 'readonly' ) ) ? apply_filters( 'booster_message', '', 'readonly' ) : array(),
array( 'step' => '1', 'min' => '0', )
),
),
array(
'title' => __( 'Sequential Number Generation - By Category', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Enables sequential number generation by category.', 'woocommerce-jetpack' ) . ' ' . apply_filters( 'booster_message', '', 'desc' ),
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_number_generation_sequential_by_cat',
'default' => 'no',
'type' => 'checkbox',
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
),
array(
'title' => __( 'Prefix', 'woocommerce-jetpack' ),
'desc_tip' => __( 'SKU prefix.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_prefix',
'default' => '',
'type' => 'text',
),
array(
'title' => __( 'Minimum Number Length', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Minimum length for SKU number part.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_minimum_number_length',
'default' => 0,
'type' => 'number',
),
array(
'title' => __( 'Suffix', 'woocommerce-jetpack' ),
'desc_tip' => __( 'SKU suffix.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_suffix',
'default' => '',
'type' => 'text',
),
array(
'title' => __( 'Attributes Separator', 'woocommerce-jetpack' ),
'desc_tip' => sprintf( __( 'Used in %s, %s, %s and %s.', 'woocommerce-jetpack' ),
'<em>{variation_attributes}</em>', '<em>{variation_attribute=X}</em>', '<em>{attribute=X}</em>', '<em>{parent_attribute=X}' ),
'id' => 'wcj_sku_variations_product_slug_sep',
'default' => '-',
'type' => 'text',
'css' => 'width:50px;',
'desc' => apply_filters( 'booster_message', '', 'desc' ),
'custom_attributes' => apply_filters( 'booster_message', '', 'readonly' ),
),
array(
'title' => __( 'Characters Case', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_characters_case',
'default' => 'original',
'type' => 'select',
'options' => array(
'original' => __( 'Original (no changes)', 'woocommerce-jetpack' ),
'lower' => __( 'Convert to lowercase', 'woocommerce-jetpack' ),
'upper' => __( 'Convert to uppercase', 'woocommerce-jetpack' ),
),
),
array(
'title' => __( 'Template', 'woocommerce-jetpack' ),
'desc_tip' => __( 'SKU template.', 'woocommerce-jetpack' ),
'desc' => wcj_message_replaced_values( array(
'{category_prefix}',
'{category_suffix}',
'{prefix}',
'{suffix}',
'{variation_suffix}',
'{sku_number}',
'{product_slug}',
'{product_slug_acronym}',
'{parent_product_slug}',
'{parent_product_slug_acronym}',
'{variation_attributes}',
'{variation_attribute=X}',
'{attribute=X}',
'{parent_attribute=X}',
) ) . '<br>' . sprintf( __( 'You can also use shortcodes here, e.g.: %s etc.', 'woocommerce-jetpack' ), '<code>' . implode( '</code>, <code>', array(
'[wcj_product_author]',
'[wcj_product_title]',
) ) . '</code>' ),
'id' => 'wcj_sku_template',
'default' => '{category_prefix}{prefix}{sku_number}{suffix}{category_suffix}{variation_suffix}',
'type' => 'text',
'css' => 'width:99%;',
),
array(
'title' => __( 'Variable Products Variations', 'woocommerce-jetpack' ),
'desc_tip' => __( 'SKU generation for variations. Please note, that if "Generate SKU for New Products Only on First Publish" option below is not checked, then on new variable product creation, variations will get same SKUs as parent product, and if you want variations to have different SKUs, you will need to run "Autogenerate SKUs" tool manually.' ) . ' ' .
__( 'Possible values: SKU same as parent\'s product; Generate different SKU for each variation; SKU same as parent\'s product + variation letter suffix.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_variations_handling',
'default' => 'as_variable',
'type' => 'select',
'options' => array(
'as_variable' => __( 'SKU same as parent\'s product', 'woocommerce-jetpack' ),
'as_variation' => __( 'Generate different SKU for each variation', 'woocommerce-jetpack' ),
'as_variable_with_suffix' => __( 'SKU same as parent\'s product + variation letter suffix', 'woocommerce-jetpack' ),
),
'desc' => apply_filters( 'booster_message', '', 'desc' ),
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
),
array(
'type' => 'sectionend',
'id' => 'wcj_sku_format_options',
),
);
$settings = array_merge( $settings, array(
array(
'title' => __( 'Categories Options', 'woocommerce-jetpack' ),
'type' => 'title',
'id' => 'wcj_sku_categories_options',
),
array(
'title' => __( 'Multiple Categories', 'woocommerce-jetpack' ),
'desc_tip' => __( 'This options defines how to handle category prefixes and suffixes, if product has multiple categories.', 'woocommerce-jetpack' ),
'type' => 'select',
'id' => 'wcj_sku_categories_multiple',
'default' => 'first',
'options' => array(
'first' => __( 'Use first category', 'woocommerce-jetpack' ),
'glue' => __( '"Glue" categories', 'woocommerce-jetpack' ),
),
),
array(
'desc' => __( 'Category separator (i.e. "glue")', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Ignored if "Use first category" is selected above.', 'woocommerce-jetpack' ),
'type' => 'text',
'id' => 'wcj_sku_categories_multiple_glue',
'default' => '',
),
) );
$product_categories = get_terms( 'product_cat', 'orderby=name&hide_empty=0' );
if ( ! empty( $product_categories ) && ! is_wp_error( $product_categories ) ){
foreach ( $product_categories as $product_category ) {
$settings = array_merge( $settings, array(
array(
'title' => $product_category->name,
'desc' => __( 'Prefix', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_prefix_cat_' . $product_category->term_id,
'default' => '',
'type' => 'text',
'desc_tip' => apply_filters( 'booster_message', '', 'desc_no_link' ),
'custom_attributes' => apply_filters( 'booster_message', '', 'readonly' ),
),
array(
'title' => '',
'desc' => __( 'Suffix', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_suffix_cat_' . $product_category->term_id,
'default' => '',
'type' => 'text',
),
array(
'title' => '',
'desc' => __( 'Counter (Sequential)', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_counter_cat_' . $product_category->term_id,
'default' => 1,
'type' => 'number',
),
) );
}
}
$settings = array_merge( $settings, array(
array(
'type' => 'sectionend',
'id' => 'wcj_sku_categories_options',
),
) );
$settings = array_merge( $settings, array(
array(
'title' => __( 'More Options', 'woocommerce-jetpack' ),
'type' => 'title',
'id' => 'wcj_sku_more_options',
),
array(
'title' => __( 'Automatically Generate SKU for New Products', 'woocommerce-jetpack' ),
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Alternatively you can use Autogenerate SKUs tool.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_new_products_generate_enabled',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => __( 'Generate SKU for New Products Only on First Publish', 'woocommerce-jetpack' ),
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
'desc_tip' => __( 'This is important if, for example, you are using category prefix and don\'t want SKU generated too early, before you set the category.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_new_products_generate_only_on_publish',
'default' => 'no',
'type' => 'checkbox',
),
array(
'title' => __( 'Allow Duplicate SKUs', 'woocommerce-jetpack' ),
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
'desc_tip' => __( 'If you wish to set SKUs manually, and you need to have same SKUs for different products, you can enable allow duplicate SKUs option here (which is disabled in WooCommerce by default).', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_allow_duplicates_enabled',
'default' => 'no',
'type' => 'checkbox',
),
array(
'title' => __( 'Search by SKU', 'woocommerce-jetpack' ),
'desc' => __( 'Add', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Add product searching by SKU on frontend.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_search_enabled',
'default' => 'no',
'type' => 'checkbox',
),
array(
'desc' => __( 'Advanced: Search by SKU Hook', 'woocommerce-jetpack' ),
'desc_tip' => __( 'If you are experiencing any issues with searching by SKU, try changing this option.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_search_hook',
'default' => 'pre_get_posts',
'type' => 'select',
'options' => array(
'pre_get_posts' => 'pre_get_posts',
'posts_search' => 'posts_search',
),
),
array(
'title' => __( 'Generate SKUs Only for Products with Empty SKU', 'woocommerce-jetpack' ),
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
'desc_tip' => __( 'This may help if you are going to use Autogenerate SKUs tool, but don\'t want to change your existing SKUs.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_generate_only_for_empty_sku',
'default' => 'no',
'type' => 'checkbox',
),
array(
'title' => __( 'Add SKU to Customer Emails', 'woocommerce-jetpack' ),
'desc' => __( 'Add', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Adds product SKU to customer\'s emails.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_add_to_customer_emails',
'default' => 'no',
'type' => 'checkbox',
),
array(
'title' => __( 'Remove SKU from Admin Emails', 'woocommerce-jetpack' ),
'desc' => __( 'Remove', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Removes product SKU from admin\'s emails.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_remove_from_admin_emails',
'default' => 'no',
'type' => 'checkbox',
),
array(
'title' => __( 'Disable SKUs', 'woocommerce-jetpack' ),
'desc' => __( 'Disable', 'woocommerce-jetpack' ),
'desc_tip' => __( 'Enable this option if you are not going to use SKUs in your shop at all.', 'woocommerce-jetpack' ),
'id' => 'wcj_sku_disabled',
'default' => 'no',
'type' => 'checkbox',
),
array(
'type' => 'sectionend',
'id' => 'wcj_sku_more_options',
),
) );
return $settings;