PluginProbe
YayMail – WooCommerce Email Customizer / 4.3.4
YayMail – WooCommerce Email Customizer v4.3.4
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 / Sources.php

Sources.php in YayMail – WooCommerce Email Customizer 4.3.4, at src/Constants/Sources.php

26 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace YayMail\Constants;
4
5 use YayMail\Utils\SingletonTrait;
6
7 /**
8 * Sources
9 */
10 class Sources {
11 use SingletonTrait;
12
13 protected function __construct() {
14 $this->define_constants();
15 }
16
17 protected function define_constants() {
18 if ( ! defined( 'YAYMAIL_EXTRA_ELEMENT_ICON' ) ) {
19 define( 'YAYMAIL_EXTRA_ELEMENT_ICON', '<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 20 20"><g id="Layer_2" data-name="Layer 2"><path d="M16.68,16.38c0,.34-.27.61-.61.61h-.91v.91c0,.34-.27.61-.61.61s-.61-.27-.61-.61v-.91h-.91c-.34,0-.61-.27-.61-.61s.27-.61.61-.61h.91v-.91c0-.34.27-.61.61-.61s.61.27.61.61v.91h.91c.34,0,.61.27.61.61ZM16.68,1.5H3.32c-1.01,0-1.82.82-1.82,1.82v13.36c0,1.01.82,1.82,1.82,1.82h5.46c1.01,0,1.82-.82,1.82-1.82v-1.21c0-.34-.27-.61-.61-.61h-.91c-.5,0-.91-.41-.91-.91s.41-.91.91-.91h.91c.34,0,.61-.27.61-.61v-1.82h1.21v.3c0,1.17.95,2.12,2.12,2.12s2.12-.95,2.12-2.12v-.3h.61c1.01,0,1.82-.82,1.82-1.82V3.32c0-1.01-.82-1.82-1.82-1.82ZM2.71,3.32c0-.34.27-.61.61-.61h6.07v1.82c0,.34.27.61.61.61h.91c.5,0,.91.41.91.91s-.41.91-.91.91h-.91c-.34,0-.61.27-.61.61v1.82h-1.21v-.3c0-1.17-.95-2.12-2.12-2.12s-2.12.95-2.12,2.12h0v.3h-1.21V3.32ZM9.09,11.82c-1.17,0-2.12.95-2.12,2.12s.95,2.12,2.12,2.12h.3v.61c0,.34-.27.61-.61.61H3.32c-.34,0-.61-.27-.61-.61v-6.07h1.82c.34,0,.61-.27.61-.61v-.91c0-.5.41-.91.91-.91s.91.41.91.91v.91c0,.34.27.61.61.61h1.82v1.21h-.3ZM17.29,8.79c0,.34-.27.61-.61.61h-1.21c-.34,0-.61.27-.61.61v.91c0,.5-.41.91-.91.91s-.91-.41-.91-.91v-.91c0-.34-.27-.61-.61-.61h-1.82v-1.21h.3c1.17,0,2.12-.95,2.12-2.12s-.95-2.12-2.12-2.12h-.3v-1.21h6.07c.34,0,.61.27.61.61v5.46Z"/></g></svg>' );
20 }
21 if ( ! defined( 'YAYMAIL_EMAIL_RENDER_PRIORITY' ) ) {
22 define( 'YAYMAIL_EMAIL_RENDER_PRIORITY', 10 );
23 }
24 }
25 }
26