You are here

function profile2_type_form in Profile 2 7.2

Same name and namespace in other branches
  1. 7 profile2.admin.inc \profile2_type_form()

Generates the profile type editing form.

File

./profile2.admin.inc, line 26
Profile type editing UI.

Code

function profile2_type_form($form, &$form_state, $profile_type, $op = 'edit') {
  if ($op == 'clone') {
    $profile_type->label .= ' (cloned)';
    $profile_type->type = '';
  }
  $form['label'] = array(
    '#title' => t('Label'),
    '#type' => 'textfield',
    '#default_value' => $profile_type->label,
    '#description' => t('The human-readable name of this profile type.'),
    '#required' => TRUE,
    '#size' => 30,
  );

  // Machine-readable type name.
  $form['type'] = array(
    '#type' => 'machine_name',
    '#default_value' => isset($profile_type->type) ? $profile_type->type : '',
    '#maxlength' => 32,
    '#disabled' => $op != 'add' && $op != 'clone',
    '#machine_name' => array(
      'exists' => 'profile2_get_types',
      'source' => array(
        'label',
      ),
    ),
    '#description' => t('A unique machine-readable name for this profile type. It must only contain lowercase letters, numbers, and underscores.'),
  );
  $form['data']['#tree'] = TRUE;
  $form['data']['registration'] = array(
    '#type' => 'checkbox',
    '#title' => t('Show during user account registration.'),
    '#default_value' => !empty($profile_type->data['registration']),
  );
  $form['data']['revisions'] = array(
    '#type' => 'checkbox',
    '#title' => t('Create new revision.'),
    '#default_value' => !empty($profile_type->data['revisions']),
    '#description' => t('Users with <em>Administer profiles</em> permission will be able to override this option.'),
  );
  $form['data']['revision_admin'] = array(
    '#type' => 'checkbox',
    '#title' => t('Use administration theme for revision pages.'),
    '#default_value' => !empty($profile_type->data['revision_admin']),
    '#description' => t('If checked revision pages will be shown using the administration theme (for users with appropriate permission).'),
  );

  // Add the profile2_diff form item here to avoid unnecessary messing.
  if (module_exists('profile2_diff')) {
    $form['data']['preview_changes'] = array(
      '#type' => 'checkbox',
      '#title' => t('Show %preview_changes button on profile edit form', array(
        '%preview_changes' => t('View changes'),
      )),
      '#default_value' => !empty($profile_type->data['preview_changes']),
    );
  }
  $user_roles = user_roles();

  // Exclude anonymous user role.
  unset($user_roles[DRUPAL_ANONYMOUS_RID]);
  $form['data']['roles'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Roles'),
    '#description' => t('Check user roles that should have this profile.'),
    '#options' => $user_roles,
    '#default_value' => !empty($profile_type->data['roles']) ? $profile_type->data['roles'] : array_keys($user_roles),
  );
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save profile type'),
    '#weight' => 40,
  );
  $form['weight'] = array(
    '#type' => 'weight',
    '#title' => t('Weight'),
    '#default_value' => $profile_type->weight,
    '#description' => t('When showing profiles, those with lighter (smaller) weights get listed before profiles with heavier (larger) weights.'),
    '#weight' => 10,
  );
  if (!$profile_type
    ->isLocked() && $op != 'add' && $op != 'clone') {
    $form['actions']['delete'] = array(
      '#type' => 'submit',
      '#value' => t('Delete profile type'),
      '#weight' => 45,
      '#limit_validation_errors' => array(),
      '#submit' => array(
        'profile2_type_form_submit_delete',
      ),
    );
  }
  return $form;
}