PluginProbe
YayMail – WooCommerce Email Customizer / 4.4.0
YayMail – WooCommerce Email Customizer v4.4.0
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 / TemplatePatterns / SectionTemplates / Intro.php

Intro.php in YayMail – WooCommerce Email Customizer 4.4.0, at src/TemplatePatterns/SectionTemplates/Intro.php

27 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace YayMail\TemplatePatterns\SectionTemplates;
3
4 use YayMail\Abstracts\BaseSectionTemplate;
5 use YayMail\Utils\SingletonTrait;
6
7 /**
8 * Intro Patterns
9 */
10 class Intro extends BaseSectionTemplate {
11
12 use SingletonTrait;
13
14 public const TYPE = 'intro';
15
16 private function __construct() {
17 $this->id = uniqid();
18 $this->name = __( 'Intro', 'woocommerce' );
19 $this->group = 'section_template';
20 $this->position = 16;
21 $this->icon = '
22 <svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 1024 1024">
23 <path d="M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H212V212h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H612V212h200v200zM464 544H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H212V612h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H612V612h200v200z"/>
24 </svg>';
25 }
26 }
27