You are here

function uc_option_image_displays in Ubercart Option Images 7

Get a list of display styles as options for a select element

Return value

A keyed array of display methods. The first option is a null value

File

./uc_option_image.module, line 671
Allow store administrators to add images to attribute options.

Code

function uc_option_image_displays() {
  return array(
    'default' => t("use default"),
    'inline' => t('inline'),
    'selected' => t('selected'),
  );
}