• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/integration/templates/bitrix24/themepicker.php
  • Класс: BitrixIntranetIntegrationTemplatesBitrix24ThemePicker
  • Вызов: ThemePicker::getBaseThemes
public function getBaseThemes()
{
	$config = static::getConfig();
	if (!isset($config["baseThemes"]) || !is_array($config["baseThemes"]))
	{
		return array();
	}

	$themes = array();
	foreach ($config["baseThemes"] as $baseThemeId => $baseTheme)
	{
		$themes[$baseThemeId] = array(
			"id" => $baseThemeId,
			"css" => $this->getBaseThemeCss($baseThemeId)
		);
	}

	return $themes;
}