mirror of
https://github.com/WenPai-org/wp-china-yes.git
synced 2025-08-06 21:53:56 +08:00
feat: v3.7.0
This commit is contained in:
parent
dd912a9e31
commit
2391c18bae
76 changed files with 9491 additions and 353 deletions
190
framework/functions/actions.php
Normal file
190
framework/functions/actions.php
Normal file
|
@ -0,0 +1,190 @@
|
|||
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
|
||||
/**
|
||||
*
|
||||
* Get icons from admin ajax
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @version 1.0.0
|
||||
*
|
||||
*/
|
||||
if ( ! function_exists( 'wp_china_yes_get_icons' ) ) {
|
||||
function wp_china_yes_get_icons() {
|
||||
|
||||
$nonce = ( ! empty( $_POST[ 'nonce' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'nonce' ] ) ) : '';
|
||||
|
||||
if ( ! wp_verify_nonce( $nonce, 'wp_china_yes_icon_nonce' ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: Invalid nonce verification.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
ob_start();
|
||||
|
||||
$icon_library = ( apply_filters( 'wp_china_yes_fa4', false ) ) ? 'fa4' : 'fa5';
|
||||
|
||||
WP_CHINA_YES::include_plugin_file( 'fields/icon/'. $icon_library .'-icons.php' );
|
||||
|
||||
$icon_lists = apply_filters( 'wp_china_yes_field_icon_add_icons', wp_china_yes_get_default_icons() );
|
||||
|
||||
if ( ! empty( $icon_lists ) ) {
|
||||
|
||||
foreach ( $icon_lists as $list ) {
|
||||
|
||||
echo ( count( $icon_lists ) >= 2 ) ? '<div class="wp_china_yes-icon-title">'. esc_attr( $list['title'] ) .'</div>' : '';
|
||||
|
||||
foreach ( $list['icons'] as $icon ) {
|
||||
echo '<i title="'. esc_attr( $icon ) .'" class="'. esc_attr( $icon ) .'"></i>';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
echo '<div class="wp_china_yes-error-text">'. esc_html__( 'No data available.', 'wp_china_yes' ) .'</div>';
|
||||
|
||||
}
|
||||
|
||||
$content = ob_get_clean();
|
||||
|
||||
wp_send_json_success( array( 'content' => $content ) );
|
||||
|
||||
}
|
||||
add_action( 'wp_ajax_wp_china_yes-get-icons', 'wp_china_yes_get_icons' );
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Export
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @version 1.0.0
|
||||
*
|
||||
*/
|
||||
if ( ! function_exists( 'wp_china_yes_export' ) ) {
|
||||
function wp_china_yes_export() {
|
||||
|
||||
$nonce = ( ! empty( $_GET[ 'nonce' ] ) ) ? sanitize_text_field( wp_unslash( $_GET[ 'nonce' ] ) ) : '';
|
||||
$unique = ( ! empty( $_GET[ 'unique' ] ) ) ? sanitize_text_field( wp_unslash( $_GET[ 'unique' ] ) ) : '';
|
||||
|
||||
if ( ! wp_verify_nonce( $nonce, 'wp_china_yes_backup_nonce' ) ) {
|
||||
die( esc_html__( 'Error: Invalid nonce verification.', 'wp_china_yes' ) );
|
||||
}
|
||||
|
||||
if ( empty( $unique ) ) {
|
||||
die( esc_html__( 'Error: Invalid key.', 'wp_china_yes' ) );
|
||||
}
|
||||
|
||||
// Export
|
||||
header('Content-Type: application/json');
|
||||
header('Content-disposition: attachment; filename=backup-'. gmdate( 'd-m-Y' ) .'.json');
|
||||
header('Content-Transfer-Encoding: binary');
|
||||
header('Pragma: no-cache');
|
||||
header('Expires: 0');
|
||||
|
||||
echo json_encode( get_option( $unique ) );
|
||||
|
||||
die();
|
||||
|
||||
}
|
||||
add_action( 'wp_ajax_wp_china_yes-export', 'wp_china_yes_export' );
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Import Ajax
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @version 1.0.0
|
||||
*
|
||||
*/
|
||||
if ( ! function_exists( 'wp_china_yes_import_ajax' ) ) {
|
||||
function wp_china_yes_import_ajax() {
|
||||
|
||||
$nonce = ( ! empty( $_POST[ 'nonce' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'nonce' ] ) ) : '';
|
||||
$unique = ( ! empty( $_POST[ 'unique' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'unique' ] ) ) : '';
|
||||
$data = ( ! empty( $_POST[ 'data' ] ) ) ? wp_kses_post_deep( json_decode( wp_unslash( trim( $_POST[ 'data' ] ) ), true ) ) : array();
|
||||
|
||||
if ( ! wp_verify_nonce( $nonce, 'wp_china_yes_backup_nonce' ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: Invalid nonce verification.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
if ( empty( $unique ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: Invalid key.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
if ( empty( $data ) || ! is_array( $data ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: The response is not a valid JSON response.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
// Success
|
||||
update_option( $unique, $data );
|
||||
|
||||
wp_send_json_success();
|
||||
|
||||
}
|
||||
add_action( 'wp_ajax_wp_china_yes-import', 'wp_china_yes_import_ajax' );
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Reset Ajax
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @version 1.0.0
|
||||
*
|
||||
*/
|
||||
if ( ! function_exists( 'wp_china_yes_reset_ajax' ) ) {
|
||||
function wp_china_yes_reset_ajax() {
|
||||
|
||||
$nonce = ( ! empty( $_POST[ 'nonce' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'nonce' ] ) ) : '';
|
||||
$unique = ( ! empty( $_POST[ 'unique' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'unique' ] ) ) : '';
|
||||
|
||||
if ( ! wp_verify_nonce( $nonce, 'wp_china_yes_backup_nonce' ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: Invalid nonce verification.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
// Success
|
||||
delete_option( $unique );
|
||||
|
||||
wp_send_json_success();
|
||||
|
||||
}
|
||||
add_action( 'wp_ajax_wp_china_yes-reset', 'wp_china_yes_reset_ajax' );
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Chosen Ajax
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @version 1.0.0
|
||||
*
|
||||
*/
|
||||
if ( ! function_exists( 'wp_china_yes_chosen_ajax' ) ) {
|
||||
function wp_china_yes_chosen_ajax() {
|
||||
|
||||
$nonce = ( ! empty( $_POST[ 'nonce' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'nonce' ] ) ) : '';
|
||||
$type = ( ! empty( $_POST[ 'type' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'type' ] ) ) : '';
|
||||
$term = ( ! empty( $_POST[ 'term' ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ 'term' ] ) ) : '';
|
||||
$query = ( ! empty( $_POST[ 'query_args' ] ) ) ? wp_kses_post_deep( $_POST[ 'query_args' ] ) : array();
|
||||
|
||||
if ( ! wp_verify_nonce( $nonce, 'wp_china_yes_chosen_ajax_nonce' ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: Invalid nonce verification.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
if ( empty( $type ) || empty( $term ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: Invalid term ID.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
$capability = apply_filters( 'wp_china_yes_chosen_ajax_capability', 'manage_options' );
|
||||
|
||||
if ( ! current_user_can( $capability ) ) {
|
||||
wp_send_json_error( array( 'error' => esc_html__( 'Error: You do not have permission to do that.', 'wp_china_yes' ) ) );
|
||||
}
|
||||
|
||||
// Success
|
||||
$options = WP_CHINA_YES_Fields::field_data( $type, $term, $query );
|
||||
|
||||
wp_send_json_success( $options );
|
||||
|
||||
}
|
||||
add_action( 'wp_ajax_wp_china_yes-chosen', 'wp_china_yes_chosen_ajax' );
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue