You are here

function party_user_sync_form in Party 7

Same name and namespace in other branches
  1. 8.2 modules/party_user/party_user.admin.inc \party_user_sync_form()

User Sync Form

@todo: Optionally use the rule event to sync @todo: Limit by role @todo: Choose which Party Types to create

1 string reference to 'party_user_sync_form'
party_user_menu in modules/party_user/party_user.module
Implements hook_menu()

File

modules/party_user/party_user.admin.inc, line 114
Provide config forms for views

Code

function party_user_sync_form($form, &$form_state) {
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => 'Synchronise Users',
  );
  return $form;
}