mirror of https://github.com/vtrois/kratos
42 lines
1.6 KiB
PHP
42 lines
1.6 KiB
PHP
<?php if (!defined('ABSPATH')) {
|
|
die;
|
|
}
|
|
/**
|
|
*
|
|
* Field: backup
|
|
*
|
|
* @since 1.0.0
|
|
* @version 1.0.0
|
|
*
|
|
*/
|
|
if (!class_exists('CSF_Field_backup')) {
|
|
class CSF_Field_backup extends CSF_Fields
|
|
{
|
|
|
|
public function __construct($field, $value = '', $unique = '', $where = '', $parent = '')
|
|
{
|
|
parent::__construct($field, $value, $unique, $where, $parent);
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
|
|
$unique = $this->unique;
|
|
$nonce = wp_create_nonce('csf_backup_nonce');
|
|
$export = add_query_arg(array('action' => 'csf-export', 'unique' => $unique, 'nonce' => $nonce), admin_url('admin-ajax.php'));
|
|
|
|
echo $this->field_before();
|
|
|
|
echo '<textarea name="csf_import_data" class="csf-import-data"></textarea>';
|
|
echo '<button type="submit" class="button button-primary csf-confirm csf-import" data-unique="' . esc_attr($unique) . '" data-nonce="' . esc_attr($nonce) . '">' . esc_html__('Import', 'csf') . '</button>';
|
|
echo '<hr />';
|
|
echo '<textarea readonly="readonly" class="csf-export-data">' . esc_attr(json_encode(get_option($unique))) . '</textarea>';
|
|
echo '<a href="' . esc_url($export) . '" class="button button-primary csf-export" target="_blank">' . esc_html__('Export & Download', 'csf') . '</a>';
|
|
echo '<hr />';
|
|
echo '<button type="submit" name="csf_transient[reset]" value="reset" class="button csf-warning-primary csf-confirm csf-reset" data-unique="' . esc_attr($unique) . '" data-nonce="' . esc_attr($nonce) . '">' . esc_html__('Reset', 'csf') . '</button>';
|
|
|
|
echo $this->field_after();
|
|
}
|
|
}
|
|
}
|