我需要实现一些过滤器之间的OR操作在一个Drupal视图。 默认情况下,Drupal和是每个过滤器一起。
通过使用
hook_views_query_alter(&$view, &$query)
我可以访问该查询(VAR $查询),我可以改变之一:
$query->where[0]['type']
为 'OR',或
$query->group_operator
以“OR”
然而,问题是,我不需要或不无处不在。 我试着他们两个更改为OR seperately,它不会产生期望的结果。
这似乎改变这些值,看跌或无处不在,而我需要=>(过滤器1和过滤2)或(滤),所以只需1〜。
我可以检查视图的查询,复制,修改,并通过db_query运行它,但是这只是脏了..
有什么建议 ?
THX提前。
如果你想与view_query_alter挂钩做到这一点,你应该使用$查询 - > add_where(),其中,如果是AND或OR可以指定。 从意见/包括/ query.inc
/**
* Add a simple WHERE clause to the query. The caller is responsible for
* ensuring that all fields are fully qualified (TABLE.FIELD) and that
* the table already exists in the query.
*
* @param $group
* The WHERE group to add these to; groups are used to create AND/OR
* sections. Groups cannot be nested. Use 0 as the default group.
* If the group does not yet exist it will be created as an AND group.
* @param $clause
* The actual clause to add. When adding a where clause it is important
* that all tables are addressed by the alias provided by add_table or
* ensure_table and that all fields are addressed by their alias wehn
* possible. Please use %d and %s for arguments.
* @param ...
* A number of arguments as used in db_query(). May be many args or one
* array full of args.
*/
function add_where($group, $clause)
如果您使用的浏览3/7的Drupal和寻找这个问题的答案,它是置于意见。 它说:“添加”旁边的过滤器,单击下拉,然后单击“;和/或重新安排”。 这应该是显而易见的,从那里。
不幸的是这仍是Views2缺少功能。 长期以来,人们一直要求 ,并在不久前承诺,但似乎是一个棘手的一件工作, 现定于Views3 。
在此期间,你可以尝试的观点或在该线程提到的模块。 截至今日,它仍然是在开发中的地位,但似乎是积极维护和问题队列看起来不坏,所以你可能想给它一个尝试。
我通过连接字符串添加它。
它是相对具体的实施 - 人们会需要与现场的发挥,以匹配或者 - 在下面的代码,并现场与匹配它node.title - node_revisions.body在这种情况下。
额外的代码,以确保node_revisions.body是在查询中。
/**
* Implementation of hook_views_api().
*/
function eventsor_views_api() { // your module name into hook_views_api
return array(
'api' => 2,
// might not need the line below, but in any case, the last arg is the name of your module
'path' => drupal_get_path('module', 'eventsor'),
);
}
/**
*
* @param string $form
* @param type $form_state
* @param type $form_id
*/
function eventsor_views_query_alter(&$view, &$query) {
switch ($view->name) {
case 'Events':
_eventsor_composite_filter($query);
break;
}
}
/**
* Add to the where clause.
* @param type $query
*/
function _eventsor_composite_filter(&$query) {
// If we see "UPPER(node.title) LIKE UPPER('%%%s%%')" - then add and to it.
if (isset($query->where)) {
$where_count = 0;
foreach ($query->where as $where) {
$clause_count = 0;
if (isset($where['clauses'])) {
foreach ($where['clauses'] as $clause) {
$search_where_clause = "UPPER(node.title) LIKE UPPER('%%%s%%')";
// node_data_field_long_description.field_long_description_value
$desirable_where_clause = "UPPER(CONCAT_WS(' ', node.title, node_revisions.body)) LIKE UPPER('%%%s%%')";
if ($clause == $search_where_clause) {
// $query->add_where('or', 'revisions.body = %s'); - outside of what we are looking for
$query->where[$where_count]['clauses'][$clause_count] = $desirable_where_clause;
// Add the field to the view, just in case.
if (!isset($query->fields['node_revisions_body'])) {
$query->fields['node_revisions_body'] = array(
'field' => 'body',
'table' => 'node_revisions',
'alias' => 'node_revisions_body'
);
}
}
$clause_count++;
}
}
$where_count++;
}
}
}