...Человеческий поиск в разработке...
- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/classes/general/viewhelper.php
- Класс: CBPViewHelper
- Вызов: CBPViewHelper::getDiskLinksReplaceCallback
static function getDiskLinksReplaceCallback() { return function($matches) { $matches[2] = htmlspecialcharsback($matches[2]); parse_str($matches[2], $query); if (isset($query['attachedId'])) { $attach = BitrixDiskAttachedObject::loadById($query['attachedId']); if ($attach) { try { $attributes = BitrixMainUIViewerItemAttributes::tryBuildByFileId( $attach->getFileId(), $matches[1].$matches[2] ); return "".$matches[3]; } catch (ArgumentException $e) {} } } return $matches[0]; }; }