Skip to content
CategoryForm.php 4.21 KiB
Newer Older
 * Contains \Drupal\contact\CategoryForm.
use Drupal\Core\Entity\EntityTypeInterface;
  public function form(array $form, array &$form_state) {
    $form = parent::form($form, $form_state);
    $category = $this->entity;
    $default_category = $this->config('contact.settings')->get('default_category');

    $form['label'] = array(
      '#type' => 'textfield',
      '#maxlength' => 255,
      '#default_value' => $category->label(),
      '#description' => $this->t("Example: 'website feedback' or 'product information'."),
      '#required' => TRUE,
    );
    $form['id'] = array(
      '#type' => 'machine_name',
      '#default_value' => $category->id(),
      '#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
        'exists' => '\Drupal\contact\Entity\Category::load',
      ),
      '#disabled' => !$category->isNew(),
    );
    $form['recipients'] = array(
      '#type' => 'textarea',
      '#default_value' => implode(', ', $category->recipients),
      '#description' => $this->t("Example: 'webmaster@example.com' or 'sales@example.com,support@example.com' . To specify multiple recipients, separate each email address with a comma."),
      '#required' => TRUE,
    );
    $form['reply'] = array(
      '#type' => 'textarea',
      '#default_value' => $category->reply,
      '#description' => $this->t('Optional auto-reply. Leave empty if you do not want to send the user an auto-reply message.'),
    );
    $form['weight'] = array(
      '#type' => 'weight',
      '#default_value' => $category->weight,
      '#description' => $this->t('When listing categories, those with lighter (smaller) weights get listed before categories with heavier (larger) weights. Categories with equal weights are sorted alphabetically.'),
    );
    $form['selected'] = array(
      '#type' => 'checkbox',
      '#title' => $this->t('Make this the default category.'),
      '#default_value' => $default_category === $category->id(),
    );

    return $form;
  }

  /**
   */
  public function validate(array $form, array &$form_state) {
    parent::validate($form, $form_state);

    // Validate and each email recipient.
    $recipients = explode(',', $form_state['values']['recipients']);

    foreach ($recipients as &$recipient) {
      $recipient = trim($recipient);
      if (!valid_email_address($recipient)) {
        $this->setFormError('recipients', $form_state, $this->t('%recipient is an invalid email address.', array('%recipient' => $recipient)));
      }
    }
    $form_state['values']['recipients'] = $recipients;
  }

  /**
   */
  public function save(array $form, array &$form_state) {
    $category = $this->entity;
    $contact_settings = $this->config('contact.settings');
    $edit_link = \Drupal::linkGenerator()->generateFromUrl($this->t('Edit'), $this->entity->urlInfo());
    if ($status == SAVED_UPDATED) {
      drupal_set_message($this->t('Category %label has been updated.', array('%label' => $category->label())));
      watchdog('contact', 'Category %label has been updated.', array('%label' => $category->label()), WATCHDOG_NOTICE, $edit_link);
      drupal_set_message($this->t('Category %label has been added.', array('%label' => $category->label())));
      watchdog('contact', 'Category %label has been added.', array('%label' => $category->label()), WATCHDOG_NOTICE, $edit_link);
    }

    // Update the default category.
    if ($form_state['values']['selected']) {
        ->set('default_category', $category->id())
        ->save();
    }
    // If it was the default category, empty out the setting.
    elseif ($contact_settings->get('default_category') == $category->id()) {
      $contact_settings
        ->set('default_category', NULL)
    $form_state['redirect_route']['route_name'] = 'contact.category_list';