PluginProbe
YayMail – WooCommerce Email Customizer / 4.4.2
YayMail – WooCommerce Email Customizer v4.4.2
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / src / Constants / AttributesData.php

AttributesData.php in YayMail – WooCommerce Email Customizer 4.4.2, at src/Constants/AttributesData.php

30 lines 596 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace YayMail\Constants;
3
4 /**
5 * Attributes Data
6 */
7 class AttributesData {
8 const TITLE_SIZE_OPTIONS = [
9 'default' => 26,
10 'small' => 15,
11 'medium' => 19,
12 'large' => 29,
13 'xl' => 39,
14 'xxl' => 59,
15 ];
16
17 const BORDER_DEFAULT = [
18 'side' => 'none',
19 'width' => '1',
20 'style' => 'solid',
21 'color' => YAYMAIL_COLOR_BORDER_DEFAULT,
22 'custom' => [
23 'top' => '1',
24 'right' => '1',
25 'bottom' => '1',
26 'left' => '1',
27 ],
28 ];
29 }
30