You are here

public function SendGridReportsSettingsForm::buildForm in SendGrid Integration 8.2

Same name and namespace in other branches
  1. 8 modules/sendgrid_integration_reports/src/Form/SendGridReportsSettingsForm.php \Drupal\sendgrid_integration_reports\Form\SendGridReportsSettingsForm::buildForm()

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/sendgrid_integration_reports/src/Form/SendGridReportsSettingsForm.php, line 65

Class

SendGridReportsSettingsForm
Class for Sendgrid reports settings form.

Namespace

Drupal\sendgrid_integration_reports\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $config = $this
    ->config('sendgrid_integration_reports.settings')
    ->get();
  $form['sendgrid_integration_reports'] = [
    '#type' => 'container',
  ];
  $form['sendgrid_integration_reports']['message'] = [
    '#markup' => t('Data and responses from Sendgrid are cached for performance reasons. If you make changes to these settings charts cache will be dropped automatically.'),
  ];
  $current_date = date_format(new \Datetime(), 'Y-m-d');
  $form['sendgrid_integration_reports']['start_date'] = [
    '#type' => 'date',
    '#title' => t('Global Stats Start Date'),
    '#default_value' => !empty($config['start_date']) ? $config['start_date'] : date_format(new \Datetime('-30 days'), 'Y-m-d'),
    '#attributes' => [
      'type' => 'date',
      'max' => $current_date,
    ],
    '#required' => FALSE,
    '#description' => t('Start date in the format of mm/dd/YYYY. Defaults to 30 days back.'),
  ];
  $form['sendgrid_integration_reports']['end_date'] = [
    '#type' => 'date',
    '#title' => t('Global Stats End Date'),
    '#default_value' => !empty($config['end_date']) ? $config['end_date'] : $current_date,
    '#attributes' => [
      'type' => 'date',
      'max' => $current_date,
    ],
    '#required' => FALSE,
    '#description' => t('End date in the format of mm/dd/YYYY. Defaults to today.'),
  ];
  $options = [
    'day',
    'week',
    'month',
  ];
  $form['sendgrid_integration_reports']['aggregated_by'] = [
    '#type' => 'select',
    '#title' => t('Global Stats Aggregation'),
    '#default_value' => !empty($config['aggregated_by']) ? $config['aggregated_by'] : 0,
    '#required' => FALSE,
    '#description' => t('Aggregation of data. Defaults to day.'),
    '#options' => array_combine($options, $options),
  ];
  return parent::buildForm($form, $form_state);
}