| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
| 4 |
|
| 5 |
if ( ! class_exists( 'Dfrapi_Export' ) ) { |
| 6 |
|
| 7 |
/** |
| 8 |
* Configuration page. |
| 9 |
*/ |
| 10 |
class Dfrapi_Export { |
| 11 |
|
| 12 |
private $page = 'dfrapi-export'; |
| 13 |
private $key; |
| 14 |
|
| 15 |
public function __construct() { |
| 16 |
$this->key = 'dfrapi_export'; |
| 17 |
add_action( 'admin_init', array( $this, 'register_settings' ) ); |
| 18 |
add_action( 'admin_menu', array( $this, 'admin_menu' ), 50 ); |
| 19 |
} |
| 20 |
|
| 21 |
function admin_menu() { |
| 22 |
add_submenu_page( |
| 23 |
'dfrapi', |
| 24 |
__( 'Export — Datafeedr API', 'datafeedr-api' ), |
| 25 |
__( 'Export', 'datafeedr-api' ), |
| 26 |
'manage_options', |
| 27 |
$this->key, |
| 28 |
array( $this, 'output' ) |
| 29 |
); |
| 30 |
} |
| 31 |
|
| 32 |
function output() { |
| 33 |
echo '<div class="wrap" id="' . $this->key . '">'; |
| 34 |
echo '<h2>' . dfrapi_setting_pages( $this->page ) . ' — Datafeedr API</h2>'; |
| 35 |
settings_fields( $this->page ); |
| 36 |
do_settings_sections( $this->page); |
| 37 |
echo '</div>'; |
| 38 |
} |
| 39 |
|
| 40 |
function register_settings() { |
| 41 |
register_setting( $this->page, $this->key, array( $this, 'validate' ) ); |
| 42 |
add_settings_section( 'export_network_data', __( 'Network Data', 'datafeedr-api' ), array( &$this, 'section_export_network_data' ), $this->page ); |
| 43 |
add_settings_section( 'export_merchant_data', __( 'Merchant Data', 'datafeedr-api' ), array( &$this, 'section_export_merchant_data' ), $this->page ); |
| 44 |
} |
| 45 |
|
| 46 |
function section_export_network_data() { |
| 47 |
$network_settings = (array) get_option( 'dfrapi_networks' ); |
| 48 |
echo '<p>' . __( 'To use the same selection of networks on another website, export this store\'s network data by copying the code below. Paste the code into the Import page of your other site.' ) . '</p>'; |
| 49 |
echo '<textarea rows="4" cols="100%" onclick="this.focus();this.select()" readonly="readonly">'; |
| 50 |
echo '[NETWORKS]' . serialize( $network_settings ) . '[/NETWORKS]'; |
| 51 |
echo '</textarea>'; |
| 52 |
echo '<p class="description">' . __( 'Click within the box to select all your networks and affiliate IDs.' ) . '</p>'; |
| 53 |
} |
| 54 |
|
| 55 |
function section_export_merchant_data() { |
| 56 |
$merchant_settings = (array) get_option( 'dfrapi_merchants' ); |
| 57 |
echo '<p>' . __( 'To use the same selection of merchants on another website, export this store\'s merchant data by copying the code below. Paste the code into the Import page of your other site.' ) . '</p>'; |
| 58 |
echo '<textarea rows="4" cols="100%" onclick="this.focus();this.select()" readonly="readonly">'; |
| 59 |
echo '[MERCHANTS]' . serialize( $merchant_settings ) . '[/MERCHANTS]'; |
| 60 |
echo '</textarea>'; |
| 61 |
echo '<p class="description">' . __( 'Click within the box to select all your merchant IDs.' ) . '</p>'; |
| 62 |
} |
| 63 |
|
| 64 |
function validate( $input ) { |
| 65 |
return $input; |
| 66 |
} |
| 67 |
|
| 68 |
} // class Dfrapi_Export |
| 69 |
|
| 70 |
} // class_exists check |
| 71 |
|