hospital_management-8.x-1.x-dev/web/themes/bootstrap/src/Plugin/Setting/General/Buttons/ButtonIconize.php
web/themes/bootstrap/src/Plugin/Setting/General/Buttons/ButtonIconize.php
<?php
namespace Drupal\bootstrap\Plugin\Setting\General\Buttons;
use Drupal\bootstrap\Plugin\Setting\SettingBase;
/**
* The "button_iconize" theme setting.
*
* @ingroup plugins_setting
*
* @BootstrapSetting(
* id = "button_iconize",
* type = "checkbox",
* title = @Translation("Iconize Buttons"),
* defaultValue = 1,
* description = @Translation("Adds icons to buttons based on the text value"),
* groups = {
* "general" = @Translation("General"),
* "button" = @Translation("Buttons"),
* },
* see = {
* "https://drupal-bootstrap.org/apis/hook_bootstrap_iconize_text_alter" = @Translation("hook_bootstrap_iconize_text_alter()"),
* },
* )
*/
class ButtonIconize extends SettingBase {}
