BP_REST_Media_Endpoint::bp_rest_media_message_embed_gif( integer $id )

Get Gif data for message.

Description

Parameters

$id

(Required) Message ID.

Return

(false|string|void)

Source

File: bp-media/classes/class-bp-rest-media-endpoint.php

2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
protected function bp_rest_media_message_embed_gif( $id ) {
    $gif_data = bp_messages_get_meta( $id, '_gif_data', true );
 
    if ( empty( $gif_data ) ) {
        return;
    }
 
    $preview_url = wp_get_attachment_url( $gif_data['still'] );
    $video_url   = wp_get_attachment_url( $gif_data['mp4'] );
 
    return '<div class="activity-attached-gif-container">' .
        '<div class="gif-image-container">' .
            '<div class="gif-player">' .
                '<video preload="auto" playsinline poster="' . esc_url( $preview_url ) . '" loop muted playsinline>' .
                    '<source src="' . esc_url( $video_url ) . '" type="video/mp4">' .
                '</video>' .
                '<a href="#" class="gif-play-button">' .
                    '<span class="dashicons dashicons-video-alt3"></span>' .
                '</a>' .
                '<span class="gif-icon"></span>' .
            '</div>' .
        '</div>' .
    '</div>';
}

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.