easy_social-8.x-3.x-dev/src/Form/FacebookSettingsForm.php
src/Form/FacebookSettingsForm.php
<?php
namespace Drupal\easy_social\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Configure user settings for this site.
*/
final class FacebookSettingsForm extends ConfigFormBase {
/**
* Config settings.
*
* @var string
*/
private const SETTINGS = 'easy_social.facebook';
/**
* Implements \Drupal\Core\Form\FormInterface::getFormId().
*/
public function getFormId(): string {
return 'easy_social_facebook';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames(): array {
return [self::SETTINGS];
}
/**
* Implements \Drupal\Core\Form\FormInterface::buildForm().
*/
public function buildForm(array $form, FormStateInterface $form_state, $type = 'new') {
$config = $this->config(self::SETTINGS);
$form['help'] = [
'#markup' => t('For more information, please check out the official @facebook share widget <a href="@url" target="_blank">documentation</a>', [
'@facebook' => t('Facebook'),
'@url' => 'https://developers.facebook.com/docs/reference/plugins/like',
]),
'#weight' => -99,
];
$form['send'] = [
'#type' => 'checkbox',
'#title' => t('Send Button'),
'#description' => t('Include a Send button.'),
'#default_value' => $config->get('send'),
];
$form['share'] = [
'#type' => 'checkbox',
'#title' => t('Add Share Button'),
'#description' => t('Include a Share button.'),
'#default_value' => $config->get('share'),
];
$form['layout'] = [
'#type' => 'select',
'#title' => t('Layout Style'),
'#description' => t('Determines the size and amount of social context next to the button.'),
'#default_value' => $config->get('layout'),
'#options' => [
'button' => t('button'),
'button_count' => t('button with counter'),
'box_count' => t('box with counter'),
],
];
$form['width'] = [
'#type' => 'textfield',
'#title' => t('Width'),
'#description' => t('The width of the plugin, in pixels.'),
'#default_value' => $config->get('width'),
'#size' => 10,
];
$form['show_faces'] = [
'#type' => 'checkbox',
'#title' => t('Show Faces'),
'#description' => t('Show profile pictures when two or more friends like this.'),
'#default_value' => $config->get('show_faces'),
];
$form['font'] = [
'#type' => 'select',
'#title' => t('Font'),
'#description' => t('The font of the plugin.'),
'#default_value' => $config->get('font'),
'#options' => [
'' => t('Default'),
'arial' => t('arial'),
'lucida grande' => t('lucida grande'),
'segoe ui' => t('segoe ui'),
'tahoma' => t('tahoma'),
'trebuchet ms' => t('trebuchet ms'),
'verdana' => t('verdana'),
],
];
$form['colorscheme'] = [
'#type' => 'select',
'#title' => t('Color Scheme'),
'#description' => t('The color scheme of the plugin.'),
'#default_value' => $config->get('colorscheme'),
'#options' => [
'light' => t('light'),
'dark' => t('dark'),
],
];
$form['action'] = [
'#type' => 'select',
'#title' => t('Verb to display'),
'#description' => t('The verb to display in the button.'),
'#default_value' => $config->get('action'),
'#options' => [
'like' => t('like'),
'recommend' => t('recommend'),
],
];
return parent::buildForm($form, $form_state);
}
/**
* Implements \Drupal\Core\Form\FormInterface::submitForm().
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$config = $this->config(self::SETTINGS);
$config
->set('share', $form_state->getValue('share'))
->set('send', $form_state->getValue('send'))
->set('layout', $form_state->getValue('layout'))
->set('width', $form_state->getValue('width'))
->set('show_faces', $form_state->getValue('show_faces'))
->set('font', $form_state->getValue('font'))
->set('colorscheme', $form_state->getValue('colorscheme'))
->set('action', $form_state->getValue('action'))
->save();
}
}
