Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1534260/root/usr/share/doc/php-tcpdf/examples/barcodes/ |
Upload File : |
<?php //============================================================+ // File name : tcpdf_barcodes_1d_include.php // Begin : 2013-05-19 // Last Update : 2013-05-19 // // Description : Search and include the TCPDF Barcode 1D class. // // Author: Nicola Asuni // // (c) Copyright: // Nicola Asuni // Tecnick.com LTD // www.tecnick.com // info@tecnick.com //============================================================+ /** * Search and include the TCPDF Barcode 1D class. * @package com.tecnick.tcpdf * @abstract TCPDF - Include the main class. * @author Nicola Asuni * @since 2013-05-19 */ // Include the TCPDF 1D barcode class (search the class on the following directories). $tcpdf_barcodes_1d_include_dirs = array( realpath(dirname(__FILE__) . '/../../tcpdf_barcodes_1d.php'),// True source file realpath('../../tcpdf_barcodes_1d.php'),// Relative from $PWD '/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; } } //============================================================+ // END OF FILE //============================================================+