You are here

public function CampaignMonitorCampaignAdminForm::buildForm in Campaign Monitor 8

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfigFormBase::buildForm

File

modules/campaignmonitor_campaign/src/Form/CampaignMonitorCampaignAdminForm.php, line 30

Class

CampaignMonitorCampaignAdminForm
Configure campaignmonitor settings for this site.

Namespace

Drupal\campaignmonitor_campaign\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $config = $this
    ->config('campaignmonitor_campaign.settings');
  $types = node_type_get_types();
  $options = [];
  foreach ($types as $name => $type) {
    $options[$name] = $type
      ->label();
  }
  $default = $config
    ->get('node_types') != NULL ? $config
    ->get('node_types') : [];
  $form['campaignmonitor_types'] = [
    '#type' => 'fieldset',
    '#title' => t('Node Types'),
    '#description' => t('Select node types to use as Campaigns'),
    '#collapsible' => empty($config) ? FALSE : TRUE,
    '#collapsed' => empty($config) ? FALSE : TRUE,
    '#tree' => TRUE,
  ];
  $form['campaignmonitor_types']['node_types'] = [
    '#type' => 'checkboxes',
    '#options' => $options,
    '#title' => t('Node types'),
    '#description' => t('Any selected node types can be used to send Campaigns'),
    '#default_value' => $default,
    '#required' => TRUE,
  ];
  $form['campaignmonitor_custom'] = [
    '#type' => 'fieldset',
    '#title' => t('Custom Settings'),
    '#description' => t('Some optional customizations'),
    '#collapsible' => empty($config) ? FALSE : TRUE,
    '#collapsed' => empty($config) ? FALSE : TRUE,
    '#tree' => TRUE,
  ];
  $form['campaignmonitor_custom']['custom_store'] = [
    '#type' => 'checkbox',
    '#title' => t('Custom Directory'),
    '#description' => t('By default campaign html files are stored in the public files directory.  Select this if
      you want to nominate a custom directory.'),
    '#default_value' => $config
      ->get('custom_store'),
    '#attributes' => [
      'class' => [
        'custom-store-checkbox',
      ],
    ],
  ];
  $form['campaignmonitor_custom']['custom_directory'] = [
    '#type' => 'textfield',
    '#title' => t('Custom Directory Path'),
    '#description' => t('Enter the path of the directory within Drupal root.'),
    '#default_value' => $config
      ->get('custom_directory'),
    '#states' => [
      'visible' => [
        '.custom-store-checkbox' => [
          'checked' => TRUE,
        ],
      ],
    ],
  ];
  $form['css_library'] = [
    '#type' => 'textfield',
    '#title' => t('CSS library'),
    '#description' => t('Enter the name of the CSS library to use for Campaigns.  This should be in the form
      MODULENAME/LIBRARYNAME.'),
    '#default_value' => $config
      ->get('css_library'),
  ];
  return parent::buildForm($form, $form_state);
}