LLMS_Privacy::get_student_data_props()
Retrieve an array of student data properties which should be exported & erased
Return Return
(array)
Source Source
File: includes/privacy/class-llms-privacy.php
protected static function get_student_data_props() { return apply_filters( 'llms_privacy_get_student_data_props', array( 'billing_address_1' => __( 'Billing Address 1', 'lifterlms' ), 'billing_address_2' => __( 'Billing Address 2', 'lifterlms' ), 'billing_city' => __( 'Billing City', 'lifterlms' ), 'billing_state' => __( 'Billing State', 'lifterlms' ), 'billing_zip' => __( 'Billing Zip Code', 'lifterlms' ), 'billing_country' => __( 'Billing Country', 'lifterlms' ), 'phone' => __( 'Phone', 'lifterlms' ), 'ip_address' => __( 'IP Address', 'lifterlms' ), 'last_login' => __( 'Last Login Date', 'lifterlms' ), ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.18.0 | Introduced. |