DRUPAL:订购公开的过滤器项目,请小心,它没那么简单(我无法使用“排序”)

发布于 2024-08-23 15:40:15 字数 183 浏览 5 评论 0原文

德鲁帕尔问题。 我正在使用带有公开过滤器(分类法)的视图。我已经下载了“更好暴露的过滤器”模块以将其显示为复选框列表。 一个 现在,我如何对过滤器列表中的标签进行排序? “视图排序”不是解决方案,因为我只能订购文章,而不能订购过滤项目!

我想添加一个选项(复选框),以便客户按字母顺序对标签进行排序或保留默认顺序。

谢谢

DRUPAL question.
I'm using Views, with an exposed filter (Taxonomy). I've downloaded the "better exposed filter" module to display it as checkbox list.
a
Now, how can I order the tags in the filter list ? "Views Sort" is not the solution because I only can order articles but not the filter items!!

I want to add an option (checkbox) for the customer to order the tags alphabetically or leave them in the default order.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半岛未凉 2024-08-30 15:40:15

您需要按照 form_alter'ing 暴露的过滤器表单中的更好暴露的过滤器的示例并对过滤器的 #options 数组进行排序:

function mymodule_form_views_exposed_form_alter(&$form, $form_state) {
  foreach ($form_state['view']->filter as $field => $filter) {
    if ($filter->options['exposed'] /* && is my filter */) {
      $field_id = $form['#info']["filter-$field"]['value'];
      asort($form[$field_id]['#options']);
    }
  }
}

You need to follow the example of Better Exposed Filters in form_alter'ing the exposed filters form and sorting your filter's #options array:

function mymodule_form_views_exposed_form_alter(&$form, $form_state) {
  foreach ($form_state['view']->filter as $field => $filter) {
    if ($filter->options['exposed'] /* && is my filter */) {
      $field_id = $form['#info']["filter-$field"]['value'];
      asort($form[$field_id]['#options']);
    }
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文