⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.200
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
php-tcpdf
/
examples
/
barcodes
/
View File Name :
tcpdf_barcodes_1d_include.php
<?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('../../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; } } //============================================================+ // END OF FILE //============================================================+