• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/controller/livefeed.php
  • Класс: BitrixSocialnetworkControllerLivefeed
  • Вызов: Livefeed::readNoTasksNotificationAction
public function readNoTasksNotificationAction(): array
{
	$result = [
		'success' => false
	];

	if (CUserOptions::setOption('socialnetwork', '~log_notasks_notification_read', 'Y'))
	{
		$result['success'] = true;
	}

	return $result;
}