public function ReportsForm::buildForm in Piwik Reports 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/ ReportsForm.php, line 60
Class
- ReportsForm
- Class ReportsForm.
Namespace
Drupal\piwik_reports\FormCode
public function buildForm(array $form, FormStateInterface $form_state, array $sites = NULL) {
$config = \Drupal::config('piwik_reports.piwikreportssettings');
$session = $this
->getRequest()
->getSession();
$allowed_sites = [];
$allowed_keys = explode(',', $config
->get('piwik_reports_allowed_sites'));
$form['#attributes'] = [
'class' => [
'search-form',
'container-inline',
],
];
$form['piwik_filters'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Select site and time period'),
];
$period = [
0 => $this
->t('Today'),
1 => $this
->t('Yesterday'),
2 => $this
->t('Last week'),
3 => $this
->t('Last month'),
4 => $this
->t('Last year'),
];
$form['piwik_filters']['period'] = [
'#type' => 'select',
'#title' => $this
->t('When'),
'#description' => $this
->t('Report Period'),
'#options' => $period,
'#size' => 1,
'#default_value' => $session
->get('piwik_reports_period') ?? 0,
'#weight' => '0',
];
if ($sites) {
foreach ($sites as $site) {
if (empty($allowed_keys[0]) || in_array($site['idsite'], $allowed_keys)) {
$allowed_sites[$site['idsite']] = $site['name'];
}
if ($session
->get('piwik_reports_site') == $site['idsite']) {
$session_site_exists = TRUE;
}
}
if ($session
->get('piwik_reports_site') == '' || !$session_site_exists || !array_key_exists($session
->get('piwik_reports_site'), $allowed_sites)) {
// When not set, set to first of the allowed sites.
$session
->set('piwik_reports_site', array_key_first($allowed_sites));
}
if (count($allowed_sites) > 1) {
$form['piwik_filters']['site'] = array(
'#type' => 'select',
'#title' => $this
->t('Site'),
'#weight' => -5,
'#default_value' => $session
->get('piwik_reports_site'),
'#options' => $allowed_sites,
);
}
elseif (count($allowed_sites) == 1) {
foreach ($allowed_sites as $siteid => $sitename) {
break;
}
$form['piwik_filters']['site'] = array(
'#type' => 'hidden',
'#value' => $siteid,
);
$form['piwik_filters']['sitename'] = array(
'#type' => 'textfield',
'#title' => $this
->t('Site'),
'#weight' => -5,
'#size' => 25,
'#value' => $sitename,
'#disabled' => TRUE,
);
$form['piwik_filters']['period']['#attributes'] = [
'onchange' => 'this.form.submit();',
];
}
}
$form['piwik_filters']['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Filter'),
];
return $form;
}