woocommerce/admin/woocommerce-admin-profile.php

175 lines
5.0 KiB
PHP
Raw Normal View History

2011-12-21 23:44:08 +00:00
<?php
/**
* Admin profile functions
2012-08-14 12:21:34 +00:00
*
* Functions used for modifying the users panel in admin.
2011-12-21 23:44:08 +00:00
*
* @author WooThemes
* @category Admin
2012-08-14 12:21:34 +00:00
* @package WooCommerce/Admin/Users
* @version 2.1.0
2011-12-21 23:44:08 +00:00
*/
/**
2012-08-14 12:21:34 +00:00
* Get Address Fields for the edit user pages.
*
* @access public
* @return array Fields to display which are filtered through woocommerce_customer_meta_fields before being returned
*/
2012-01-06 14:43:03 +00:00
function woocommerce_get_customer_meta_fields() {
$show_fields = apply_filters('woocommerce_customer_meta_fields', array(
'billing' => array(
2012-10-16 09:45:33 +00:00
'title' => __( 'Customer Billing Address', 'woocommerce' ),
'fields' => array(
'billing_first_name' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'First name', 'woocommerce' ),
'description' => ''
),
'billing_last_name' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Last name', 'woocommerce' ),
'description' => ''
),
2012-02-13 13:06:56 +00:00
'billing_company' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Company', 'woocommerce' ),
2012-02-13 13:06:56 +00:00
'description' => ''
),
'billing_address_1' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Address 1', 'woocommerce' ),
'description' => ''
),
'billing_address_2' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Address 2', 'woocommerce' ),
'description' => ''
),
'billing_city' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'City', 'woocommerce' ),
'description' => ''
),
'billing_postcode' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Postcode', 'woocommerce' ),
'description' => ''
),
'billing_state' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'State/County', 'woocommerce' ),
'description' => __( 'Country or state code', 'woocommerce' ),
),
'billing_country' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Country', 'woocommerce' ),
'description' => __( '2 letter Country code', 'woocommerce' ),
),
'billing_phone' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Telephone', 'woocommerce' ),
'description' => ''
),
'billing_email' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Email', 'woocommerce' ),
'description' => ''
)
)
),
'shipping' => array(
2012-10-16 09:45:33 +00:00
'title' => __( 'Customer Shipping Address', 'woocommerce' ),
'fields' => array(
'shipping_first_name' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'First name', 'woocommerce' ),
'description' => ''
),
'shipping_last_name' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Last name', 'woocommerce' ),
'description' => ''
),
2012-02-13 13:06:56 +00:00
'shipping_company' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Company', 'woocommerce' ),
2012-02-13 13:06:56 +00:00
'description' => ''
),
'shipping_address_1' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Address 1', 'woocommerce' ),
'description' => ''
),
'shipping_address_2' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Address 2', 'woocommerce' ),
'description' => ''
),
'shipping_city' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'City', 'woocommerce' ),
'description' => ''
),
'shipping_postcode' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Postcode', 'woocommerce' ),
'description' => ''
),
'shipping_state' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'State/County', 'woocommerce' ),
'description' => __( 'State/County or state code', 'woocommerce' )
),
'shipping_country' => array(
2012-10-16 09:45:33 +00:00
'label' => __( 'Country', 'woocommerce' ),
'description' => __( '2 letter Country code', 'woocommerce' )
)
)
)
));
2012-01-06 14:43:03 +00:00
return $show_fields;
}
2012-08-14 12:21:34 +00:00
2012-01-06 14:43:03 +00:00
/**
2012-08-14 12:21:34 +00:00
* Show Address Fields on edit user pages.
*
* @access public
* @param mixed $user User (object) being displayed
* @return void
2012-01-06 14:43:03 +00:00
*/
2012-08-14 12:21:34 +00:00
function woocommerce_customer_meta_fields( $user ) {
if ( ! current_user_can( 'manage_woocommerce' ) )
2012-07-31 14:04:05 +00:00
return;
2012-01-06 14:43:03 +00:00
$show_fields = woocommerce_get_customer_meta_fields();
2012-08-14 12:21:34 +00:00
foreach( $show_fields as $fieldset ) :
?>
<h3><?php echo $fieldset['title']; ?></h3>
<table class="form-table">
<?php
foreach( $fieldset['fields'] as $key => $field ) :
?>
<tr>
2012-10-16 14:46:21 +00:00
<th><label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $field['label'] ); ?></label></th>
<td>
2012-10-16 14:46:21 +00:00
<input type="text" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( get_user_meta( $user->ID, $key, true ) ); ?>" class="regular-text" /><br/>
<span class="description"><?php echo wp_kses_post( $field['description'] ); ?></span>
</td>
</tr>
<?php
endforeach;
?>
</table>
<?php
endforeach;
2012-01-06 14:43:03 +00:00
}
2012-08-14 12:21:34 +00:00
add_action( 'show_user_profile', 'woocommerce_customer_meta_fields' );
add_action( 'edit_user_profile', 'woocommerce_customer_meta_fields' );
2012-01-06 14:43:03 +00:00
/**
* Save Address Fields on edit user pages
2012-08-14 12:21:34 +00:00
*
* @access public
* @param mixed $user_id User ID of the user being saved
* @return void
2012-01-06 14:43:03 +00:00
*/
function woocommerce_save_customer_meta_fields( $user_id ) {
2012-08-14 12:21:34 +00:00
if ( ! current_user_can( 'manage_woocommerce' ) )
return $columns;
2012-01-06 14:43:03 +00:00
$save_fields = woocommerce_get_customer_meta_fields();
2012-08-14 12:21:34 +00:00
foreach( $save_fields as $fieldset )
foreach( $fieldset['fields'] as $key => $field )
if ( isset( $_POST[ $key ] ) )
2012-10-16 14:46:21 +00:00
update_user_meta( $user_id, $key, woocommerce_clean( $_POST[ $key ] ) );
2012-08-14 12:21:34 +00:00
}
add_action( 'personal_options_update', 'woocommerce_save_customer_meta_fields' );
add_action( 'edit_user_profile_update', 'woocommerce_save_customer_meta_fields' );