You are here

function uc_role_theme in Ubercart 8.4

Implements hook_theme().

File

uc_role/uc_role.module, line 96
Grants roles upon accepted payment of products.

Code

function uc_role_theme() {
  return [
    'uc_role_user_expiration' => [
      'render element' => 'form',
      'file' => 'uc_role.theme.inc',
      'function' => 'theme_uc_role_user_expiration',
    ],
    'uc_role_user_new' => [
      'render element' => 'form',
      'file' => 'uc_role.theme.inc',
      'function' => 'theme_uc_role_user_new',
    ],
  ];
}