• Модуль: mail
  • Путь к файлу: ~/bitrix/modules/mail/lib/helper/mailcontact.php
  • Класс: BitrixMailHelperMailContact
  • Вызов: MailContact::getRandomColor
static function getRandomColor()
{
	static $colors = null;
	if (is_null($colors))
	{
		$reflect = new ReflectionClass(static::class);
		foreach ($reflect->getConstants() as $name => $value)
		{
			if (strncmp($name, 'COLOR', 5) === 0)
			{
				$colors[] = $value;
			}
		}
	}
	return $colors[rand(0, count($colors) - 1)];
}