class GmapFieldSettingsForm in Google Map Field 8
Administration settings form.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\google_map_field\Form\GmapFieldSettingsForm
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of GmapFieldSettingsForm
1 string reference to 'GmapFieldSettingsForm'
File
- src/
Form/ GmapFieldSettingsForm.php, line 21 - Contains \Drupal\google_map_field\Form\GmapFieldSettingsForm.
Namespace
Drupal\google_map_field\FormView source
class GmapFieldSettingsForm extends ConfigFormBase {
/**
* Drupal\Core\Config\ConfigFactoryInterface definition.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/**
* The construct method.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The config factory.
*/
public function __construct(ConfigFactoryInterface $config_factory) {
$this->configFactory = $config_factory;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'));
}
/**
* Implements \Drupal\Core\Form\FormInterface::getFormID().
*/
public function getFormId() {
return 'google_map_field_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'google_map_field.settings',
];
}
/**
* Implements \Drupal\Core\Form\FormInterface::buildForm().
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('google_map_field.settings');
$settings = $config
->get();
$api_key = '';
$client_id = '';
if (isset($settings['google_map_field_apikey']) && trim($settings['google_map_field_apikey']) != '') {
$api_key = $settings['google_map_field_apikey'];
}
if (isset($settings['google_map_field_map_client_id']) && trim($settings['google_map_field_map_client_id']) != '') {
$client_id = $settings['google_map_field_map_client_id'];
}
$form['google_map_field_auth_method'] = [
'#type' => 'select',
'#title' => $this
->t('Google API Authentication Method'),
'#default_value' => isset($settings['google_map_field_auth_method']) ? $settings['google_map_field_auth_method'] : GOOGLE_MAP_FIELD_AUTH_KEY,
'#options' => [
GOOGLE_MAP_FIELD_AUTH_KEY => $this
->t('API Key'),
GOOGLE_MAP_FIELD_AUTH_WORK => $this
->t('Google Maps API for Work'),
],
];
$form['google_map_field_apikey'] = [
'#type' => 'textfield',
'#title' => $this
->t('Google Maps API Key'),
'#description' => $this
->t('Obtain a Google Maps Javascript API key at <a href="@link">@link</a>', [
'@link' => 'https://developers.google.com/maps/documentation/javascript/get-api-key',
]),
'#default_value' => $api_key,
'#required' => FALSE,
'#size' => 80,
'#states' => [
'visible' => [
':input[name="google_map_field_auth_method"]' => [
'value' => GOOGLE_MAP_FIELD_AUTH_KEY,
],
],
],
];
$form['google_map_field_map_client_id'] = [
'#type' => 'textfield',
'#title' => $this
->t('Google Maps API for Work: Client ID'),
'#description' => $this
->t('For more information, visit: <a href="@link">@link</a>', [
'@link' => 'https://developers.google.com/maps/documentation/javascript/get-api-key#client-id',
]),
'#default_value' => $client_id,
'#required' => FALSE,
'#size' => 80,
'#states' => [
'visible' => [
':input[name="google_map_field_auth_method"]' => [
'value' => GOOGLE_MAP_FIELD_AUTH_WORK,
],
],
],
];
return parent::buildForm($form, $form_state);
}
/**
* Implements \Drupal\Core\Form\FormInterface:submitForm()
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $this->configFactory
->getEditable('google_map_field.settings');
$config
->set('google_map_field_auth_method', $form_state
->getValue('google_map_field_auth_method'))
->set('google_map_field_apikey', $form_state
->getValue('google_map_field_apikey'))
->set('google_map_field_map_client_id', $form_state
->getValue('google_map_field_map_client_id'))
->set('google_map_field_icon', $form_state
->getValue('google_map_field_icon'))
->save();
parent::submitForm($form, $form_state);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
GmapFieldSettingsForm:: |
protected | property |
Drupal\Core\Config\ConfigFactoryInterface definition. Overrides FormBase:: |
|
GmapFieldSettingsForm:: |
public | function |
Implements \Drupal\Core\Form\FormInterface::buildForm(). Overrides ConfigFormBase:: |
|
GmapFieldSettingsForm:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
|
GmapFieldSettingsForm:: |
protected | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
GmapFieldSettingsForm:: |
public | function |
Implements \Drupal\Core\Form\FormInterface::getFormID(). Overrides FormInterface:: |
|
GmapFieldSettingsForm:: |
public | function |
Implements \Drupal\Core\Form\FormInterface:submitForm() Overrides ConfigFormBase:: |
|
GmapFieldSettingsForm:: |
public | function |
The construct method. Overrides ConfigFormBase:: |
|
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |