# ali2woo-lite/trunk/includes/classes/constant/ShouldShowVideoTab.php

AliNext – WooCommerce Dropshipping Plugin for AliExpress, version trunk. 24 lines.

- Page: https://pluginprobe.com/plugins/ali2woo-lite/trunk/code/includes/classes/constant/ShouldShowVideoTab.php
- Raw: https://pluginprobe.com/plugins/ali2woo-lite/trunk/raw/includes/classes/constant/ShouldShowVideoTab.php
- Modified: 2025-01-27T19:45:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ali2woo-lite/trunk/code/includes/classes/constant/ShouldShowVideoTab.php#L10-L20`.

```php
<?php

/**
 * Description of ShouldShowVideoTab
 *
 * @author Ali2Woo Team
 */

namespace AliNext_Lite;;

class ShouldShowVideoTab
{
    const SHOW = 'show';
    const HIDE = 'hide';

    public static function getAll(): array
    {
        return [
            self::SHOW,
            self::HIDE,
        ];
    }
}

```
