/home/grlogisticsandse/www/wp-content/plugins/geoport-master/framework/fields/backup/backup.php
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
 *
 * Field: Backup
 *
 * @since 1.0.0
 * @version 1.0.0
 *
 */
class GEOPORTFramework_Option_backup extends GEOPORTFramework_Options {

  public function __construct( $field, $value = '', $unique = '' ) {
    parent::__construct( $field, $value, $unique );
  }

  public function output() {

    echo $this->element_before();

    echo '<textarea name="'. $this->unique .'[import]"'. $this->element_class() . $this->element_attributes() .'></textarea>';
    submit_button( esc_html__( 'Import a Backup', 'geoport' ), 'primary geoport-import-backup', 'backup', false );
    echo '<small>( '. esc_html__( 'copy-paste your backup string here', 'geoport' ).' )</small>';

    echo '<hr />';

    echo '<textarea name="_nonce"'. $this->element_class() . $this->element_attributes() .' disabled="disabled">'. geoport_encode_string( get_option( $this->unique ) ) .'</textarea>';
    echo '<a href="'. admin_url( 'admin-ajax.php?action=geoport-export-options' ) .'" class="button button-primary" target="_blank">'. esc_html__( 'Export and Download Backup', 'geoport' ) .'</a>';
    echo '<small>-( '. esc_html__( 'or', 'geoport' ) .' )-</small>';
    submit_button( esc_html__( 'Reset All Options', 'geoport' ), 'geoport-warning-primary geoport-reset-confirm', $this->unique . '[resetall]', false );
    echo '<small class="geoport-text-warning">'. esc_html__( 'Please be sure for reset all of framework options.', 'geoport' ) .'</small>';

    echo $this->element_after();

  }

}