• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/authentication/policy/rulescollection.php
  • Класс: BitrixMainAuthenticationPolicyRulesCollection
  • Вызов: RulesCollection::getValues
public function getValues()
{
	$result = [];

	foreach ($this->values as $code => $rule)
	{
		$value = $rule->getValue();
		if ($rule instanceof BooleanRule)
		{
			$result[$code] = ($value ? 'Y' : 'N');
		}
		else
		{
			$result[$code] = $value;
		}
	}

	return $result;
}