PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / classes / service / VideoShortcodeService.php

VideoShortcodeService.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/service/VideoShortcodeService.php

28 lines 572 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Description of VideoShortcodeService
5 *
6 * @author Ali2Woo Team
7 */
8
9 namespace AliNext_Lite;;
10
11 class VideoShortcodeService
12 {
13 public function buildFromVideoData(array $videoData): string
14 {
15 if (empty($videoData)) {
16 return '';
17 }
18
19 $videoUrl = Utils::getProductVideoUrl(['video' => $videoData]);
20 $videoPoster = Utils::getProductVideoPoster(['video' => $videoData]);
21
22 return sprintf(
23 '[video src="%s" poster="%s"]',
24 $videoUrl,
25 $videoPoster ?? 'none'
26 );
27 }
28 }