ฉันกำลังพยายามแทนที่การค้นหาเริ่มต้นด้วยคำสั่ง LIKE ใน Drupal 7 ฉันพยายามที่จะเปลี่ยนการสืบค้นตามการเพิ่มเงื่อนไข OR ในการสืบค้นที่มีอยู่ :
function MYMODULE_query_node_access_alter(QueryAlterableInterface $query) {
foreach ($query->getTables() as $table) {
// LIKE for search results.
if ($table['table'] == 'search_index') {
// Get the query args and then the search term
$args =& $query->getArguments();
$search = $args[':db_condition_placeholder_1'];
// Get a reference to the existing query conditions.
$conditions =& $query->conditions();
// Save the former conditions
$former_conditions = $conditions;
// Reset the condition array. It needs a default #conjunction for which AND is fine
$conditions = array('#conjunction' => array_shift($former_conditions));
// Replace the search condition in the query
foreach ($former_conditions as $key => $condition) {
if ($key != 1) {
$query->condition($condition['field'], $condition['value'], $condition['operator']);
}
else {
$query->condition('i.word', '%' . db_like($search) . '%', 'LIKE');
}
}
}
}
}
การค้นหาด้วยคำว่า "declaration" จะแสดงผลลัพธ์เหมือนกับการค้นหา drupal เริ่มต้น แต่การค้นหาด้วย "decl" จะไม่พบผลลัพธ์ใด ๆ
ความคิดเห็นใด ๆ ที่ทำให้รหัสของฉันไม่ทำงาน