You are here

function _nodequeue_solr_name_key in Nodequeue 7.3

Returns the apachesolr index key for group id.

2 calls to _nodequeue_solr_name_key()
nodequeue_apachesolr_index_document_node in ./nodequeue.module
Implements hook_apachesolr_index_document_ENTITY_TYPE().
nodequeue_apachesolr_query_alter in ./nodequeue.module
Implements hook_apachesolr_query_alter().

File

./nodequeue.module, line 400
Maintains queues of nodes in arbitrary order.

Code

function _nodequeue_solr_name_key() {
  $name_key = array(
    'index_type' => 'string',
    'multiple' => TRUE,
    'name' => "nodequeue",
  );
  return apachesolr_index_key($name_key);
}