| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/amp/includes/embeds/ |
Upload File : |
<?php
/**
* Class AMP_Vine_Embed_Handler
*
* @package AMP
*/
/**
* Class AMP_Vine_Embed_Handler
*/
class AMP_Vine_Embed_Handler extends AMP_Base_Embed_Handler {
const URL_PATTERN = '#https?://vine\.co/v/([^/?]+)#i';
protected $DEFAULT_WIDTH = 400;
protected $DEFAULT_HEIGHT = 400;
public function register_embed() {
wp_embed_register_handler( 'amp-vine', self::URL_PATTERN, array( $this, 'oembed' ), -1 );
}
public function unregister_embed() {
wp_embed_unregister_handler( 'amp-vine', -1 );
}
public function oembed( $matches, $attr, $url, $rawattr ) {
return $this->render( array( 'url' => $url, 'vine_id' => end( $matches ) ) );
}
public function render( $args ) {
$args = wp_parse_args( $args, array(
'url' => false,
'vine_id' => false,
) );
if ( empty( $args['vine_id'] ) ) {
return AMP_HTML_Utils::build_tag( 'a', array( 'href' => esc_url( $args['url'] ), 'class' => 'amp-wp-embed-fallback' ), esc_html( $args['url'] ) );
}
$this->did_convert_elements = true;
return AMP_HTML_Utils::build_tag(
'amp-vine',
array(
'data-vineid' => $args['vine_id'],
'layout' => 'responsive',
'width' => $this->args['width'],
'height' => $this->args['height'],
)
);
}
}