You are here

function role_expire_form_user_profile_form_alter in Role Expire 6

Same name and namespace in other branches
  1. 7 role_expire.module \role_expire_form_user_profile_form_alter()

Implementation of hook_form_FORM-ID_alter().

File

./role_expire.module, line 193
Role Expire module

Code

function role_expire_form_user_profile_form_alter(&$form, $form_state) {
  $form['account']['roles']['#attributes'] = array(
    'class' => 'role-expire-roles',
  );
}