contextly-8.x-2.1/src/Form/ContextlyAdminFormOld.php
src/Form/ContextlyAdminFormOld.php
<?php
namespace Drupal\contextly\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* The ContextlyAdminFormOld class.
*/
class ContextlyAdminFormOld extends ConfigFormBase {
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'contextly.settings',
];
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'contextly_admin_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('contextly.settings');
$form['api_key'] = [
'#type' => 'textfield',
'#title' => $this->t('API key'),
'#description' => $this->t('Enter your contextly api key.'),
'#maxlength' => 64,
'#size' => 64,
'#default_value' => $config->get('api_key'),
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this->config('contextly.settings')
->set('api_key', $form_state->getValue('api_key'))
->save();
}
}
