You are here

function prev_next_nid_next in Previous/Next API 7

Same name and namespace in other branches
  1. 6 prev_next.module \prev_next_nid_next()
  2. 7.2 prev_next.module \prev_next_nid_next()

@todo Please document this function.

See also

http://drupal.org/node/1354

1 call to prev_next_nid_next()
prev_next_nid in ./prev_next.module
@todo Please document this function.

File

./prev_next.module, line 579

Code

function prev_next_nid_next($nid) {
  return db_query("SELECT next_nid FROM {prev_next_node} WHERE nid = :nid", array(
    ':nid' => $nid,
  ))
    ->fetchField();
}