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 / Header.php

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

33 lines 1.5 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 * Header Elements
9 */
10 class Header extends BaseSectionTemplate {
11
12 use SingletonTrait;
13
14 public const TYPE = 'header';
15
16 private function __construct() {
17 $this->id = uniqid();
18 $this->name = __( 'Header', 'woocommerce' );
19 $this->group = 'section_template';
20 $this->icon = '<svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg">
21 <g clip-path="url(#clip0_504_6239)">
22 <path fill-rule="evenodd" clip-rule="evenodd" d="M2.25 3.44293C2.25 2.50795 3.00795 1.75 3.94293 1.75H19.0571C19.992 1.75 20.75 2.50795 20.75 3.44293V18.5571C20.75 19.492 19.992 20.25 19.0571 20.25H3.94293C3.00795 20.25 2.25 19.492 2.25 18.5571V3.44293ZM3.94293 0.25C2.17953 0.25 0.75 1.67953 0.75 3.44293V18.5571C0.75 20.3205 2.17953 21.75 3.94293 21.75H19.0571C20.8205 21.75 22.25 20.3205 22.25 18.5571V3.44293C22.25 1.67953 20.8205 0.25 19.0571 0.25H3.94293ZM5.41553 4H17.5845C18.0901 4 18.5 4.44503 18.5 4.994V6.006C18.5 6.55497 18.0901 7 17.5845 7H5.41553C4.90989 7 4.5 6.55497 4.5 6.006V4.994C4.5 4.44503 4.90989 4 5.41553 4Z"/>
23 </g>
24 <defs>
25 <clipPath id="clip0_504_6239">
26 <rect width="21.5" height="21.5" transform="translate(0.75 0.25)"/>
27 </clipPath>
28 </defs>
29 </svg>';
30 $this->position = 10;
31 }
32 }
33