function apachesolr_index_action_form_remaining_confirm in Apache Solr Search 8
Same name and namespace in other branches
- 6.3 apachesolr.admin.inc \apachesolr_index_action_form_remaining_confirm()
- 7 apachesolr.admin.inc \apachesolr_index_action_form_remaining_confirm()
Form builder for to reindex the remaining items left in the queue.
_state
Parameters
array $form:
array $environment:
Return value
mixed
See also
apachesolr_index_action_form_delete_confirm_submit().
1 string reference to 'apachesolr_index_action_form_remaining_confirm'
- apachesolr_menu in ./
apachesolr.module - Implements hook_menu().
File
- ./
apachesolr.admin.inc, line 995 - Administrative pages for the Apache Solr framework.
Code
function apachesolr_index_action_form_remaining_confirm(array $form, array &$form_state, array $environment) {
return confirm_form($form, t('Are you sure you want index all remaining content?'), 'admin/config/search/apachesolr/settings/' . $environment['env_id'] . '/index', NULL, t('Index all remaining'));
}