You are here

PinterestSettingsForm.php in Easy Social 8.4

Same filename and directory in other branches
  1. 8.3 src/Form/PinterestSettingsForm.php

Contains \Drupal\easy_social\PinterestSettingsForm.

File

src/Form/PinterestSettingsForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\easy_social\PinterestSettingsForm.
 */
namespace Drupal\easy_social\Form;

use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Config\ConfigFactory;
use Drupal\Core\Plugin\Context\ContextInterface;
use Drupal\Core\Extension\ModuleHandler;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Form\FormStateInterface;

/**
 * Configure user settings for this site.
 */
class PinterestSettingsForm extends ConfigFormBase {

  /**
   * The module handler.
   *
   * @var \Drupal\Core\Extension\ModuleHandler
   */
  protected $moduleHandler;

  /**
   * Constructs a \Drupal\user\AccountSettingsForm object.
   *
   * @param \Drupal\Core\Config\ConfigFactory $config_factory
   *   The factory for configuration objects.
   * @param \Drupal\Core\Plugin\Context\ContextInterface $context
   *   The configuration context.
   * @param \Drupal\Core\Extension\ModuleHandler $module_handler
   *   The module handler.
   */
  public function __construct(ConfigFactory $config_factory, ModuleHandler $module_handler) {
    parent::__construct($config_factory);
    $this->moduleHandler = $module_handler;
  }

  /**
   * Implements \Drupal\Core\ControllerInterface::create().
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config.factory'), $container
      ->get('module_handler'));
  }

  /**
   * Implements \Drupal\Core\Form\FormInterface::getFormID().
   */
  public function getFormID() {
    return 'easy_social_pinterest';
  }

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [
      'easy_social.pinterest',
    ];
  }

  /**
   * Implements \Drupal\Core\Form\FormInterface::buildForm().
   */
  public function buildForm(array $form, FormStateInterface $form_state, $type = 'new') {
    $config = $this
      ->config('easy_social.pinterest');
    $form['help'] = array(
      '#markup' => t('For more information, please check out the official @pinterest share widget <a href="@url" target="_blank">documentation</a>', array(
        '@pinterest' => t('Pinterest'),
        '@url' => 'http://business.pinterest.com/widget-builder/#do_pin_it_button',
      )),
      '#weight' => -99,
    );
    $form['config'] = array(
      '#type' => 'select',
      '#title' => t('Pin Count'),
      '#options' => array(
        'above' => t('Above the Button'),
        'beside' => t('Beside the Button'),
        'none' => t('Not Shown'),
      ),
      '#default_value' => $config
        ->get('config'),
    );
    $form['image'] = array(
      //provide a list of images?
      '#type' => 'textfield',
      '#title' => t('Image'),
      '#default_value' => $config
        ->get('image'),
    );
    $form['description'] = array(
      '#type' => 'textfield',
      '#title' => t('Description'),
      '#default_value' => $config
        ->get('description'),
    );
    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('easy_social.pinterest');
    $config
      ->set('config', $form_state
      ->getValue('config'))
      ->set('image', $form_state
      ->getValue('image'))
      ->set('description', $form_state
      ->getValue('description'))
      ->save();
  }

}

Classes

Namesort descending Description
PinterestSettingsForm Configure user settings for this site.