• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/barcode/barcodegenerator.php
  • Класс: BitrixUIBarcodeBarcodeGenerator
  • Вызов: BarcodeGenerator::dispatch_render_svg
private function dispatch_render_svg(
	$code, $x, $y, $w, $h, $colors, $widths, $options
) {
	if ($code && isset($code['g']) && $code['g']) {
		switch ($code['g']) {
			case 'l':
				return $this->linear_render_svg(
					$code, $x, $y, $w, $h,
					$colors, $widths, $options
				);
			case 'm':
				return $this->matrix_render_svg(
					$code, $x, $y, $w, $h,
					$colors, $widths, $options
				);
		}
	}
	return '';
}