@@ 1271-1274 (lines=4) @@ | ||
1268 | public function get_wordpress_object_fields( $wordpress_object = '' ) { |
|
1269 | $ajax = false; |
|
1270 | $post_data = filter_input_array( INPUT_POST, FILTER_SANITIZE_STRING ); |
|
1271 | if ( empty( $wordpress_object ) ) { |
|
1272 | $wordpress_object = isset( $post_data['wordpress_object'] ) ? sanitize_text_field( wp_unslash( $post_data['wordpress_object'] ) ) : ''; |
|
1273 | $ajax = true; |
|
1274 | } |
|
1275 | ||
1276 | $object_fields = $this->wordpress->get_wordpress_object_fields( $wordpress_object ); |
|
1277 | ||
@@ 1295-1297 (lines=3) @@ | ||
1292 | */ |
|
1293 | public function get_wp_sf_object_fields( $wordpress_object = '', $salesforce = '' ) { |
|
1294 | $post_data = filter_input_array( INPUT_POST, FILTER_SANITIZE_STRING ); |
|
1295 | if ( empty( $wordpress_object ) ) { |
|
1296 | $wordpress_object = isset( $post_data['wordpress_object'] ) ? sanitize_text_field( wp_unslash( $post_data['wordpress_object'] ) ) : ''; |
|
1297 | } |
|
1298 | if ( empty( $salesforce_object ) ) { |
|
1299 | $salesforce_object = isset( $post_data['salesforce_object'] ) ? sanitize_text_field( wp_unslash( $post_data['salesforce_object'] ) ) : ''; |
|
1300 | } |
|
@@ 1298-1300 (lines=3) @@ | ||
1295 | if ( empty( $wordpress_object ) ) { |
|
1296 | $wordpress_object = isset( $post_data['wordpress_object'] ) ? sanitize_text_field( wp_unslash( $post_data['wordpress_object'] ) ) : ''; |
|
1297 | } |
|
1298 | if ( empty( $salesforce_object ) ) { |
|
1299 | $salesforce_object = isset( $post_data['salesforce_object'] ) ? sanitize_text_field( wp_unslash( $post_data['salesforce_object'] ) ) : ''; |
|
1300 | } |
|
1301 | ||
1302 | $object_fields['wordpress'] = $this->get_wordpress_object_fields( $wordpress_object ); |
|
1303 | $object_fields['salesforce'] = $this->get_salesforce_object_fields( |