_token_example_get_node

6 token_example.module _token_example_get_node()
7 token_example.module _token_example_get_node()
8 token_example.module _token_example_get_node()

Builds a list of available content.

Related topics

File

token_example/token_example.module, line 140
An example module showing how to define and use tokens.

Code

function _token_example_get_node() {
  if (!user_access('access content') && !user_access('bypass node access')) {
    return array();
  }

  $node_query = db_select('node', 'n');
  $node_query->fields('n', array('nid', 'title'));
  $node_query->condition('n.status', NODE_PUBLISHED);
  $node_query->orderBy('n.created', 'DESC');
  $node_query->range(0, 10);
  $node_query->addTag('node_access');
  $nodes = $node_query->execute()->fetchAllKeyed();
  $nodes = array_map('check_plain', $nodes);
  return $nodes;
}
Login or register to post comments