You are here

class ChosenConfigForm in Chosen 8.2

Same name and namespace in other branches
  1. 3.0.x src/Form/ChosenConfigForm.php \Drupal\chosen\Form\ChosenConfigForm

Implements a ChosenConfig form.

Hierarchy

Expanded class hierarchy of ChosenConfigForm

1 string reference to 'ChosenConfigForm'
chosen.routing.yml in ./chosen.routing.yml
chosen.routing.yml

File

src/Form/ChosenConfigForm.php, line 17

Namespace

Drupal\chosen\Form
View source
class ChosenConfigForm extends ConfigFormBase {

  /**
   * The Messenger service.
   *
   * @var \Drupal\Core\Messenger\MessengerInterface
   */
  protected $messenger;

  /**
   * Theme handler.
   *
   * @var \Drupal\Core\Extension\ThemeHandler
   *   Theme handler.
   */
  protected $themeHandler;

  /**
   * {@inheritdoc}
   */
  public function __construct(ConfigFactoryInterface $config_factory, ThemeHandler $themeHandler, MessengerInterface $messenger) {
    parent::__construct($config_factory);
    $this->themeHandler = $themeHandler;
    $this->messenger = $messenger;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config.factory'), $container
      ->get('theme_handler'), $container
      ->get('messenger'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'chosen_config_form';
  }

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

  /**
   * Chosen configuration form.
   *
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $chosen_path = _chosen_lib_get_chosen_path();
    if (!$chosen_path) {
      $url = Url::fromUri(CHOSEN_WEBSITE_URL);
      $link = Link::fromTextAndUrl($this
        ->t('Chosen JavaScript file'), $url)
        ->toString();
      $this->messenger
        ->addError($this
        ->t('The library could not be detected. You need to download the @chosen and extract the entire contents of the archive into the %path directory on your server.', [
        '@chosen' => $link,
        '%path' => 'libraries',
      ]));
      return $form;
    }
    $form = parent::buildForm($form, $form_state);

    // Chosen settings:
    $chosen_conf = $this->configFactory
      ->get('chosen.settings');
    $form['minimum_single'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Minimum number of options for single select'),
      '#options' => array_merge([
        '0' => t('Always apply'),
      ], range(1, 25)),
      '#default_value' => $chosen_conf
        ->get('minimum_single'),
      '#description' => $this
        ->t('The minimum number of options to apply Chosen for single select fields. Example : choosing 10 will only apply Chosen if the number of options is greater or equal to 10.'),
    ];
    $form['minimum_multiple'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Minimum number of options for multi select'),
      '#options' => array_merge([
        '0' => t('Always apply'),
      ], range(1, 25)),
      '#default_value' => $chosen_conf
        ->get('minimum_multiple'),
      '#description' => $this
        ->t('The minimum number of options to apply Chosen for multi select fields. Example : choosing 10 will only apply Chosen if the number of options is greater or equal to 10.'),
    ];
    $form['disable_search_threshold'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Minimum number to show Search on Single Select'),
      '#options' => array_merge([
        '0' => t('Always apply'),
      ], range(1, 25)),
      '#default_value' => $chosen_conf
        ->get('disable_search_threshold'),
      '#description' => $this
        ->t('The minimum number of options to apply Chosen search box. Example : choosing 10 will only apply Chosen search if the number of options is greater or equal to 10.'),
    ];
    $form['max_shown_results'] = [
      '#type' => 'number',
      '#title' => $this
        ->t('Maximum shown results'),
      '#default_value' => $chosen_conf
        ->get('max_shown_results'),
      '#description' => $this
        ->t('Only show the first (n) matching options in the results. This can be used to increase performance for selects with very many options. Leave blank to show all results.'),
    ];
    $form['minimum_width'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Minimum width of widget'),
      '#field_suffix' => 'px',
      '#size' => 3,
      '#default_value' => $chosen_conf
        ->get('minimum_width'),
      '#description' => $this
        ->t('The minimum width of the Chosen widget. Leave blank to have chosen determine this.'),
    ];
    $form['use_relative_width'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Use relative width'),
      '#default_value' => $chosen_conf
        ->get('use_relative_width'),
      '#description' => $this
        ->t('The relative width (% instead of px) of the Chosen widget.'),
    ];
    $form['jquery_selector'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Apply Chosen to the following elements'),
      '#description' => $this
        ->t('A comma-separated list of jQuery selectors to apply Chosen to, such as <code>select#edit-operation, select#edit-type</code> or <code>.chosen-select</code>. Defaults to <code>select</code> to apply Chosen to all <code>&lt;select&gt;</code> elements.'),
      '#default_value' => $chosen_conf
        ->get('jquery_selector'),
    ];
    $form['options'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Chosen general options'),
      '#open' => TRUE,
    ];
    $form['options']['search_contains'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Search also in the middle of words'),
      '#default_value' => $chosen_conf
        ->get('search_contains'),
      '#description' => $this
        ->t('Per default chosen searches only at beginning of words. Enable this option will also find results in the middle of words.
      Example: Search for <em>land</em> will also find <code>Switzer<strong>land</strong></code>.'),
    ];
    $form['options']['disable_search'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Disable search box'),
      '#default_value' => $chosen_conf
        ->get('disable_search'),
      '#description' => $this
        ->t('Enable or disable the search box in the results list to filter out possible options.'),
    ];
    $form['options']['allow_single_deselect'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Allow Deselect on Single Selects'),
      '#default_value' => $chosen_conf
        ->get('allow_single_deselect'),
      '#description' => $this
        ->t('Enable or disable the deselect on single selects. Requires an empty default option.'),
    ];
    $form['theme_options'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Chosen per theme options'),
      '#open' => TRUE,
    ];
    $default_disabled_themes = $chosen_conf
      ->get('disabled_themes');
    $default_disabled_themes = is_array($default_disabled_themes) ? $default_disabled_themes : [];
    $form['theme_options']['disabled_themes'] = [
      '#type' => 'checkboxes',
      '#title' => t('Disable the default Chosen theme for the following themes'),
      '#options' => $this
        ->chosen_enabled_themes_options(),
      '#default_value' => $default_disabled_themes,
      '#description' => $this
        ->t('Enable or disable the default Chosen CSS file. Select a theme if it contains custom styles for Chosen replacements.'),
    ];
    $form['options']['chosen_include'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Use chosen for admin pages and/or front end pages'),
      '#options' => [
        CHOSEN_INCLUDE_EVERYWHERE => $this
          ->t('Include Chosen on every page'),
        CHOSEN_INCLUDE_ADMIN => $this
          ->t('Include Chosen only on admin pages'),
        CHOSEN_INCLUDE_NO_ADMIN => $this
          ->t('Include Chosen only on front end pages'),
      ],
      '#default_value' => $chosen_conf
        ->get('chosen_include'),
    ];
    $form['strings'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Chosen strings'),
      '#open' => TRUE,
    ];
    $form['strings']['placeholder_text_multiple'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Placeholder text of multiple selects'),
      '#required' => TRUE,
      '#default_value' => $chosen_conf
        ->get('placeholder_text_multiple'),
    ];
    $form['strings']['placeholder_text_single'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Placeholder text of single selects'),
      '#required' => TRUE,
      '#default_value' => $chosen_conf
        ->get('placeholder_text_single'),
    ];
    $form['strings']['no_results_text'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('No results text'),
      '#required' => TRUE,
      '#default_value' => $chosen_conf
        ->get('no_results_text'),
    ];
    return $form;
  }

  /**
   * Chosen configuration form submit handler.
   *
   * Validates submission by checking for duplicate entries, invalid
   * characters, and that there is an abbreviation and phrase pair.
   *
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $config = $this->configFactory
      ->getEditable('chosen.settings');
    $config
      ->set('minimum_single', $form_state
      ->getValue('minimum_single'))
      ->set('minimum_multiple', $form_state
      ->getValue('minimum_multiple'))
      ->set('disable_search_threshold', $form_state
      ->getValue('disable_search_threshold'))
      ->set('max_shown_results', $form_state
      ->getValue('max_shown_results'))
      ->set('minimum_width', $form_state
      ->getValue('minimum_width'))
      ->set('use_relative_width', $form_state
      ->getValue('use_relative_width'))
      ->set('jquery_selector', $form_state
      ->getValue('jquery_selector'))
      ->set('search_contains', $form_state
      ->getValue('search_contains'))
      ->set('disable_search', $form_state
      ->getValue('disable_search'))
      ->set('allow_single_deselect', $form_state
      ->getValue('allow_single_deselect'))
      ->set('disabled_themes', $form_state
      ->getValue('disabled_themes'))
      ->set('chosen_include', $form_state
      ->getValue('chosen_include'))
      ->set('placeholder_text_multiple', $form_state
      ->getValue('placeholder_text_multiple'))
      ->set('placeholder_text_single', $form_state
      ->getValue('placeholder_text_single'))
      ->set('no_results_text', $form_state
      ->getValue('no_results_text'));
    $config
      ->save();
    parent::submitForm($form, $form_state);
  }

  /**
   * Helper function to get options for enabled themes.
   */
  private function chosen_enabled_themes_options() {
    $options = [];

    // Get a list of available themes.
    $themes = $this->themeHandler
      ->listInfo();
    foreach ($themes as $theme_name => $theme) {

      // Only create options for enabled themes.
      if ($theme->status) {
        if (!(isset($theme->info['hidden']) && $theme->info['hidden'])) {
          $options[$theme_name] = $theme->info['name'];
        }
      }
    }
    return $options;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ChosenConfigForm::$messenger protected property The Messenger service. Overrides MessengerTrait::$messenger
ChosenConfigForm::$themeHandler protected property Theme handler.
ChosenConfigForm::buildForm public function Chosen configuration form. Overrides ConfigFormBase::buildForm
ChosenConfigForm::chosen_enabled_themes_options private function Helper function to get options for enabled themes.
ChosenConfigForm::create public static function Instantiates a new instance of this class. Overrides ConfigFormBase::create
ChosenConfigForm::getEditableConfigNames protected function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
ChosenConfigForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
ChosenConfigForm::submitForm public function Chosen configuration form submit handler. Overrides ConfigFormBase::submitForm
ChosenConfigForm::__construct public function Constructs a \Drupal\system\ConfigFormBase object. Overrides ConfigFormBase::__construct
ConfigFormBaseTrait::config protected function Retrieves a configuration object.
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 1
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::configFactory protected function Gets the config factory for this form. 1
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait::redirect
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 62
LinkGeneratorTrait::$linkGenerator protected property The link generator. 1
LinkGeneratorTrait::getLinkGenerator Deprecated protected function Returns the link generator.
LinkGeneratorTrait::l Deprecated protected function Renders a link to a route given a route name and its parameters.
LinkGeneratorTrait::setLinkGenerator Deprecated public function Sets the link generator service.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator Deprecated protected function Returns the URL generator service.
UrlGeneratorTrait::setUrlGenerator Deprecated public function Sets the URL generator service.
UrlGeneratorTrait::url Deprecated protected function Generates a URL or path for a specific route based on the given parameters.