You are here

CheckboxWidget.php in Facets 8

File

src/Plugin/facets/widget/CheckboxWidget.php
View source
<?php

namespace Drupal\facets\Plugin\facets\widget;


/**
 * The checkbox / radios widget.
 *
 * @FacetsWidget(
 *   id = "checkbox",
 *   label = @Translation("List of checkboxes"),
 *   description = @Translation("A configurable widget that shows a list of checkboxes"),
 * )
 */
class CheckboxWidget extends LinksWidget {

  /**
   * {@inheritdoc}
   */
  protected function appendWidgetLibrary(array &$build) {
    $build['#attributes']['class'][] = 'js-facets-checkbox-links';
    $build['#attached']['library'][] = 'facets/drupal.facets.checkbox-widget';
  }

}

Classes

Namesort descending Description
CheckboxWidget The checkbox / radios widget.