2012-05-25 103 views
2

我有一个Expression Engine网站,它具有以下要求。表达式引擎挂钩

我需要能够通过一对匹配字段来过滤通道条目结果集,例如我的入场将有一个field_a和field_b。如果这些字段匹配,我希望它成为返回结果集的一部分。我不能在前端执行这个检查,因为那么结果数量将不正确。我在想我可以使用钩子将字段传递到exp:channel:entries标记并更改返回的数据。

这看起来是否合理,如果有的话,是否有人知道操纵数据的细节?看着文档的我想我想使用'channel_entries_query_result'钩子,但我不知道如何实际操作数据。我创建了正常触发的钩子,并且可以看到模板tag_data等,但我不确定接下来要去哪里。

感谢

回答

0

这听起来像它需要一个自定义查询,您将不使用任何的电子工程师挂钩做到这一点。

你可以编写自己的插件/模块或使用EE的本地查询模块。

你只需要用你的查询来比较两列。例如:

SELECT 
    * 
FROM 
    some_table 
WHERE 
    col1 = col2 
+0

当然,我会那样做。但我仍然需要诸如分页等方式来处理本地exp:channel:entries调用。使用自定义查询我不知道维护该功能的简单方法? – alanablett

+0

分页与查询模块一起工作。 –

0

对于任何对此感兴趣的人来说,这里是代码。我沿着钩子路线走,并用以下代码绑定到'channel_entries_query_result'钩子。

public function query_result_filtered($c, $res){ 
    # maybe this can be done better? Grabs the tag data for this template call 
    $tags = $c->EE->TMPL->tag_data; 

    foreach($tags as $tag): 
     # We're only interested in exp:channel:entries 
     if($tag['class'] == 'channel' && $tag['method'] == 'entries'): 
      # We're only interested if the tag has a param of matching, e.g. {exp:channel:entries matching="field_1|field_2"} 
      if(isset($tag['params']['matching'])): 
       $res = $this->_parse_results($res, $tag['params']['matching']); 
      endif; 
     endif; 
    endforeach; 

    return $res; 
} 

private function _parse_results($res, $fields){ 

    $ret = array(); 
    $fields = explode('|', $fields); 

    //If we dont have multiple tags to match against, return the result set as is 
    if(!is_array($fields)): 
     return $res; 
    endif; 

    # Get the field id's and count how many fields we're checking against 
    $fields = $this->_get_field_ids($fields); 
    $field_count = count($fields); 

    foreach($res as $row): 
     # Value to match against (just use the first value) 
     $tomatch = $row[$fields[0]]; 
     # Keep a count on how many matches, so we can check that they all match 
     $match = 0; 

     foreach($fields as $field): 
      # If the current field matches that of the first field then we have a match, increment the count 
      if($row[$field] == $tomatch): 
       $match++; 
      endif; 
     endforeach; 

     # If we have matched all fields then add this row to the returned array 
     if($match == $field_count): 
      $ret[] = $row; 
     endif; 

    endforeach; 

    return $ret; 
} 

private function _get_field_ids($fields){ 

    $ret = array(); 

    # Loop through the fields given and find their ID's (this could be better and check site id for multisite compatibility) 
    foreach($fields as $field): 
     $q = $this->EE->db->select('field_id')->where('field_name', $field)->get('exp_channel_fields'); 
     # Create a nice name that we can use as an array key when we check each rows value 
     $ret[] = 'field_id_' . $q->row('field_id'); 
    endforeach; 

    return $ret; 
} 

不是特别优雅,但它的工作。如果其他人有更好的解决方案,我很乐意听到它。谢谢

+0

我试图做类似的事情,但似乎这只影响显示的条目,分页后生效。我想在应用限制或分页之前影响完整的结果集... –

2

您可以编写自己的模块,扩展通道条目循环。

你会使用这样的:

{exp:custom_module:entries} 

这种方法将支持任何默认参数。

模块中的方法是这样的:

public function entries() 
{ 
    if(! class_exists('Channel')) 
    { 
     require_once PATH_MOD.'channel/mod.channel.php'; 
    } 

    // queries grabbing entry ids you want 
    .... 

    $this->EE->TMPL->tagparams['entry_id'] = implode('|', $entry_ids); 

    $channel = new Channel(); 
    $tagdata = $channel->entries(); 

    return $tagdata; 
}