3ebc72e218d35b400ca79c63b82d8f0e13b6a149
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Images / ImageShape.php
1 <?php
2
3 namespace Drupal\bootstrap\Plugin\Setting\General\Images;
4
5 use Drupal\bootstrap\Plugin\Setting\SettingBase;
6
7 /**
8  * The "image_shape" theme setting.
9  *
10  * @ingroup plugins_setting
11  *
12  * @BootstrapSetting(
13  *   id = "image_shape",
14  *   type = "select",
15  *   title = @Translation("Default image shape"),
16  *   description = @Translation("Add classes to an <code>&lt;img&gt;</code> element to easily style images in any project."),
17  *   defaultValue = "",
18  *   empty_option = @Translation("None"),
19  *   groups = {
20  *     "general" = @Translation("General"),
21  *     "images" = @Translation("Images"),
22  *   },
23  *   options = {
24  *     "img-rounded" = @Translation("Rounded"),
25  *     "img-circle" = @Translation("Circle"),
26  *     "img-thumbnail" = @Translation("Thumbnail"),
27  *   },
28  *   see = {
29  *     "https://getbootstrap.com/docs/3.3/css/#images-shapes" = @Translation("Image Shapes"),
30  *   },
31  * )
32  */
33 class ImageShape extends SettingBase {}