| Versionen | |
|---|---|
| drupal6 – drupal7 | _node_access_join_sql($node_alias = 'n', $node_access_alias = 'na') |
Generate an SQL join clause for use in fetching a node listing.
$node_alias If the node table has been given an SQL alias other than the default "n", that must be passed here.
$node_access_alias If the node_access table has been given an SQL alias other than the default "na", that must be passed here.
An SQL join clause.
modules/
<?php
function _node_access_join_sql($node_alias = 'n', $node_access_alias = 'na') {
if (user_access('bypass node access')) {
return '';
}
return 'INNER JOIN {node_access} ' . $node_access_alias . ' ON ' . $node_access_alias . '.nid = ' . $node_alias . '.nid';
}
?>
Kommentare
Kommentar hinzufügen