| 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 |
|