function ContentDevelGenerate::batchContentKill

Batch wrapper for calling ContentKill.

File

devel_generate/src/Plugin/DevelGenerate/ContentDevelGenerate.php, line 508

Class

ContentDevelGenerate
Provides a ContentDevelGenerate plugin.

Namespace

Drupal\devel_generate\Plugin\DevelGenerate

Code

public function batchContentKill($vars, &$context) {
  if ($this->drushBatch) {
    $this->contentKill($vars);
  }
  else {
    $this->contentKill($context['results']);
  }
}