You are here

function role_export_theme in Role Export 6

Same name and namespace in other branches
  1. 7 role_export.module \role_export_theme()

Implements hook_theme().

File

./role_export.module, line 100
Role Export's primary module file.

Code

function role_export_theme() {
  return array(
    'user_admin_roles' => array(
      'render element' => 'form',
      'file' => 'role_export.admin.inc',
      'function' => 'theme_role_export_user_admin_roles',
    ),
  );
}