Server IP : 66.29.132.122 / Your IP : 3.138.134.140 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/admin/ |
Upload File : |
<?php /** * Add extra profile fields for users in admin * * @author WooThemes * @category Admin * @package Kkart\Admin * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( ! class_exists( 'KKART_Admin_Profile', false ) ) : /** * KKART_Admin_Profile Class. */ class KKART_Admin_Profile { /** * Hook in tabs. */ public function __construct() { add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ) ); add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ) ); add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); } /** * Get Address Fields for the edit user pages. * * @return array Fields to display which are filtered through kkart_customer_meta_fields before being returned */ public function get_customer_meta_fields() { $show_fields = apply_filters( 'kkart_customer_meta_fields', array( 'billing' => array( 'title' => __( 'Customer billing address', 'kkart' ), 'fields' => array( 'billing_first_name' => array( 'label' => __( 'First name', 'kkart' ), 'description' => '', ), 'billing_last_name' => array( 'label' => __( 'Last name', 'kkart' ), 'description' => '', ), 'billing_company' => array( 'label' => __( 'Company', 'kkart' ), 'description' => '', ), 'billing_address_1' => array( 'label' => __( 'Address line 1', 'kkart' ), 'description' => '', ), 'billing_address_2' => array( 'label' => __( 'Address line 2', 'kkart' ), 'description' => '', ), 'billing_city' => array( 'label' => __( 'City', 'kkart' ), 'description' => '', ), 'billing_postcode' => array( 'label' => __( 'Postcode / ZIP', 'kkart' ), 'description' => '', ), 'billing_country' => array( 'label' => __( 'Country / Region', 'kkart' ), 'description' => '', 'class' => 'js_field-country', 'type' => 'select', 'options' => array( '' => __( 'Select a country / region…', 'kkart' ) ) + KKART()->countries->get_allowed_countries(), ), 'billing_state' => array( 'label' => __( 'State / County', 'kkart' ), 'description' => __( 'State / County or state code', 'kkart' ), 'class' => 'js_field-state', ), 'billing_phone' => array( 'label' => __( 'Phone', 'kkart' ), 'description' => '', ), 'billing_email' => array( 'label' => __( 'Email address', 'kkart' ), 'description' => '', ), ), ), 'shipping' => array( 'title' => __( 'Customer shipping address', 'kkart' ), 'fields' => array( 'copy_billing' => array( 'label' => __( 'Copy from billing address', 'kkart' ), 'description' => '', 'class' => 'js_copy-billing', 'type' => 'button', 'text' => __( 'Copy', 'kkart' ), ), 'shipping_first_name' => array( 'label' => __( 'First name', 'kkart' ), 'description' => '', ), 'shipping_last_name' => array( 'label' => __( 'Last name', 'kkart' ), 'description' => '', ), 'shipping_company' => array( 'label' => __( 'Company', 'kkart' ), 'description' => '', ), 'shipping_address_1' => array( 'label' => __( 'Address line 1', 'kkart' ), 'description' => '', ), 'shipping_address_2' => array( 'label' => __( 'Address line 2', 'kkart' ), 'description' => '', ), 'shipping_city' => array( 'label' => __( 'City', 'kkart' ), 'description' => '', ), 'shipping_postcode' => array( 'label' => __( 'Postcode / ZIP', 'kkart' ), 'description' => '', ), 'shipping_country' => array( 'label' => __( 'Country / Region', 'kkart' ), 'description' => '', 'class' => 'js_field-country', 'type' => 'select', 'options' => array( '' => __( 'Select a country / region…', 'kkart' ) ) + KKART()->countries->get_allowed_countries(), ), 'shipping_state' => array( 'label' => __( 'State / County', 'kkart' ), 'description' => __( 'State / County or state code', 'kkart' ), 'class' => 'js_field-state', ), ), ), ) ); return $show_fields; } /** * Show Address Fields on edit user pages. * * @param WP_User $user */ public function add_customer_meta_fields( $user ) { if ( ! apply_filters( 'kkart_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_kkart' ), $user->ID ) ) { return; } $show_fields = $this->get_customer_meta_fields(); foreach ( $show_fields as $fieldset_key => $fieldset ) : ?> <h2><?php echo $fieldset['title']; ?></h2> <table class="form-table" id="<?php echo esc_attr( 'fieldset-' . $fieldset_key ); ?>"> <?php foreach ( $fieldset['fields'] as $key => $field ) : ?> <tr> <th> <label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $field['label'] ); ?></label> </th> <td> <?php if ( ! empty( $field['type'] ) && 'select' === $field['type'] ) : ?> <select name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" class="<?php echo esc_attr( $field['class'] ); ?>" style="width: 25em;"> <?php $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); foreach ( $field['options'] as $option_key => $option_value ) : ?> <option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $selected, $option_key, true ); ?>><?php echo esc_html( $option_value ); ?></option> <?php endforeach; ?> </select> <?php elseif ( ! empty( $field['type'] ) && 'checkbox' === $field['type'] ) : ?> <input type="checkbox" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="1" class="<?php echo esc_attr( $field['class'] ); ?>" <?php checked( (int) get_user_meta( $user->ID, $key, true ), 1, true ); ?> /> <?php elseif ( ! empty( $field['type'] ) && 'button' === $field['type'] ) : ?> <button type="button" id="<?php echo esc_attr( $key ); ?>" class="button <?php echo esc_attr( $field['class'] ); ?>"><?php echo esc_html( $field['text'] ); ?></button> <?php else : ?> <input type="text" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $this->get_user_meta( $user->ID, $key ) ); ?>" class="<?php echo ( ! empty( $field['class'] ) ? esc_attr( $field['class'] ) : 'regular-text' ); ?>" /> <?php endif; ?> <p class="description"><?php echo wp_kses_post( $field['description'] ); ?></p> </td> </tr> <?php endforeach; ?> </table> <?php endforeach; } /** * Save Address Fields on edit user pages. * * @param int $user_id User ID of the user being saved */ public function save_customer_meta_fields( $user_id ) { if ( ! apply_filters( 'kkart_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_kkart' ), $user_id ) ) { return; } $save_fields = $this->get_customer_meta_fields(); foreach ( $save_fields as $fieldset ) { foreach ( $fieldset['fields'] as $key => $field ) { if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { update_user_meta( $user_id, $key, isset( $_POST[ $key ] ) ); } elseif ( isset( $_POST[ $key ] ) ) { update_user_meta( $user_id, $key, kkart_clean( $_POST[ $key ] ) ); } } } } /** * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. * * @since 3.1.0 * @param int $user_id User ID of the user being edited * @param string $key Key for user meta field * @return string */ protected function get_user_meta( $user_id, $key ) { $value = get_user_meta( $user_id, $key, true ); $existing_fields = array( 'billing_first_name', 'billing_last_name' ); if ( ! $value && in_array( $key, $existing_fields ) ) { $value = get_user_meta( $user_id, str_replace( 'billing_', '', $key ), true ); } elseif ( ! $value && ( 'billing_email' === $key ) ) { $user = get_userdata( $user_id ); $value = $user->user_email; } return $value; } } endif; return new KKART_Admin_Profile();