backup.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | // Don't load directly. |
| 4 | if ( ! defined( 'ABSPATH' ) ) { |
| 5 | die( '-1' ); |
| 6 | } |
| 7 | |
| 8 | // phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound |
| 9 | ?> |
| 10 | <p class="padded"><?php esc_html_e( 'We recommend that you back your database up, it can really save you in a bind or a really weird situation that you may not be expecting. Check out a few options we think are <em>great</em> below.', 'pods' ); ?></p> |
| 11 | |
| 12 | <div id="pods-wizard-options"> |
| 13 | <div class="pods-wizard-option"> |
| 14 | <a href="http://ithemes.com/member/go.php?r=31250&i=l44" target="_blank" rel="noopener noreferrer"> |
| 15 | <img src="<?php echo esc_url( PODS_URL ); ?>ui/images/logo_backupbuddy.png" alt="Backup Buddy" /> |
| 16 | |
| 17 | <p><?php esc_html_e( 'Receive 25% off', 'pods' ); ?></p> |
| 18 | |
| 19 | <p><?php esc_html_e( 'Coupon Code', 'pods' ); ?>: <strong>PODS25</strong></p> |
| 20 | </a> |
| 21 | |
| 22 | <p> |
| 23 | <em><?php esc_html_e( 'The all-in-one WordPress backup plugin to easily backup, restore, and migrate to any number of local or external locations.', 'pods' ); ?></em> |
| 24 | </p> |
| 25 | </div> |
| 26 | <div class="pods-wizard-option"> |
| 27 | <a href="http://vaultpress.com/podsframework/" target="_blank" rel="noopener noreferrer"> |
| 28 | <img src="<?php echo esc_url( PODS_URL ); ?>ui/images/logo_vaultpress.png" alt="Vaultpress" /> |
| 29 | |
| 30 | <p><?php esc_html_e( '1 free month', 'pods' ); ?></p> |
| 31 | |
| 32 | <p><strong><?php esc_html_e( 'Click to sign up', 'pods' ); ?></strong></p> |
| 33 | </a> |
| 34 | |
| 35 | <p> |
| 36 | <em><?php esc_html_e( 'A service that provides realtime continuous backups, restores, and security scanning.', 'pods' ); ?></em> |
| 37 | </p> |
| 38 | </div> |
| 39 | </div> |
| 40 |