...Человеческий поиск в разработке...
- Модуль: ui
- Путь к файлу: ~/bitrix/modules/ui/lib/barcode/barcodegenerator.php
- Класс: BitrixUIBarcodeBarcodeGenerator
- Вызов: BarcodeGenerator::dmtx_place_0
private function dmtx_place_0(&$matrix, $rows, $cols, $row, $col, $b) { $this->dmtx_place_b($matrix, $rows, $cols, $row-2, $col-2, $b & 0x80); $this->dmtx_place_b($matrix, $rows, $cols, $row-2, $col-1, $b & 0x40); $this->dmtx_place_b($matrix, $rows, $cols, $row-1, $col-2, $b & 0x20); $this->dmtx_place_b($matrix, $rows, $cols, $row-1, $col-1, $b & 0x10); $this->dmtx_place_b($matrix, $rows, $cols, $row-1, $col-0, $b & 0x08); $this->dmtx_place_b($matrix, $rows, $cols, $row-0, $col-2, $b & 0x04); $this->dmtx_place_b($matrix, $rows, $cols, $row-0, $col-1, $b & 0x02); $this->dmtx_place_b($matrix, $rows, $cols, $row-0, $col-0, $b & 0x01); }