| Versions | |
|---|---|
| 4.7 – 6 | node_db_rewrite_sql($query, $primary_table, $primary_field) |
Implementation of hook_db_rewrite_sql
modules/
<?php
function node_db_rewrite_sql($query, $primary_table, $primary_field) {
if ($primary_field == 'nid' && !node_access_view_all_nodes()) {
$return['join'] = _node_access_join_sql($primary_table);
$return['where'] = _node_access_where_sql();
$return['distinct'] = 1;
return $return;
}
}
?>