मैं Drupal 7 में एक LIKE क्लॉज के साथ डिफ़ॉल्ट खोज को बदलने की कोशिश कर रहा हूं। मैंने किसी क्वेरी को मौजूदा क्वेरी में जोड़ने के अनुसार क्वेरी को बदलने की कोशिश की :
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');
}
}
}
}
}
शब्द "घोषणा" के साथ खोज करना डिफ़ॉल्ट ड्रुपल खोज के समान परिणाम प्रदर्शित करता है, लेकिन "घोषित" के साथ खोज करने पर कोई परिणाम नहीं मिलता है।
कोई भी विचार क्यों मेरा कोड काम नहीं कर रहा है?