View source
<?php
namespace Drupal\sharemessage\Form;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\HttpFoundation\Request;
class AddthisSettingsForm extends ConfigFormBase {
protected function getEditableConfigNames() {
return [
'sharemessage.addthis',
];
}
public function getFormID() {
return 'sharemessage_addthis_settings';
}
public function buildForm(array $form, FormStateInterface $form_state, Request $request = NULL) {
$config = $this
->config('sharemessage.addthis');
$form['addthis_profile_id'] = [
'#title' => t('AddThis Profile ID'),
'#type' => 'textfield',
'#default_value' => $config
->get('addthis_profile_id'),
];
$form['default_services'] = [
'#title' => t('Default visible services'),
'#type' => 'select',
'#multiple' => TRUE,
'#options' => sharemessage_get_addthis_services(),
'#default_value' => $config
->get('services'),
'#size' => 10,
];
$form['default_additional_services'] = [
'#type' => 'checkbox',
'#title' => t('Show additional services button'),
'#default_value' => $config
->get('additional_services'),
];
$form['default_counter'] = [
'#type' => 'select',
'#title' => t('Show AddThis counter'),
'#empty_option' => t('No'),
'#options' => [
'addthis_pill_style' => t('Pill style'),
'addthis_bubble_style' => t('Bubble style'),
],
'#default_value' => $config
->get('counter'),
];
$form['default_icon_style'] = [
'#title' => t('Default icon style'),
'#type' => 'radios',
'#options' => [
'addthis_16x16_style' => '16x16 pix',
'addthis_32x32_style' => '32x32 pix',
],
'#default_value' => $config
->get('icon_style'),
];
$form['local_services_definition'] = [
'#type' => 'checkbox',
'#title' => t('Use local service definitions file'),
'#description' => t('Check this if you are behind a firewall and the module cannot access the services definition at http://cache.addthiscdn.com/services/v1/sharing.en.json.'),
'#default_value' => $config
->get('local_services_definition'),
];
$form['shared_video_width'] = [
'#title' => t('Video height'),
'#description' => t('The width of the player when sharing a video.'),
'#type' => 'textfield',
'#default_value' => $config
->get('shared_video_width'),
];
$form['shared_video_height'] = [
'#title' => t('Video height'),
'#description' => t('The height of the player when sharing a video.'),
'#type' => 'textfield',
'#default_value' => $config
->get('shared_video_height'),
];
return parent::buildForm($form, $form_state);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
Cache::invalidateTags([
'library_info',
]);
$this
->config('sharemessage.addthis')
->set('addthis_profile_id', $form_state
->getValue('addthis_profile_id'))
->set('services', $form_state
->getValue('default_services'))
->set('additional_services', $form_state
->getValue('default_additional_services'))
->set('counter', $form_state
->getValue('default_counter'))
->set('icon_style', $form_state
->getValue('default_icon_style'))
->set('local_services_definition', $form_state
->getValue('local_services_definition'))
->set('shared_video_width', $form_state
->getValue('shared_video_width'))
->set('shared_video_height', $form_state
->getValue('shared_video_height'))
->save();
}
}