You are here

function uc_roles_theme in Ubercart 6.2

Same name and namespace in other branches
  1. 7.3 uc_roles/uc_roles.module \uc_roles_theme()

Implements hook_theme().

File

uc_roles/uc_roles.module, line 131

Code

function uc_roles_theme() {
  return array(
    'uc_roles_expiration' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_roles.admin.inc',
    ),
    'uc_roles_user_expiration' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'uc_roles_user_new' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}