Điểm:1

Programmatically set a views filter value on page load (not contextual filter)

lá cờ in

I have created some views for an Events content type with field_start and field_end timestamp fields. One of the displays is for 'Upcoming Events'.

I want to filter only those events whose start date hasn't yet passed. The way to do this with the core views date filter is to choose the 'between' operator, and enter the current timestamp as the 'min' value:

enter image description here

But I obviously want the timestamp to update dynamically on each page load. I have been trying to update the filter value programmatically, but I have not been able to.

In the my_module.module file, I played around with some ViewExecutable methods in a hook_views_pre_build() function, as follows, with no luck:

function my_module_views_pre_build(ViewExecutable $view) {

  if ($view->id()=='my_view_id') {

    $time = Drupal::time()->getCurrentTime();

    if($view->current_display=="upcoming_events_block") {
      $view->setHandlerOption("upcoming_events_block", "filter", "field_start_value", "value",
        ["min" => $time,"max" => "","value" => ""]);
    }
  }

  return $view;
}

I can see my handler options when I dump them, however they are ignored when the page loads. I tried to trigger a save:

$view->storage->save();

which also did not work.

According to the API documentation of hook_views_pre_build(), this function enables me to "Act on the view before the query is built, but after displays are attached". So this should work, right? Why doesn't it?

I tried the same with hook_views_pre_execute(), still no luck.

What is the right place to use these functions?

PS. I considered doing this with Contextual Filters but I couldn't find a way for that at all. If there is a way with Contextual Filters, I'd love some pointers!

Thanks

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