• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/sharing.php
  • Класс: BitrixReportSharing
  • Вызов: Sharing::onReportDelete
static function onReportDelete($reportId)
{
	$reportId = intval($reportId);
	$result = SharingTable::getList(array(
		'select' => array('ID'),
		'filter'=>array('=REPORT_ID' => $reportId),
	));
	while($data = $result->fetch())
		SharingTable::delete($data['ID']);
}