Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ui/lib/FeaturePromoter/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/ui/lib/FeaturePromoter/Code.php

<?php

namespace Bitrix\UI\FeaturePromoter;

class Code
{
	private string $featureId;

	public function __construct(string $featureId)
	{
		$this->featureId = $featureId;
	}

	public function get(): string
	{
		return "limit_{$this->getVersion()}_$this->featureId";
	}

	private function getVersion(): string
	{
		return 'v2';
	}
}