welcome.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | use WPStaging\Framework\Facades\Escape; |
| 4 | |
| 5 | ?> |
| 6 | <div class="" id="wpstg-welcome"> |
| 7 | <div class="wpstg-welcome-container wpstg--grey"> |
| 8 | <h2 class="wpstg-h2 wpstg--grey"> |
| 9 | <span class="wpstg-heading-pro wpstg--blue"><?php esc_html_e('WP STAGING | PRO', 'wp-staging'); ?></span> |
| 10 | <?php esc_html_e(' - Enterprise Level Backup, Cloning & Migration Tool', 'wp-staging'); ?> |
| 11 | </h2> |
| 12 | <h3 class="wpstg--grey"><?php esc_html_e('Is this the best backup & migration plugin?', 'wp-staging'); ?></h3> |
| 13 | <li><strong><?php esc_html_e('Enterprise Reliability', 'wp-staging'); ?></strong> - <?php echo sprintf( |
| 14 | Escape::escapeHtml(__('Your data is important so we run <a href="%s" target="_blank" style="text-decoration: underline;">thousands</a> of automated tests before every release.', 'wp-staging')), |
| 15 | 'https://wp-staging.com/quality-assurance-for-wp-staging/' |
| 16 | ); ?></li> |
| 17 | <li><strong><?php esc_html_e('German Engineering', 'wp-staging'); ?></strong> - <?php esc_html_e('Our headquarter is located in Germany with a small team of highly skilled developers.', 'wp-staging'); ?></li> |
| 18 | <li><strong><?php esc_html_e('Cloning', 'wp-staging'); ?></strong> - <?php esc_html_e('Clone your entire website with one click.', 'wp-staging'); ?></li> |
| 19 | <li><strong><?php esc_html_e('Push Changes', 'wp-staging'); ?></strong> - <?php esc_html_e('Push a staging site to the production site. (Pro)', 'wp-staging'); ?></li> |
| 20 | <li><strong><?php esc_html_e('Backup & Restore', 'wp-staging'); ?></strong> - <?php esc_html_e('Backup and Restore WordPress. Simple, fast, and secure. Even if your website is no longer accessible.', 'wp-staging'); ?></li> |
| 21 | <li><strong><?php esc_html_e('Move WordPress', 'wp-staging'); ?></strong> - <?php esc_html_e('Migrate & move your website from one domain to another, even to a separate server. (Pro)', 'wp-staging'); ?></li> |
| 22 | <li><strong><?php esc_html_e('Support Multisites', 'wp-staging'); ?></strong> - <?php esc_html_e('Clone and push Multisites. (Pro)', 'wp-staging'); ?></li> |
| 23 | <li><strong><?php esc_html_e('Authentication', 'wp-staging'); ?></strong> - <?php esc_html_e('Cloned sites are available to authenticated users only.', 'wp-staging'); ?></li> |
| 24 | <li><strong><?php esc_html_e('High Performance', 'wp-staging'); ?></strong> - <?php esc_html_e('WP STAGING is one of the fastest backup and migration plugins. Compare yourself.', 'wp-staging'); ?></li> |
| 25 | <li><strong><?php esc_html_e('Secure', 'wp-staging'); ?></strong> - <?php esc_html_e('WP STAGING is no cloud service. Your data belongs to you only.', 'wp-staging'); ?></li> |
| 26 | <a href="<?php echo esc_url(\WPStaging\Framework\Language\Language::getUpgradeUrl('welcome_page')); ?>" target="_blank" class="wpstg-button--big wpstg-button--blue"><?php esc_html_e('Buy WP Staging Pro', 'wp-staging'); ?></a> |
| 27 | <a href="<?php echo esc_url(admin_url()); ?>admin.php?page=wpstg_clone" target="_self" class="wpstg-primary-color wpstg-ml-30px"><?php esc_html_e('Skip & Start WP Staging', 'wp-staging'); ?></a> |
| 28 | <div class="wpstg-footer"> <?php esc_html_e('Comes with our money back guarantee * You need to give us chance to resolve your issue first.', 'wp-staging'); ?></div> |
| 29 | </div> |
| 30 | </div> |
| 31 |