Điểm:0

How to use datelist in a custom field widget?

lá cờ um

Since an administrator of the website I am building is visually impaired, I need to create a custom date field widget rather than use the one provided by Drupal.

I am trying to implement a datelist element.

<?php

namespace Drupal\my_module\Plugin\Field\FieldWidget;

use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Accessible date field widget.
 *
 * @FieldWidget(
 *   id = "accessible_date",
 *   label = @Translation("Accessible date widget"),
 *   field_types = {
 *     "datetime"
 *   }
 * )
 */
class AccessibleDate extends WidgetBase {

  /**
   * {@inheritdoc}
   */
  public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
    $max_year = date('Y') + 1;
    $default_date = new DrupalDateTime();
    if (isset($items[$delta]->value)) {
      $default_date = new DrupalDateTime($items[$delta]->value);
    }

    $element += [
      '#type' => 'datelist',
      '#default_value' => $default_date,
      '#date_part_order' => [
        'day',
        'month',
        'year',
        'hour',
        'minute',
      ],
      '#date_year_range' => '2000:' . $max_year,
    ];

    return ['value' => $element];
  }

}

The widget is displayed correctly but when I submit the form to add or edit a node, I have the following error on each of the datelist fields: "The datetime value must be a string."

enter image description here

Do you know how to fix this?

Điểm:0
lá cờ um

Ok tôi đã tìm ra nó, định dạng ngày giờ cần một Y-m-dTH:i:s định dạng. Tôi đã thêm một cuộc gọi lại xác thực vào phần tử của mình để thay đổi dữ liệu.

  /**
   * {@inheritdoc}
   */
  hàm công khai formElement(FieldItemListInterface $items, $delta, mảng $element, mảng &$form, FormStateInterface $form_state) {
    $max_year = ngày('Y') + 1;
    dpm($items[$delta]->value);
    $default_date = new DrupalDateTime();
    if (isset($items[$delta]->value)) {
      $default_date = new DrupalDateTime($items[$delta]->value);
    }

    phần tử $ += [
      '#type' => 'danh sách ngày',
      '#default_value' => $default_date,
      '#date_part_order' => [
        'ngày',
        'tháng',
        'năm',
        'giờ',
        'phút',
      ],
      '#date_year_range' => '2000:' . $max_year,
      '#element_validate' => [
        [tĩnh::lớp, 'xác thực'],
      ],
    ];

    trả về ['giá trị' => $element];
  }

  /**
   * Chuẩn bị giá trị datelist.
   */
  xác thực hàm tĩnh công khai ($element, FormStateInterface $form_state) {
    $value = $element['#value'];
    $date = $value['year'] . '-' . $value['tháng'] . '-' . $value['day'] . 'T' . $value['hour'] . ':' . $value['minute'] . ':00';
    $form_state->setValueForElement($element, $date);
  }

Đăng câu trả lời

Hầu hết mọi người không hiểu rằng việc đặt nhiều câu hỏi sẽ mở ra cơ hội học hỏi và cải thiện mối quan hệ giữa các cá nhân. Ví dụ, trong các nghiên cứu của Alison, mặc dù mọi người có thể nhớ chính xác có bao nhiêu câu hỏi đã được đặt ra trong các cuộc trò chuyện của họ, nhưng họ không trực giác nhận ra mối liên hệ giữa câu hỏi và sự yêu thích. Qua bốn nghiên cứu, trong đó những người tham gia tự tham gia vào các cuộc trò chuyện hoặc đọc bản ghi lại các cuộc trò chuyện của người khác, mọi người có xu hướng không nhận ra rằng việc đặt câu hỏi sẽ ảnh hưởng—hoặc đã ảnh hưởng—mức độ thân thiện giữa những người đối thoại.