I’ve outlined a batch, every thing works okay, however I wish to perceive how Drupal Development messages are displayed. So I’ve this batch:
$batch = array( 'title' => t('Generate stories'), 'operations' => array( array('create_report_callback', array($time_min, $time_max)), ), 'init_message' => t('Beginning report technology...'), 'progress_message' => t('Producing report. Operation @present out of @whole.'), 'error_message' => t('Error detected. Please strive once more!'), 'completed' => 'create_report_finished', );
What I wish to know is tips on how to change Drupal Development progress_message
to one thing else than Operation @present out of @whole
. I do not know the place Drupal Development @present
and @whole
come from
Thanks.