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">Is this the best backup & migration plugin?</h3> |
| 13 | <li><strong>Enterprise Reliability</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>German Engineering</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>Cloning</strong> - <?php esc_html_e('Clone your entire website with one click.', 'wp-staging'); ?></li> |
| 19 | <li><strong>Push Changes</strong> - <?php esc_html_e('Push a staging site to the production site. (Pro)', 'wp-staging'); ?></li> |
| 20 | <li><strong>Backup & Restore</strong> - <?php esc_html_e('Backup and Restore WordPress. Simple, fast, and secure.', 'wp-staging'); ?></li> |
| 21 | <li><strong>Move WordPress</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>Support Multisites</strong> - <?php esc_html_e('Clone and push Multisites. (Pro)', 'wp-staging'); ?></li> |
| 23 | <li><strong>Authentication</strong> - <?php esc_html_e('Cloned sites are available to authenticated users only.', 'wp-staging'); ?></li> |
| 24 | <li><strong>High Performance</strong> - <?php esc_html_e('WP STAGING is one of the fastest backup and migration plugins. Compare yourself.', 'wp-staging'); ?></li> |
| 25 | <li><strong>Secure</strong> - <?php esc_html_e('WP STAGING is no cloud service. Your data belongs to you only.', 'wp-staging'); ?></li> |
| 26 | <a href="https://wp-staging.com/?utm_source=wpstg&utm_medium=addon_page&utm_term=click-wpstaging-pro&utm_campaign=wpstaging" target="_blank" class="wpstg-button--big wpstg-button--blue">Buy WP STAGING | PRO</a> |
| 27 | <a href="<?php echo esc_url(admin_url()); ?>admin.php?page=wpstg_clone" target="_self" class="wpstg-primary-color wpstg-ml-30px">Skip & Start 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 |