@@ 352-355 (lines=4) @@ | ||
349 | foreach ( (array) $this->get_services( 'connected' ) as $service_name => $connections ) { |
|
350 | foreach ( $connections as $connection ) { |
|
351 | $connection_data = ''; |
|
352 | if ( method_exists( $connection, 'get_meta' ) ) |
|
353 | $connection_data = $connection->get_meta( 'connection_data' ); |
|
354 | elseif ( ! empty( $connection['connection_data'] ) ) |
|
355 | $connection_data = $connection['connection_data']; |
|
356 | ||
357 | /** This action is documented in modules/publicize/ui.php */ |
|
358 | if ( false == apply_filters( 'wpas_submit_post?', $submit_post, $post_id, $service_name, $connection_data ) ) { |
@@ 567-570 (lines=4) @@ | ||
564 | foreach ( $services as $name => $connections ) { |
|
565 | foreach ( $connections as $connection ) { |
|
566 | $connection_data = ''; |
|
567 | if ( method_exists( $connection, 'get_meta' ) ) |
|
568 | $connection_data = $connection->get_meta( 'connection_data' ); |
|
569 | elseif ( ! empty( $connection['connection_data'] ) ) |
|
570 | $connection_data = $connection['connection_data']; |
|
571 | ||
572 | /** |
|
573 | * Filter whether a post should be publicized to a given service. |