My version Drupal Batch API for WordPress
Перейти к файлу
2015-06-05 22:38:55 +03:00
css alpha 2015-06-05 22:26:11 +03:00
js alpha 2015-06-05 22:26:11 +03:00
bath.php alpha 2015-06-05 22:26:11 +03:00
readme.txt add example in readme.txt 2015-06-05 22:38:55 +03:00

=== Batch operations ===
Contributors: igor-v-belousov
Tags: batch
Requires at least: 3.3
Tested up to: 3.3

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!';
    }