You are here

function _nodequeue_solr_qid_key in Nodequeue 7.2

Same name and namespace in other branches
  1. 6.2 nodequeue.module \_nodequeue_solr_qid_key()

Returns the apachesolr index key for group id.

2 calls to _nodequeue_solr_qid_key()
nodequeue_apachesolr_index_document_build_node in ./nodequeue.module
Implements hook_apachesolr_index_document_build_ENTITY_TYPE().
nodequeue_apachesolr_query_alter in ./nodequeue.module
Implements hook_apachesolr_query_alter().

File

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

Code

function _nodequeue_solr_qid_key() {
  $qid_key = array(
    'index_type' => 'sint',
    'multiple' => TRUE,
    'name' => "nodequeue",
  );
  return apachesolr_index_key($qid_key);
}