PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / trunk
Forumax – AI Powered Advanced Community Forum Plugin vtrunk
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / includes / admin / options / options_backup.php

options_backup.php in Forumax – AI Powered Advanced Community Forum Plugin trunk, at includes/admin/options/options_backup.php

32 lines 733 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Backup & Restore Settings
4 *
5 * Export and import your Forumax configuration.
6 *
7 * @package Forumax
8 * @since 2.2.0
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit;
13 }
14
15 // Backup & Restore Options Section.
16 CSF::createSection(
17 $prefix,
18 array(
19 'title' => esc_html__( 'Backup & Restore', 'forumax' ),
20 'id' => 'bbpc_backup',
21 'icon' => 'dashicons dashicons-database-export',
22 'fields' => array(
23 array(
24 'id' => 'bbpc_export_import',
25 'type' => 'backup',
26 'title' => esc_html__( 'Settings Backup', 'forumax' ),
27 'subtitle' => esc_html__( 'Export your current settings to save a backup, or import previously saved settings to restore your configuration.', 'forumax' ),
28 ),
29 ),
30 )
31 );
32