Загалом це залежить від вашого випадку використання.
Якщо ви хочете мати поле / фільтр / аргумент, який повинен вести себе певним чином, рекомендується написати обробник для нього. Додаткову інформацію див. У розширеній довідці переглядів.
Якщо ви хочете змінити деякі частини запиту, ви також можете скористатись пунктом_ук__запрошення () . Погано в тому hook_views_query_alter()
, що ви дійсно не можете використовувати код там.
Це приклад коду, показаного в документації. Він дає приклад того, що може зробити гачок.
function mymodule_views_query_alter(&$view, &$query) {
// (Example assuming a view with an exposed filter on node title.)
// If the input for the title filter is a positive integer, filter against
// node ID instead of node title.
if ($view->name == 'my_view' && is_numeric($view->exposed_raw_input['title']) && $view->exposed_raw_input['title'] > 0) {
// Traverse through the 'where' part of the query.
foreach ($query->where as &$condition_group) {
foreach ($condition_group['conditions'] as &$condition) {
// If this is the part of the query filtering on title, chang the
// condition to filter on node ID.
if ($condition['field'] == 'node.title') {
$condition = array(
'field' => 'node.nid',
'value' => $view->exposed_raw_input['title'],
'operator' => '=',
);
}
}
}
}
}