| 1 |
<?php |
| 2 |
|
| 3 |
namespace Monei\Templates; |
| 4 |
|
| 5 |
class SettingsHeader implements TemplateInterface { |
| 6 |
|
| 7 |
|
| 8 |
public function render( $data ): void { |
| 9 |
$moneiIconUrl = $data['moneiIconUrl'] ?? ''; |
| 10 |
$welcomeString = $data['welcomeString'] ?? ''; |
| 11 |
$dashboardString = $data['dashboardString'] ?? ''; |
| 12 |
$supportString = $data['supportString'] ?? ''; |
| 13 |
$reviewString = $data['reviewString'] ?? ''; |
| 14 |
?> |
| 15 |
|
| 16 |
<div class="monei-settings-header-logo"> |
| 17 |
<img src="<?php echo esc_url( $moneiIconUrl ); ?>" alt="" /> |
| 18 |
</div> |
| 19 |
<div class="monei-settings-header-welcome"> |
| 20 |
<p><?php echo esc_html( $welcomeString ); ?></p> |
| 21 |
</div> |
| 22 |
<div class="monei-settings-header-buttons"> |
| 23 |
<a href="<?php echo esc_url( MONEI_SIGNUP ); ?>" class="button button-primary" target="_blank"><?php echo esc_html( $dashboardString ); ?></a> |
| 24 |
<a href="<?php echo esc_url( MONEI_SUPPORT ); ?>" class="button" target="_blank"><?php echo esc_html( $supportString ); ?></a> |
| 25 |
<a href="<?php echo esc_url( MONEI_REVIEW ); ?>" class="button" target="_blank"><?php echo esc_html( $reviewString ); ?></a> |
| 26 |
</div> |
| 27 |
<?php |
| 28 |
} |
| 29 |
} |