• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/component/loglist/param.php
  • Класс: BitrixSocialnetworkComponentLogListParam
  • Вызов: Param::prepareRatingParams
public function prepareRatingParams(&$componentParams): void
{
	CRatingsComponentsMain::getShowRating($componentParams);
	if (
		!isset($componentParams['RATING_TYPE'])
		|| $componentParams['RATING_TYPE'] == ''
	)
	{
		$componentParams['RATING_TYPE'] = Option::get('main', 'rating_vote_template', (Option::get('main', 'rating_vote_type', 'standart') === 'like'? 'like': 'standart'));
	}
	switch ($componentParams['RATING_TYPE'])
	{
		case 'like_graphic':
			$componentParams['RATING_TYPE'] = 'like';
			break;
		case 'standart':
			$componentParams['RATING_TYPE'] = 'standart_text';
			break;
		default:
	}
}