New blocks: Add blocks for the pledge contributors & pledge teams lists

This commit is contained in:
Kelly Dwan 2024-08-28 19:45:27 -04:00
parent cbabdbb33e
commit b22bde9415
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D
13 changed files with 1030 additions and 9 deletions

View file

@ -0,0 +1,25 @@
<?php
use WordPressDotOrg\FiveForTheFuture\XProfile;
if ( ! $block->context['postId'] ) {
return '';
}
$contribution_data = XProfile\get_aggregate_contributor_data_for_pledge( $block->context['postId'] );
?>
<div
<?php echo get_block_wrapper_attributes(); // phpcs:ignore ?>
>
<ul class="team-grid">
<?php foreach ( $contribution_data['teams'] as $team ) :
$badge_classes = XProfile\get_association_classes( $team );
?>
<li>
<div class="badge item dashicons <?php echo esc_attr( implode( ' ', $badge_classes ) ); ?>"></div>
<span class="badge-label"><?php echo esc_html( $team ); ?></span>
</li>
<?php endforeach; ?>
</ul>
</div>