You appear to be a bot. Output may be restricted
Description
Get things started
Usage
EDD_DB_Customers::__construct();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/class-edd-db-customers.php
Lines:
1 to 11 of 11
public function __construct() { global $wpdb; $this->table_name = $wpdb->prefix . 'edd_customers'; $this->primary_key = 'id'; $this->version = '1.0'; add_action( 'profile_update', array( $this, 'update_customer_email_on_user_update' ), 10, 2 ); }