function apachesolr_index_action_form_cron_submit in Apache Solr Search 6.3
Same name and namespace in other branches
- 8 apachesolr.admin.inc \apachesolr_index_action_form_cron_submit()
- 7 apachesolr.admin.inc \apachesolr_index_action_form_cron_submit()
Submit handler for the deletion form.
1 string reference to 'apachesolr_index_action_form_cron_submit'
- apachesolr_index_action_form in ./
apachesolr.admin.inc - Form builder for the Apachesolr Indexer actions form.
File
- ./
apachesolr.admin.inc, line 912 - Administrative pages for the Apache Solr framework.
Code
function apachesolr_index_action_form_cron_submit($form, &$form_state) {
if (!empty($form_state['build_info']['args'][0])) {
$env_id = $form_state['build_info']['args'][0];
$form_state['redirect'] = 'admin/settings/apachesolr/settings/' . $env_id . '/index';
}
else {
$env_id = apachesolr_default_environment();
$form_state['redirect'] = 'admin/settings/apachesolr';
}
// $form_state['storage'] must be unset for redirection to occur. Otherwise
// $form_state['rebuild'] is automatically set and this form will be
// rebuilt.
unset($form_state['storage']);
apachesolr_cron($env_id);
drupal_set_message(t('Apachesolr cron successfully executed'));
}