• Модуль: mobile
  • Путь к файлу: ~/bitrix/modules/mobile/lib/component/loglist/path.php
  • Класс: BitrixMobileComponentLogListPath
  • Вызов: Path::preparePathParams
public function preparePathParams(&$componentParams)
{
	$result = [];


	$componentParams['PATH_TO_USER'] = trim($componentParams['PATH_TO_USER']);
	$componentParams['PATH_TO_GROUP'] = trim($componentParams['PATH_TO_GROUP']);

	Util::checkEmptyParamString($componentParams, 'PATH_TO_SMILE', '/bitrix/images/socialnetwork/smile/');

	if($componentParams['PATH_TO_USER_BLOG_POST'] <> '')
	{
		$componentParams["PATH_TO_USER_MICROBLOG_POST"] = $componentParams['PATH_TO_USER_BLOG_POST'];
	}

/*
	$mobileContext = new BitrixMobileContext();
	$componentParams['PATH_TO_LOG_ENTRY_EMPTY'] .= (mb_strpos($componentParams['PATH_TO_LOG_ENTRY_EMPTY'], '?') !== false ? '&' : '?') . 'version=' . $mobileContext->version;
*/
	return $result;
}