public function DashboardForm::buildForm in Mail Safety 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 FormInterface::buildForm
File
- src/
Form/ DashboardForm.php, line 80
Class
- DashboardForm
- Class DashboardForm.
Namespace
Drupal\mail_safety\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$table_structure = [];
// Create the headers.
$table_structure['header'] = [
[
'data' => $this
->t('Subject'),
],
[
'data' => $this
->t('Date sent'),
'field' => 'sent',
'sort' => 'desc',
],
[
'data' => $this
->t('To'),
],
[
'data' => $this
->t('CC'),
],
[
'data' => $this
->t('Bcc'),
],
[
'data' => $this
->t('Module'),
],
[
'data' => $this
->t('Key'),
],
[
'data' => $this
->t('Details'),
],
[
'data' => $this
->t('Send to original'),
],
[
'data' => $this
->t('Send to default mail'),
],
[
'data' => $this
->t('Delete'),
],
];
// Create the query.
/** @var \Drupal\Core\Database\Query\SelectInterface $query */
$query = $this->database
->select('mail_safety_dashboard', 'msd')
->extend('Drupal\\Core\\Database\\Query\\PagerSelectExtender')
->limit(50)
->extend('Drupal\\Core\\Database\\Query\\TableSortExtender')
->orderByHeader($table_structure['header'])
->fields('msd', [
'mail_id',
'sent',
'mail',
]);
$results = $query
->execute();
// Fill the rows for the table.
$table_structure['rows'] = [];
foreach ($results as $row) {
$mail = unserialize($row->mail);
// Build the links for the row.
$view_url = Url::fromRoute('mail_safety.view', [
'mail_safety' => $row->mail_id,
]);
$details_url = Url::fromRoute('mail_safety.details', [
'mail_safety' => $row->mail_id,
]);
$send_original_url = Url::fromRoute('mail_safety.send_original', [
'mail_safety' => $row->mail_id,
]);
$send_default_url = Url::fromRoute('mail_safety.send_default', [
'mail_safety' => $row->mail_id,
]);
$delete_url = Url::fromRoute('mail_safety.delete', [
'mail_safety' => $row->mail_id,
]);
$cc = $mail['headers']['Cc'] ?? $this
->t('none');
$bcc = $mail['headers']['Bcc'] ?? $this
->t('none');
$table_structure['rows'][$row->mail_id] = [
'data' => [
Link::fromTextAndUrl($mail['subject'], $view_url),
$this->dateFormatter
->format((int) $row->sent, 'short'),
$mail['to'],
$cc,
$bcc,
$mail['module'],
$mail['key'],
Link::fromTextAndUrl($this
->t('Details'), $details_url),
Link::fromTextAndUrl($this
->t('Send to original'), $send_original_url),
Link::fromTextAndUrl($this
->t('Send to default mail'), $send_default_url),
Link::fromTextAndUrl($this
->t('Delete'), $delete_url),
],
];
}
// Let other modules change the table structure to add or remove
// information to be shown. E.g. attachments that need to be downloaded.
$this->moduleHandler
->alter('mail_safety_table_structure', $table_structure);
$form['mails']['table'] = [
'#theme' => 'table',
'#header' => $table_structure['header'],
'#rows' => $table_structure['rows'],
'#sticky' => TRUE,
'#empty' => $this
->t('No mails found'),
];
$form['mails']['pager'] = [
'#type' => 'pager',
'#tags' => [],
];
return $form;
}