C:\xampp\htdocs\landing\wp-content\plugins\amp\vendor\ampproject\common\src\Attribute.php


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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php

namespace AmpProject;

/**
 * Interface with constants for the different types of attributes.
 *
 * @package ampproject/common
 */
interface Attribute
{

    const 
ACTION                'action';
    const 
ALT                   'alt';
    const 
AMP                   'amp';
    const 
AMP4ADS               'amp4ads';
    const 
AMP4ADS_BOILERPLATE   'amp4ads-boilerplate';
    const 
AMP4ADS_EMOJI         self::AMP_EMOJI '4ads';
    const 
AMP4ADS_EMOJI_ALT     self::AMP_EMOJI_ALT '4ads';
    const 
AMP4EMAIL             'amp4email';
    const 
AMP4EMAIL_BOILERPLATE 'amp4email-boilerplate';
    const 
AMP4EMAIL_EMOJI       self::AMP_EMOJI '4email';
    const 
AMP4EMAIL_EMOJI_ALT   self::AMP_EMOJI_ALT '4email';
    const 
AMP_BOILERPLATE       'amp-boilerplate';
    const 
AMP_CUSTOM            'amp-custom';
    const 
AMP_EMOJI             "\xE2\x9A\xA1";
    const 
AMP_EMOJI_ALT         "\xE2\x9A\xA1\xEF\xB8\x8F"// See https://github.com/ampproject/amphtml/issues/25990.
    
const AMP_RUNTIME           'amp-runtime';
    const 
AMP_SCRIPT_SRC        'amp-script-src';
    const 
ARIA_HIDDEN           'aria-hidden';
    const 
ASYNC                 'async';
    const 
AUTOPLAY              'autoplay';
    const 
CHARSET               'charset';
    const 
CLASS_                'class'// Underscore needed because 'class' is a PHP keyword.
    
const CONTENT               'content';
    const 
CUSTOM_ELEMENT        'custom-element';
    const 
CUSTOM_TEMPLATE       'custom-template';
    const 
DECODING              'decoding';
    const 
DISABLE_INLINE_WIDTH  'disable-inline-width';
    const 
HEIGHT                'height';
    const 
HEIGHTS               'heights';
    const 
HIDDEN                'hidden';
    const 
HOST_SERVICE          'host-service';
    const 
HREF                  'href';
    const 
HTTP_EQUIV            'http-equiv';
    const 
I_AMPHTML_VERSION     'i-amphtml-version';
    const 
ID                    'id';
    const 
IMPORTANCE            'importance';
    const 
INTRINSICSIZE         'intrinsicsize';
    const 
LAYOUT                'layout';
    const 
LIGHTBOX              'lightbox';
    const 
LOADING               'loading';
    const 
LOOP                  'loop';
    const 
MEDIA                 'media';
    const 
NAME                  'name';
    const 
NOLOADING             'noloading';
    const 
OBJECT_FIT            'object-fit';
    const 
ON                    'on';
    const 
PROFILE               'profile';
    const 
REL                   'rel';
    const 
ROLE                  'role';
    const 
SRCSET                'srcset';
    const 
SIZES                 'sizes';
    const 
STYLE                 'style';
    const 
SRC                   'src';
    const 
TABINDEX              'tabindex';
    const 
TEMPLATE              'template';
    const 
TITLE                 'title';
    const 
TYPE                  'type';
    const 
VALUE                 'value';
    const 
VIEWPORT              'viewport';
    const 
WIDTH                 'width';

    const 
ALL_AMP       = [self::AMPself::AMP_EMOJIself::AMP_EMOJI_ALT];
    const 
ALL_AMP4ADS   = [self::AMP4ADSself::AMP4ADS_EMOJIself::AMP4ADS_EMOJI_ALT];
    const 
ALL_AMP4EMAIL = [self::AMP4EMAILself::AMP4EMAIL_EMOJIself::AMP4EMAIL_EMOJI_ALT];

    const 
ALL_BOILERPLATES = [self::AMP_BOILERPLATEself::AMP4ADS_BOILERPLATEself::AMP4EMAIL_BOILERPLATE];

    const 
TYPE_HTML       'text/html';
    const 
TYPE_JSON       'application/json';
    const 
TYPE_LD_JSON    'application/ld+json';
    const 
TYPE_TEXT_PLAIN 'text/plain';

    const 
REL_AMPHTML      'amphtml';
    const 
REL_CANONICAL    'canonical';
    const 
REL_DNS_PREFETCH 'dns-prefetch';
    const 
REL_ICON         'icon';
    const 
REL_NOAMPHTML    'noamphtml';
    const 
REL_NOFOLLOW     'nofollow';
    const 
REL_PRECONNECT   'preconnect';
    const 
REL_PREFETCH     'prefetch';
    const 
REL_PRELOAD      'preload';
    const 
REL_PRERENDER    'prerender';
    const 
REL_STYLESHEET   'stylesheet';
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586