You are here

function uc_option_image_theme in Ubercart Option Images 7

Same name and namespace in other branches
  1. 6 uc_option_image.module \uc_option_image_theme()

Implements hook_theme().

File

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

Code

function uc_option_image_theme($existing, $type, $theme, $path) {
  return array(
    'uc_option_image_selected' => array(
      'variables' => array(
        'values' => NULL,
        'aid' => NULL,
        'pid' => NULL,
      ),
      'file' => 'uc_option_image.theme.inc',
    ),
    'uc_option_image_inline' => array(
      'variables' => array(
        'values' => NULL,
      ),
      'file' => 'uc_option_image.theme.inc',
    ),
  );
}