| Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/rest/lib/ |
| Current File : /var/www/element/data/www/revenuestory.ru/bitrix/modules/rest/lib/analytic.php |
<?php
namespace Bitrix\Rest;
/**
* Class Analytic
*
* @package Bitrix\Rest
*/
class Analytic
{
/**
* Logs data for analytic to file.
*
* @param string $action
* @param string $tag
* @param string $label
* @param string $actionType
*/
public static function logToFile($action, $tag = '', $label = '', $actionType = '')
{
if (function_exists('AddEventToStatFile'))
{
AddEventToStatFile('rest', $action, $tag, $label, $actionType);
}
}
}