function apachesolr_realtime_entity_insert in Apache Solr Real-Time 7
Implements hook_entity_insert().
File
- ./
apachesolr_realtime.module, line 10 - Module file for apachesolr_realtime
Code
function apachesolr_realtime_entity_insert($entity, $type) {
if ($type == 'node') {
apachesolr_realtime_index_now($entity, $type);
}
}