batch_operations/readme.txt

23 строки
489 B
Plaintext
Исходник Обычный вид История

2015-06-04 21:02:09 +00:00
=== Batch operations ===
2015-06-05 19:26:11 +00:00
Contributors: igor-v-belousov
2015-06-04 21:02:09 +00:00
Tags: batch
Requires at least: 3.3
Tested up to: 3.3
My version Drupal Batch API for WordPress.
== Description ==
2015-06-05 19:38:55 +00:00
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!';
}