smart_date-3.1.0-beta1/src/FormElement/Boolean.php
src/FormElement/Boolean.php
<?php namespace Drupal\smart_date\FormElement; use Drupal\config_translation\FormElement\FormElementBase; use Drupal\Core\Language\LanguageInterface; /** * Defines the boolean element for the configuration translation interface. */ class Boolean extends FormElementBase { /** * {@inheritdoc} */ public function getTranslationElement(LanguageInterface $translation_language, $source_config, $translation_config) { return [ '#type' => 'checkbox', '#return_value' => '1', ] + parent::getTranslationElement($translation_language, $source_config, $translation_config); } }