You are here

function uc_product_kit_update_6001 in Ubercart 6.2

File

uc_product_kit/uc_product_kit.install, line 150
Install, update and uninstall functions for the uc_product_kit module.

Code

function uc_product_kit_update_6001() {
  $ret = array();
  variable_set('uc_image_product_kit', 'field_image_cache');
  $t = get_t();
  $ret[] = array(
    'success' => TRUE,
    $t('field_image_cache set as the Ubercart image for product kits.'),
  );
  return $ret;
}