You are here

public function IndividualTypeForm::form in CRM Core 8.2

Same name and namespace in other branches
  1. 8.3 modules/crm_core_contact/src/Form/IndividualTypeForm.php \Drupal\crm_core_contact\Form\IndividualTypeForm::form()
  2. 8 modules/crm_core_contact/src/Form/IndividualTypeForm.php \Drupal\crm_core_contact\Form\IndividualTypeForm::form()

Gets the actual form array to be built.

Overrides EntityForm::form

See also

\Drupal\Core\Entity\EntityForm::processForm()

\Drupal\Core\Entity\EntityForm::afterBuild()

File

modules/crm_core_contact/src/Form/IndividualTypeForm.php, line 17

Class

IndividualTypeForm
Form for edit individual types.

Namespace

Drupal\crm_core_contact\Form

Code

public function form(array $form, FormStateInterface $form_state) {
  $form = parent::form($form, $form_state);

  /* @var \Drupal\crm_core_contact\Entity\IndividualType $type */
  $type = $this->entity;
  $form['name'] = array(
    '#title' => $this
      ->t('Name'),
    '#type' => 'textfield',
    '#default_value' => $type->name,
    '#description' => $this
      ->t('The human-readable name of this individual type. It is recommended that this name begin with a capital letter and contain only letters, numbers, and spaces. This name must be unique.'),
    '#required' => TRUE,
    '#size' => 32,
  );
  $form['type'] = array(
    '#type' => 'machine_name',
    '#default_value' => $type
      ->id(),
    '#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
    '#machine_name' => array(
      'exists' => 'Drupal\\crm_core_contact\\Entity\\IndividualType::load',
      'source' => array(
        'name',
      ),
    ),
    '#description' => $this
      ->t('A unique machine-readable name for this individual type. It must only contain lowercase letters, numbers, and underscores.'),
  );
  $form['description'] = array(
    '#title' => $this
      ->t('Description'),
    '#type' => 'textarea',
    '#default_value' => $type->description,
    '#description' => $this
      ->t('Describe this individual type.'),
  );

  // Primary fields section.
  $form['primary_fields_container'] = array(
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Primary Fields'),
    '#description' => $this
      ->t('Primary fields are used to tell other modules what fields to use for common communications tasks such as sending an email, addressing an envelope, etc. Use the fields below to indicate the primary fields for this individual type.'),
  );

  // @todo Move primary fields array to some hook. This Would allow extend this
  // list to other modules. This hook should return arra('key'=>t('Name')).
  $default_primary_fields = array(
    'email',
    'address',
    'phone',
  );

  //    $primary_fields = variable_get('crm_core_contact_default_primary_fields', $default_primary_fields);
  $primary_fields = $default_primary_fields;
  $options = array();
  if (isset($type->type)) {

    /* @var \Drupal\Core\Field\FieldDefinitionInterface[] $instances */
    $instances = \Drupal::service('entity_field.manager')
      ->getFieldDefinitions('crm_core_individual', $type->type);
    $instances = isset($instances[$type->type]) ? $instances[$type->type] : array();
    foreach ($instances as $instance) {
      $options[$instance
        ->getName()] = $instance
        ->getLabel();
    }
  }
  foreach ($primary_fields as $primary_field) {
    $form['primary_fields_container'][$primary_field] = array(
      '#type' => 'select',
      '#title' => $this
        ->t('Primary @field field', array(
        '@field' => $primary_field,
      )),
      '#default_value' => empty($type->primary_fields[$primary_field]) ? '' : $type->primary_fields[$primary_field],
      '#empty_value' => '',
      '#empty_option' => $this
        ->t('--Please Select--'),
      '#options' => $options,
    );
  }
  return $form;
}