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

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

24 lines 317 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 ShouldShowVideoTab
5 *
6 * @author Ali2Woo Team
7 */
8
9 namespace AliNext_Lite;;
10
11 class ShouldShowVideoTab
12 {
13 const SHOW = 'show';
14 const HIDE = 'hide';
15
16 public static function getAll(): array
17 {
18 return [
19 self::SHOW,
20 self::HIDE,
21 ];
22 }
23 }
24