CBPViewHelper::getUserPhotoSrc

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPViewHelper
  4. getUserPhotoSrc
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/viewhelper.php
  • Класс: CBPViewHelper
  • Вызов: CBPViewHelper::getUserPhotoSrc
static function getUserPhotoSrc(array $user)
{
	if (empty($user['PERSONAL_PHOTO']))
		return '';
	$arFileTmp = CFile::ResizeImageGet(
		$user["PERSONAL_PHOTO"],
		array('width' => 58, 'height' => 58),
		BX_RESIZE_IMAGE_EXACT,
		false
	);
	return $arFileTmp['src'];
}

Добавить комментарий