You are here

function uc_attribute_locale in Ubercart 6.2

Implements hook_locale().

File

uc_attribute/uc_attribute.module, line 439

Code

function uc_attribute_locale($op = 'groups') {
  switch ($op) {
    case 'groups':
      return array(
        'uc_attribute' => t('Ubercart attributes'),
      );
    case 'info':
      $info['uc_attribute']['refresh callback'] = 'uc_attribute_locale_refresh';
      $info['uc_attribute']['format'] = FALSE;
      return $info;
  }
}