View source
<?php
namespace Drupal\addtoany\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Extension\ModuleHandler;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Entity\ContentEntityType;
use Drupal\Core\Link;
class AddToAnySettingsForm extends ConfigFormBase {
protected $moduleHandler;
public function __construct(ModuleHandler $module_handler) {
$this->moduleHandler = $module_handler;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('module_handler'));
}
public function getFormId() {
return 'addtoany_settings_form';
}
protected function getEditableConfigNames() {
return [
'addtoany.settings',
];
}
public function buildForm(array $form, FormStateInterface $form_state) {
global $base_path;
$addtoany_settings = $this
->config('addtoany.settings');
$button_img = '<img src="' . $base_path . drupal_get_path('module', 'addtoany') . '/images/%s" width="%d" height="%d"%s />';
$button_options = [
'default' => sprintf($button_img, 'a2a_32_32.svg', 32, 32, ' class="addtoany-round-icon"'),
'custom' => $this
->t('Custom button'),
'none' => $this
->t('None'),
];
$attributes_for_code = [
'autocapitalize' => [
'off',
],
'autocomplete' => [
'off',
],
'autocorrect' => [
'off',
],
'spellcheck' => [
'false',
],
];
$form['#attached']['library'][] = 'addtoany/addtoany.admin';
$form['addtoany_button_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Buttons'),
'#open' => TRUE,
];
$form['addtoany_button_settings']['addtoany_buttons_size'] = [
'#type' => 'number',
'#title' => $this
->t('Icon size'),
'#field_suffix' => ' ' . $this
->t('pixels'),
'#default_value' => $addtoany_settings
->get('buttons_size'),
'#size' => 10,
'#maxlength' => 3,
'#min' => 8,
'#max' => 999,
'#required' => TRUE,
];
$form['addtoany_button_settings']['addtoany_service_button_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Service Buttons'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
];
$form['addtoany_button_settings']['addtoany_service_button_settings']['addtoany_additional_html'] = [
'#type' => 'textarea',
'#title' => $this
->t('Service Buttons HTML code'),
'#default_value' => $addtoany_settings
->get('additional_html'),
'#description' => $this
->t('You can add HTML code to display customized <a href="https://www.addtoany.com/buttons/customize/drupal/standalone_services" target="_blank">standalone service buttons</a> next to each universal share button. For example: <br /> <code><a class="a2a_button_facebook"></a><br /><a class="a2a_button_twitter"></a><br /><a class="a2a_button_pinterest"></a></code>
'),
'#attributes' => $attributes_for_code,
];
$form['addtoany_button_settings']['universal_button'] = [
'#type' => 'details',
'#title' => $this
->t('Universal Button'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
];
$form['addtoany_button_settings']['universal_button']['addtoany_universal_button'] = [
'#type' => 'radios',
'#title' => $this
->t('Button'),
'#default_value' => $addtoany_settings
->get('universal_button'),
'#attributes' => [
'class' => [
'addtoany-universal-button-option',
],
],
'#options' => $button_options,
];
$form['addtoany_button_settings']['universal_button']['addtoany_custom_universal_button'] = [
'#type' => 'textfield',
'#title' => $this
->t('Custom button URL'),
'#default_value' => $addtoany_settings
->get('custom_universal_button'),
'#description' => $this
->t('URL of the button image. Example: http://example.com/share.png'),
'#states' => [
'visible' => [
':input[name="addtoany_universal_button"]' => [
'value' => 'custom',
],
],
],
];
$form['addtoany_button_settings']['universal_button']['addtoany_universal_button_placement'] = [
'#type' => 'radios',
'#title' => $this
->t('Button placement'),
'#default_value' => $addtoany_settings
->get('universal_button_placement'),
'#options' => [
'after' => $this
->t('After the service buttons'),
'before' => $this
->t('Before the service buttons'),
],
'#states' => [
'invisible' => [
':input[name="addtoany_universal_button"]' => [
'value' => 'none',
],
],
],
];
$form['addtoany_additional_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Additional options'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
];
$form['addtoany_additional_settings']['addtoany_additional_js'] = [
'#type' => 'textarea',
'#title' => $this
->t('Additional JavaScript'),
'#default_value' => $addtoany_settings
->get('additional_js'),
'#description' => $this
->t('You can add special JavaScript code for AddToAny. See <a href="https://www.addtoany.com/buttons/customize/drupal" target="_blank">AddToAny documentation</a>.'),
'#attributes' => $attributes_for_code,
];
$form['addtoany_additional_settings']['addtoany_additional_css'] = [
'#type' => 'textarea',
'#title' => $this
->t('Additional CSS'),
'#default_value' => $addtoany_settings
->get('additional_css'),
'#description' => $this
->t('You can add special CSS code for AddToAny. See <a href="https://www.addtoany.com/buttons/customize/drupal" target="_blank">AddToAny documentation</a>.'),
'#attributes' => $attributes_for_code,
];
if ($this->moduleHandler
->moduleExists('token')) {
$form['tokens'] = [
'#theme' => 'token_tree_link',
'#token_types' => [
'node',
],
'#global_types' => TRUE,
'#click_insert' => TRUE,
'#show_restricted' => FALSE,
'#recursion_limit' => 3,
'#text' => $this
->t('Browse available tokens'),
];
}
$form['addtoany_entity_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Entities'),
];
$form['addtoany_entity_settings']['addtoany_entity_tip_1'] = [
'#type' => 'html_tag',
'#tag' => 'p',
'#value' => $this
->t('AddToAny is available on the "Manage display" pages of enabled entities, e.g. Structure > Content types > Article > Manage display.'),
];
$entities = self::getContentEntities();
\Drupal::moduleHandler()
->alter('addtoany_entity_types', $entities);
$linkableEntities = [
'block_content',
'comment',
'commerce_product',
'commerce_store',
'contact_message',
'media',
'node',
'paragraph',
];
foreach ($entities as $entity) {
$entityId = $entity
->id();
$entityType = $entity
->getBundleEntityType();
$bundles = \Drupal::service('entity_type.bundle.info')
->getBundleInfo($entityId);
$links = [];
foreach ($bundles as $machine_name => $bundle) {
$label = $bundle['label'];
if ($label instanceof TranslatableMarkup) {
$label = $label
->render();
}
if ($this->moduleHandler
->moduleExists('field_ui')) {
if (in_array($entityId, $linkableEntities) && $entityType) {
$links[] = Link::createFromRoute(t($label), "entity.entity_view_display.{$entityId}.default", [
$entityType => $machine_name,
])
->toString();
}
}
}
$description = empty($links) ? '' : '( ' . implode(' | ', $links) . ' )';
$form['addtoany_entity_settings'][$entityId] = [
'#type' => 'checkbox',
'#title' => $this
->t('@entity', [
'@entity' => $entity
->getLabel(),
]),
'#default_value' => $addtoany_settings
->get("entities.{$entityId}"),
'#description' => $description,
'#attributes' => [
'class' => [
'addtoany-entity-checkbox',
],
],
];
}
$form['addtoany_entity_settings']['addtoany_entity_tip_2'] = [
'#type' => 'html_tag',
'#tag' => 'p',
'#value' => $this
->t('A cache rebuild may be required before changes take effect.'),
];
return parent::buildForm($form, $form_state);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$values = $form_state
->getValues();
$this
->config('addtoany.settings')
->set('additional_css', $values['addtoany_additional_css'])
->set('additional_html', $values['addtoany_additional_html'])
->set('additional_js', $values['addtoany_additional_js'])
->set('buttons_size', $values['addtoany_buttons_size'])
->set('custom_universal_button', $values['addtoany_custom_universal_button'])
->set('universal_button', $values['addtoany_universal_button'])
->set('universal_button_placement', $values['addtoany_universal_button_placement']);
foreach (self::getContentEntities() as $entity) {
$entityId = $entity
->id();
$this
->config('addtoany.settings')
->set("entities.{$entityId}", $values[$entityId]);
}
$this
->config('addtoany.settings')
->save();
parent::submitForm($form, $form_state);
}
public static function getContentEntities() {
$content_entity_types = [];
$entity_type_definitions = \Drupal::entityTypeManager()
->getDefinitions();
foreach ($entity_type_definitions as $definition) {
if ($definition instanceof ContentEntityType) {
$content_entity_types[] = $definition;
}
}
return $content_entity_types;
}
}