Jake Vanderwerf
2026-03-03 772462eeca3002a1d52508aeba485aab2b4742ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
namespace JVBase\managers\SEO\render\Thing\Intangible\Enumeration;
 
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\QuantitativeValue;
use JVBase\managers\SEO\render\Thing\Thing;
 
 
if (!defined('ABSPATH')) {
    exit;
}
 
class WearableSizeGroupEnumeration extends Enumeration {
    protected string $sizeGroup;
    protected array $allowedSizeGroup = [
        'big'   => 'https://schema.org/WearableSizeGroupBig',
        'boys'  => 'https://schema.org/WearableSizeGroupBoys',
        'extraShort'=> 'https://schema.org/WearableSizeGroupExtraShort',
        'extraTall'=> 'https://schema.org/WearableSizeGroupExtraTall',
        'girls' => 'https://schema.org/WearableSizeGroupGirls',
        'husky' => 'https://schema.org/WearableSizeGroupHusky',
        'infants'=> 'https://schema.org/WearableSizeGroupInfants',
        'juniors'=> 'https://schema.org/WearableSizeGroupJuniors',
        'maternity'=> 'https://schema.org/WearableSizeGroupMaternity',
        'mens'  => 'https://schema.org/WearableSizeGroupMens',
        'misses'=> 'https://schema.org/WearableSizeGroupMisses',
        'petite'=> 'https://schema.org/WearableSizeGroupPetite',
        'plus'  => 'https://schema.org/WearableSizeGroupPlus',
        'short'=> 'https://schema.org/WearableSizeGroupRegular',
        'tall'  => 'https://schema.org/WearableSizeGroupTall',
        'womens' => 'https://schema.org/WearableSizeGroupWomens'
    ];
}