Current Path : /var/www/axolotl/data/www/yar.axolotls.ru/bitrix/modules/transformer/lib/ |
Current File : /var/www/axolotl/data/www/yar.axolotls.ru/bitrix/modules/transformer/lib/interfacecallback.php |
<? namespace Bitrix\Transformer; interface InterfaceCallback { /** * Function to process results after transformation. * * @param int $status Status of the command. * @param string $command Name of the command. * @param array $params Input parameters of the command. * @param array $result Result of the command from controller * Here keys are identifiers to result information. If result is file it will be in 'files' array. * 'files' - array of the files, where key is extension, and value is absolute path to the result file. * * This method should return true on success or string on error. * * @return bool|string */ public static function call($status, $command, $params, $result = array()); }