Этот коммит содержится в:
Igor V Belousov 2015-06-05 22:38:55 +03:00
родитель 6cdf38a236
Коммит 4256c42432

Просмотреть файл

@ -8,3 +8,15 @@ My version Drupal Batch API for WordPress.
== Description ==
Example code:
$batch['title']='Title';
$batch['operations'][]=array('test_batch_operation',array());
batch_operations_start($batch);
function test_batch_operation(&$context) {
file_put_contents( ABSPATH . 'test.txt', "batch work" );
$context['message'] = 'Yeap! Work!';
}