You are here

function tft_archive_folder_batch in Taxonomy File Tree 7.2

Same name and namespace in other branches
  1. 7 tft.module \tft_archive_folder_batch()

Deprecated

Archives are OG specific

Defines a batch for adding an archive folder to all groups that do not have one.

File

./tft.module, line 1427
Hook implementations and module logic for TFT.

Code

function tft_archive_folder_batch() {
  $batch = array(
    'title' => t("Adding archive folders"),
    'operations' => array(
      array(
        'tft_archive_folder_batch_process',
        array(),
      ),
    ),
  );
  batch_set($batch);
}