- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/lib/basetype/file.php
- Класс: BitrixBizprocBaseTypeFile
- Вызов: File::getFormats
static function getFormats()
{
$formats = parent::getFormats();
$formats['src'] = [
'callable' => 'formatValueSrc',
'separator' => ', ',
];
$formats['publink'] = [
'callable' => 'formatValuePublicLink',
'separator' => ', ',
];
$formats['shortlink'] = [
'callable' => 'formatValueShortLink',
'separator' => ', ',
];
$formats['name'] = [
'callable' => 'formatValueName',
'separator' => ', ',
];
return $formats;
}