first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
/**
* Wizard notice template.
*/
$theme = jet_plugins_wizard_settings()->get( array( 'texts', 'theme-name' ) );
?>
<div class="jet-plugins-wizard-notice notice">
<div class="jet-plugins-wizard-notice__content"><?php
printf( esc_html__( 'This wizard will help you to select skin, install plugins and import demo data for your %s theme. To start the install click the button below!', 'jet-plugins-wizard' ), '<b>' . $theme . '</b>' );
?></div>
<div class="jet-plugins-wizard-notice__actions">
<a class="jet-plugins-wizard-btn" href="<?php echo jet_plugins_wizard()->get_page_link(); ?>"><?php
esc_html_e( 'Start Install', 'jet-plugins-wizard' );
?></a>
<a class="notice-dismiss" href="<?php echo add_query_arg( array( 'jet_plugins_wizard_dismiss' => true, '_nonce' => jet_plugins_wizard()->nonce() ) ); ?>"><?php
esc_html_e( 'Dismiss', 'jet-plugins-wizard' );
?></a>
</div>
</div>