• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/buttons/button.php
  • Класс: BitrixUIButtonsButton
  • Вызов: Button::isEnumValue
protected function isEnumValue($value, $enum)
{
	try
	{
		return in_array($value, (new ReflectionClass($enum))->getConstants(), true);
	}
	catch (ReflectionException $e)
	{}

	return false;
}