Drupal 7:在发布日期显示过滤器

时间:2013-03-05 22:16:48

标签: drupal drupal-views drupal-exposed-filter

我在网站上有几百篇文章。我使用一个视图在一个页面上显示摘录和链接,我还有一个当时显示10篇文章的寻呼机。我需要添加多年的下拉[...,2008,2009 ......,2013]。如果您在下拉列表中选择年份,则视图应仅显示该年度过帐的文章。如果在2013年添加新文章,那么下拉列表中的年份应自动更新,因此第一年是第一次发布的年份。

请建议可能的解决方案。

2 个答案:

答案 0 :(得分:9)

我认为,您需要将已公开的过滤器设置为视图列表。配置应该是 -

  

过滤条件:日期(节点);

     

表单元素:选择;

     

过滤粒度:年份;

     

日期字段:发布日期;露出;

     

要公开的过滤器类型:单个;

     

运营商:等于;

告诉我它是否有效..

答案 1 :(得分:1)

如果您想要为节点使用Drupal内置的“Authored on”字段,可以使用以下方法。您需要创建自定义模块。这是在Drupal 7 / Views 3中创建的。我的模块文件位于/ sites / all / modules / custom / ViewsYearFilter /.

<强> ViewsYearFilter.info

name = Views Year Filter
description = Allow a view to filter by post year.
package = tools
core = 7.x

files[] = ViewsYearFilter.inc
files[] = ViewsYearFilter.views.inc

<强> ViewsYearFilter.module

<?php

/**
 * Implements of hook_views_api().
 */
function ViewsYearFilter_views_api() {
  return array('api' => 3);
}

<强> ViewsYearFilter.views.inc

<?php

/**
 * Implements of hook_views_data().
 */
function ViewsYearFilter_views_data() {
  return array(
    'node' => array(
      'published_year' => array(
        'group' => t('Content'),
        'title' => t('Year'),
        'help' => t('Filter by years.'),
        'filter' => array('handler' => 'ViewsYearFilter'),
      )
    )
  );
}

<强> ViewsYearFilter.inc

<?php

/* Allows filtering of posts by year in a Drupal View. */

class ViewsYearFilter extends views_handler_filter_in_operator {

  /**
   * Override parent get_value_options() function. This function returns an array of all valid years from our post type.
   * @return
   *   Return the stored values in $this->value_options if someone expects it.
   */
  function get_value_options() {

    $query = new EntityFieldQuery();
    $query->entityCondition('entity_type', 'node')
    ->propertyCondition('type', 'blog_post') //post type
    ->propertyCondition('status', '1'); //is published

    $results = $query->execute();

    $object_node_ids = array_keys($results['node']);
    $objects = node_load_multiple($object_node_ids);

    foreach ($objects as $blog_post) {
      $values[date('Y', $blog_post->created)] = date('Y', $blog_post->created);
    }

    $this->value_options = $values;
    return $values; //array of year values
  }

  function query() {
    $this->ensure_my_table(); //not sure why/if this is necessary
    $startDate = mktime(0, 0, 0, 1, 1, intval($this->value[0]));
    $endDate = mktime(0, 0, 0, 1, 1, intval($this->value[0] + 1));
    $this->query->add_where_expression($this->options['group'], "node.created >= " . $startDate . " AND node.created <= " . $endDate); //filtering query
  }

}

然后,在您的视图配置页面中,您可以创建一个新的公开过滤器:

抱歉,我实际上无法发布此图片,因为我没有足够的声誉。在创建和激活新模块后,您可以添加一个名为“Content:Year”的新曝光过滤器。

PS:我的代码基于Shevchuk的回答this question