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