12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- $tcpdf_barcodes_1d_include_dirs = array(
- realpath(dirname(__FILE__) . '/../../tcpdf_barcodes_1d.php'),
- realpath('../../tcpdf_barcodes_1d.php'),
- '/usr/share/php/tcpdf/tcpdf_barcodes_1d.php',
- '/usr/share/tcpdf/tcpdf_barcodes_1d.php',
- '/usr/share/php-tcpdf/tcpdf_barcodes_1d.php',
- '/var/www/tcpdf/tcpdf_barcodes_1d.php',
- '/var/www/html/tcpdf/tcpdf_barcodes_1d.php',
- '/usr/local/apache2/htdocs/tcpdf/tcpdf_barcodes_1d.php'
- );
- foreach ($tcpdf_barcodes_1d_include_dirs as $tcpdf_barcodes_1d_include_path) {
- if (@file_exists($tcpdf_barcodes_1d_include_path)) {
- require_once($tcpdf_barcodes_1d_include_path);
- break;
- }
- }
|