You are here

function multiple_registration_theme_registry_alter in Multiple Registration 7

Implements hook_theme_registry_alter().

Altering user_admin_roles theme function. We need it for customization user roles table.

File

./multiple_registration.module, line 101
Add ability to create several registration pages.

Code

function multiple_registration_theme_registry_alter(&$theme_registry) {
  $theme_registry['user_admin_roles']['function'] = 'multiple_registration_user_admin_roles';
}