@@ 1295-1298 (lines=4) @@ | ||
1292 | public function get_wordpress_object_fields( $wordpress_object = '' ) { |
|
1293 | $ajax = false; |
|
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 | $ajax = true; |
|
1298 | } |
|
1299 | ||
1300 | $object_fields = $this->wordpress->get_wordpress_object_fields( $wordpress_object ); |
|
1301 | ||
@@ 1319-1321 (lines=3) @@ | ||
1316 | */ |
|
1317 | public function get_wp_sf_object_fields( $wordpress_object = '', $salesforce = '' ) { |
|
1318 | $post_data = filter_input_array( INPUT_POST, FILTER_SANITIZE_STRING ); |
|
1319 | if ( empty( $wordpress_object ) ) { |
|
1320 | $wordpress_object = isset( $post_data['wordpress_object'] ) ? sanitize_text_field( wp_unslash( $post_data['wordpress_object'] ) ) : ''; |
|
1321 | } |
|
1322 | if ( empty( $salesforce_object ) ) { |
|
1323 | $salesforce_object = isset( $post_data['salesforce_object'] ) ? sanitize_text_field( wp_unslash( $post_data['salesforce_object'] ) ) : ''; |
|
1324 | } |
|
@@ 1322-1324 (lines=3) @@ | ||
1319 | if ( empty( $wordpress_object ) ) { |
|
1320 | $wordpress_object = isset( $post_data['wordpress_object'] ) ? sanitize_text_field( wp_unslash( $post_data['wordpress_object'] ) ) : ''; |
|
1321 | } |
|
1322 | if ( empty( $salesforce_object ) ) { |
|
1323 | $salesforce_object = isset( $post_data['salesforce_object'] ) ? sanitize_text_field( wp_unslash( $post_data['salesforce_object'] ) ) : ''; |
|
1324 | } |
|
1325 | ||
1326 | $object_fields['wordpress'] = $this->get_wordpress_object_fields( $wordpress_object ); |
|
1327 | $object_fields['salesforce'] = $this->get_salesforce_object_fields( |