HEX
Server: LiteSpeed
System: Linux d8 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: wbwebdes (3015)
PHP: 8.1.31
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wbwebdes/domains/files.wb-cloud.nl/private_html/3rdparty/fusonic/opengraph/src/Property.php
<?php

/*
 * Copyright (c) Fusonic GmbH. All rights reserved.
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */

declare(strict_types=1);

namespace Fusonic\OpenGraph;

/**
 * Class holding data for a single Open Graph property on a web page.
 */
class Property
{
    public const AUDIO = 'og:audio';
    public const AUDIO_SECURE_URL = 'og:audio:secure_url';
    public const AUDIO_TYPE = 'og:audio:type';
    public const AUDIO_URL = 'og:audio:url';
    public const DESCRIPTION = 'og:description';
    public const DETERMINER = 'og:determiner';
    public const IMAGE = 'og:image';
    public const IMAGE_HEIGHT = 'og:image:height';
    public const IMAGE_SECURE_URL = 'og:image:secure_url';
    public const IMAGE_TYPE = 'og:image:type';
    public const IMAGE_URL = 'og:image:url';
    public const IMAGE_WIDTH = 'og:image:width';
    public const IMAGE_USER_GENERATED = 'og:image:user_generated';
    public const LOCALE = 'og:locale';
    public const LOCALE_ALTERNATE = 'og:locale:alternate';
    public const RICH_ATTACHMENT = 'og:rich_attachment';
    public const SEE_ALSO = 'og:see_also';
    public const SITE_NAME = 'og:site_name';
    public const TITLE = 'og:title';
    public const TYPE = 'og:type';
    public const UPDATED_TIME = 'og:updated_time';
    public const URL = 'og:url';
    public const VIDEO = 'og:video';
    public const VIDEO_HEIGHT = 'og:video:height';
    public const VIDEO_SECURE_URL = 'og:video:secure_url';
    public const VIDEO_TYPE = 'og:video:type';
    public const VIDEO_URL = 'og:video:url';
    public const VIDEO_WIDTH = 'og:video:width';

    public function __construct(
        /**
         * Key of the property without "og:" prefix.
         */
        public string $key,

        /**
         * Value of the property.
         */
        public mixed $value,
    ) {
    }
}