• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/integration/templates/bitrix24/themepicker.php
  • Класс: BitrixIntranetIntegrationTemplatesBitrix24ThemePicker
  • Вызов: ThemePicker::getPatternThemes
public function getPatternThemes(): array
{
	$result = [];

	foreach ($this->getStandardThemes() as $theme)
	{
		if (!preg_match('/^(dark|light):pattern-(.+)/is' . BX_UTF_PCRE_MODIFIER, $theme['id'], $matches))
		{
			continue;
		}

		$result[] = $theme;
	}

	return $result;
}