• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_rest.php
  • Класс: CVoxImplantRestService
  • Вызов: CVoxImplantRestService::splitToOperationAndField
static function splitToOperationAndField($filterDefinition)
{
	if (preg_match('/^([^a-zA-Z]*)(.*)/', $filterDefinition, $matches))
	{
		return ['operation' => $matches[1], 'field' => $matches[2]];
	}

	return null;
}