You are here

function mandrill_activity_entity_form in Mandrill 7.2

Same name and namespace in other branches
  1. 7 modules/mandrill_activity/mandrill_activity.admin.inc \mandrill_activity_entity_form()

Returns a form for a mandrill_activity_entity.

File

modules/mandrill_activity/mandrill_activity.admin.inc, line 10
Administration pages for mandrill_activity module.

Code

function mandrill_activity_entity_form($form, &$form_state, MandrillActivityEntity $mandrill_activity_entity = NULL, $op = 'edit') {
  if ($op == 'clone') {
    $mandrill_activity_entity->label .= ' (cloned)';
    $mandrill_activity_entity->name = '';
  }
  $entitynotnull = isset($mandrill_activity_entity->mandrill_activity_entity_id);
  $form_state['mandrill_activity'] = $mandrill_activity_entity;
  $form['label'] = array(
    '#title' => t('Label'),
    '#type' => 'textfield',
    '#default_value' => $entitynotnull ? $mandrill_activity_entity->label : '',
    '#description' => t('The human-readable name of this activity entity.'),
    '#required' => TRUE,
    '#weight' => -10,
  );
  $form['name'] = array(
    '#title' => t('Name'),
    '#type' => 'machine_name',
    '#default_value' => $entitynotnull ? $mandrill_activity_entity->name : '',
    '#description' => t('machine name should only contain lowercase letters & underscores'),
    '#disabled' => !empty($mandrill_activity_entity->name),
    '#required' => TRUE,
    '#machine_name' => array(
      'exists' => 'mandrill_activity_load',
      'source' => array(
        'label',
      ),
    ),
    '#weight' => -9,
  );
  $form['drupal_entity'] = array(
    '#title' => t('Drupal entity'),
    '#type' => 'fieldset',
    '#attributes' => array(
      'id' => array(
        'Mandrill-activity-drupal-entity',
      ),
    ),
    '#weight' => -8,
  );

  // Prep the entity type list before creating the form item:
  $entity_types = array(
    '' => t('-- Select --'),
  );
  foreach (entity_get_info() as $entity_type => $info) {

    // Ignore Mandrill entity types.
    if (strpos($entity_type, 'mandrill') === FALSE) {
      $entity_types[$entity_type] = $info['label'];
    }
  }
  asort($entity_types);
  $form['drupal_entity']['entity_type'] = array(
    '#title' => t('Entity type'),
    '#type' => 'select',
    '#options' => $entity_types,
    '#default_value' => $entitynotnull ? $mandrill_activity_entity->entity_type : 0,
    '#required' => TRUE,
    '#description' => t('Select an entity type to enable Mandrill history on.'),
    '#ajax' => array(
      'callback' => 'mandrill_activity_mapping_form_callback',
      'wrapper' => 'Mandrill-activity-drupal-entity',
    ),
    '#weight' => -8,
  );
  $form_entity_type =& $form_state['values']['entity_type'];
  if (!$form_entity_type && $entitynotnull) {
    $form_entity_type = $mandrill_activity_entity->entity_type;
  }
  if ($form_entity_type) {

    // Prep the bundle list before creating the form item:
    $bundles = array(
      '' => t('-- Select --'),
    );
    $info = entity_get_info($form_entity_type);
    foreach ($info['bundles'] as $key => $bundle) {
      $bundles[$key] = $bundle['label'];
    }
    asort($bundles);
    $form['drupal_entity']['bundle'] = array(
      '#title' => t('Entity bundle'),
      '#type' => 'select',
      '#required' => TRUE,
      '#description' => t('Select a Drupal entity bundle with an email address to report on.'),
      '#options' => $bundles,
      '#default_value' => $entitynotnull ? $mandrill_activity_entity->bundle : 0,
      '#weight' => -7,
      '#ajax' => array(
        'callback' => 'mandrill_activity_mapping_form_callback',
        'wrapper' => 'Mandrill-activity-drupal-entity',
      ),
    );
    $form_bundle =& $form_state['values']['bundle'];
    if (!$form_bundle && $entitynotnull) {
      $form_bundle = $mandrill_activity_entity->bundle;
    }
    if ($form_bundle) {

      // Prep the field & properties list before creating the form item:
      $fields = mandrill_activity_email_fieldmap_options($form_entity_type, $form_bundle);
      $form['drupal_entity']['email_property'] = array(
        '#title' => t('Email Property'),
        '#type' => 'select',
        '#required' => TRUE,
        '#description' => t('Select the field which contains the email address'),
        '#options' => $fields,
        '#default_value' => $entitynotnull ? $mandrill_activity_entity->email_property : 0,
        '#maxlength' => 127,
        '#weight' => -6,
      );
    }
  }
  $form['enabled'] = array(
    '#title' => t('Enabled'),
    '#type' => 'checkbox',
    '#default_value' => $entitynotnull ? $mandrill_activity_entity->enabled : TRUE,
    '#weight' => -5,
  );
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#value' => t('Save Entity'),
    '#type' => 'submit',
  );
  return $form;
}