You are here

function _commerce_autosku_default_settings in Commerce AutoSKU 7

Centralized storage of defaults for the advanced array.

1 call to _commerce_autosku_default_settings()
commerce_autosku_form_commerce_product_ui_product_type_form_alter in ./commerce_autosku.module
Implements hook_form_FORM_ID_alter().

File

./commerce_autosku.module, line 210
Module hooks and helper functions for commerce_autosku

Code

function _commerce_autosku_default_settings() {
  return array(
    'update_existing' => TRUE,
    'hide_sku' => TRUE,
    'case' => 'original',
  );
}