mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-26 01:53:16 -04:00
12 lines
299 B
PHP
Executable File
12 lines
299 B
PHP
Executable File
<?php
|
|
$classFile = 'BCGcode39.barcode.php';
|
|
$className = 'BCGcode39';
|
|
$baseClassFile = 'BCGBarcode1D.php';
|
|
$codeVersion = '5.0.2';
|
|
|
|
function customSetup($barcode, $get) {
|
|
if (isset($get['checksum'])) {
|
|
$barcode->setChecksum($get['checksum'] === '1' ? true : false);
|
|
}
|
|
}
|
|
?>
|