You are here

function _hashtags_index_batch_process in Hashtags 7

Hashtags index import, batch process callback

Parameters

int $nid :

array &$context :

1 string reference to '_hashtags_index_batch_process'
hashtags_index_import in ./hashtags.module
Import hashtags data from node body fields to 'hashtags_index' table

File

./hashtags.module, line 904

Code

function _hashtags_index_batch_process($nid, &$context) {
  $node = node_load($nid);
  node_save($node);
}