You are here

public function DeployAggregatorManaged::configForm in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 plugins/DeployAggregatorManaged.inc \DeployAggregatorManaged::configForm()

Defines the configuration form for the aggregator.

Parameters

array $form_state: The complete form state.

Return value

array An array representing the configuation form.

Overrides DeployAggregatorBase::configForm

File

plugins/DeployAggregatorManaged.inc, line 47
Managed entities Deploy aggregator plugin.

Class

DeployAggregatorManaged
Managed deployment aggregator.

Code

public function configForm(&$form_state) {
  $form = array();
  $form['delete_post_deploy'] = array(
    '#type' => 'checkbox',
    '#title' => t('Delete successfully deployed entities from the plan'),
    '#description' => t('If checked, each successfully deployed entity will be automatically deleted from the plan.'),
    '#default_value' => $this->config['delete_post_deploy'],
  );
  return $form;
}