| @@ -1,14 +1,15 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | namespace YayMail\TemplatePatterns\Patterns; |
| 3 | 3 | |
| 4 | 4 | use YayMail\Abstracts\BasePattern; |
| 5 | +use YayMail\Elements\Divider; | |
| 6 | +use YayMail\Elements\Image; | |
| 5 | 7 | use YayMail\Elements\Text; |
| 6 | 8 | use YayMail\TemplatePatterns\SectionTemplates\Header; |
| 7 | 9 | use YayMail\Utils\SingletonTrait; |
| 8 | 10 | use YayMail\Elements\ColumnLayout; |
| 9 | 11 | use YayMail\Elements\Column; |
| 10 | -use YayMail\Elements\Logo; | |
| 11 | 12 | |
| 12 | 13 | /** |
| 13 | 14 | * Header6 Elements |
| 14 | 15 | */ |
| @@ -27,17 +28,15 @@ | ||
| 27 | 28 | ColumnLayout::get_object_data( |
| 28 | 29 | 2, |
| 29 | 30 | [ |
| 30 | 31 | 'background_color' => '#ffffff', |
| 31 | - 'vertical_align' => 'middle', | |
| 32 | 32 | 'children' => [ |
| 33 | 33 | Column::get_object_data( |
| 34 | 34 | 50, |
| 35 | 35 | [ |
| 36 | 36 | 'children' => [ |
| 37 | - Logo::get_object_data( | |
| 37 | + Image::get_object_data( | |
| 38 | 38 | [ |
| 39 | - 'background_color' => '#ffffff00', | |
| 40 | 39 | 'align' => 'left', |
| 41 | 40 | 'src' => 'https://images.wpbrandy.com/uploads/yaymail-footer-img-1.png', |
| 42 | 41 | 'width' => 195, |
| 43 | 42 | 'padding' => [ |
| @@ -125,5 +124,5 @@ | ||
| 125 | 124 | ), |
| 126 | 125 | |
| 127 | 126 | ]; |
| 128 | 127 | } |
| 129 | -} | |
| 128 | +} | |