• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/hook/page/theme.php
  • Класс: BitrixLandingHookPageTheme
  • Вызов: Theme::getAllColorCodes
static function getAllColorCodes(): array
{
	$colors = self::getColorCodes();
	$allColors = [];
	foreach ($colors as $colorItem)
	{
		if (isset($colorItem['color']))
		{
			$allColors[] = $colorItem['color'];
		}
	}
	return $allColors;
}