Điểm:0

How to create a custom Views filter to filter nodes on a field value (string) if it's in multi-value field on the user's profile?

lá cờ ng

We have a Drupal 9 site where we need to filter a view showing nodes where their "US State" field value is contained in the user's "Assigned States" multi-value field.

Node: "US State" field is a plain text list single value field: "node__field_state_new"

User: "Assigned State(s)" is a multiple value check box field: "field_assigned_state"

We've created a custom filter but are stuck on getting it to work correctly. I suspect we may need to create joins in the query but not sure.

MODULE.views.inc:

function MODULE_views_data() {
  $data['views']['state_admin_filter'] = [
    'title' => t('Is State Admin'),
    'filter' => [
      'title' => t('Is State Admin'),
      'group' => t('Custom'),
      'help' => t('Provides a custom filter to filter state admins.'),
      'id' => 'state_admin_filter',
    ],
  ];
  return $data;
}

/src/Plugin/views/filter/StateAdminFilter.php

class StateAdminFilter extends StringFilter  {

  public $operator = 'IN';

  public function query() {
    $user = \Drupal\user\Entity\User::load(\Drupal::currentUser()->id());
    $assigned_states = $user->field_assigned_state->getValue();
    $this->query->addWhere('AND', 'node__field_state_new.field_state_new_value', serialize($assigned_states), 'IN');
  }

}

Đă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.