Файловый менеджер - Редактировать - /home/harasnat/www/horse/wp-content/plugins/google-listings-and-ads/src/Value/ChannelVisibility.php
Назад
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Value; use Automattic\WooCommerce\GoogleListingsAndAds\Exception\InvalidValue; defined( 'ABSPATH' ) || exit; /** * Class ChannelVisibility * * @package Automattic\WooCommerce\GoogleListingsAndAds\Value */ class ChannelVisibility implements CastableValueInterface, ValueInterface { public const SYNC_AND_SHOW = 'sync-and-show'; public const DONT_SYNC_AND_SHOW = 'dont-sync-and-show'; public const ALLOWED_VALUES = [ self::SYNC_AND_SHOW, self::DONT_SYNC_AND_SHOW, ]; /** * @var string */ protected $visibility; /** * ChannelVisibility constructor. * * @param string $visibility The value. * * @throws InvalidValue When an invalid visibility type is provided. */ public function __construct( string $visibility ) { if ( ! in_array( $visibility, self::ALLOWED_VALUES, true ) ) { throw InvalidValue::not_in_allowed_list( $visibility, self::ALLOWED_VALUES ); } $this->visibility = $visibility; } /** * Get the value of the object. * * @return string */ public function get(): string { return $this->visibility; } /** * Cast a value and return a new instance of the class. * * @param string $value Mixed value to cast to class type. * * @return ChannelVisibility * * @throws InvalidValue When an invalid visibility type is provided. */ public static function cast( $value ): ChannelVisibility { return new self( $value ); } /** * Return an array of the values with option labels. * * @return array */ public static function get_value_options(): array { return [ self::SYNC_AND_SHOW => __( 'Sync and show', 'google-listings-and-ads' ), self::DONT_SYNC_AND_SHOW => __( 'Don\'t Sync and show', 'google-listings-and-ads' ), ]; } /** * @return string */ public function __toString(): string { return $this->get(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка