• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/controller/livefeed/logentry.php
  • Класс: Bitrix\Socialnetwork\Controller\Livefeed\LogEntry
  • Вызов: LogEntry::configureActions
public function configureActions()
{
	return [
		'getPinData' => [
			'+prefilters' => [
				new ActionFilter\Token(static function () {
					$requestParams = \Bitrix\Main\Context::getCurrent()->getRequest()->getPost('params');

					return (
						is_array($requestParams)
						&& isset($requestParams['logId'])
							? (string)$requestParams['logId']
							: ''
					);
				}),
			],
		],
	];
}