function node_db_rewrite_sql

6.x node.module node_db_rewrite_sql($query, $primary_table, $primary_field)

Implementation of hook_db_rewrite_sql

Related topics

File

drupal-6.x/modules/node/node.module, line 2196
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

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;
  }
}