daily commit
Showing
application/controllers/Payment.php
0 → 100644
application/controllers/excel.csv
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
application/helpers/csv_helper.php
0 → 100644
application/helpers/pdf_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
application/helpers/tcpdf/README.TXT
deleted
100644 → 0
{ | |||
"name": "tecnick.com/tcpdf", | |||
"version": "6.0.099", | |||
"homepage": "http://www.tcpdf.org/", | |||
"type": "library", | |||
"description": "TCPDF is a PHP class for generating PDF documents and barcodes.", | |||
"keywords": ["PDF","tcpdf","PDFD32000-2008","qrcode","datamatrix","pdf417","barcodes"], | |||
"license": "LGPLv3", | |||
"authors": [ | |||
{ | |||
"name": "Nicola Asuni", | |||
"email": "[email protected]", | |||
"homepage": "http://nicolaasuni.tecnick.com" | |||
} | |||
], | |||
"require": { | |||
"php": ">=5.3.0" | |||
}, | |||
"autoload": { | |||
"classmap": [ | |||
"fonts", | |||
"config", | |||
"include", | |||
"tcpdf.php", | |||
"tcpdf_parser.php", | |||
"tcpdf_import.php", | |||
"tcpdf_barcodes_1d.php", | |||
"tcpdf_barcodes_2d.php", | |||
"include/tcpdf_colors.php", | |||
"include/tcpdf_filters.php", | |||
"include/tcpdf_font_data.php", | |||
"include/tcpdf_fonts.php", | |||
"include/tcpdf_images.php", | |||
"include/tcpdf_static.php", | |||
"include/barcodes/datamatrix.php", | |||
"include/barcodes/pdf417.php", | |||
"include/barcodes/qrcode.php" | |||
] | |||
} | |||
} |
<?php | |||
//============================================================+ | |||
// File name : tcpdf_config.php | |||
// Begin : 2004-06-11 | |||
// Last Update : 2014-09-02 | |||
// | |||
// Description : Configuration file for TCPDF. | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2004-2014 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
//============================================================+ | |||
/** | |||
* Configuration file for TCPDF. | |||
* @author Nicola Asuni | |||
* @package com.tecnick.tcpdf | |||
* @version 4.9.005 | |||
* @since 2004-10-27 | |||
*/ | |||
// IMPORTANT: | |||
// If you define the constant K_TCPDF_EXTERNAL_CONFIG, all the following settings will be ignored. | |||
// If you use the tcpdf_autoconfig.php, then you can overwrite some values here. | |||
/** | |||
* Installation path (/var/www/tcpdf/). | |||
* By default it is automatically calculated but you can also set it as a fixed string to improve performances. | |||
*/ | |||
//define ('K_PATH_MAIN', ''); | |||
/** | |||
* URL path to tcpdf installation folder (http://localhost/tcpdf/). | |||
* By default it is automatically set but you can also set it as a fixed string to improve performances. | |||
*/ | |||
//define ('K_PATH_URL', ''); | |||
/** | |||
* Path for PDF fonts. | |||
* By default it is automatically set but you can also set it as a fixed string to improve performances. | |||
*/ | |||
//define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); | |||
/** | |||
* Default images directory. | |||
* By default it is automatically set but you can also set it as a fixed string to improve performances. | |||
*/ | |||
//define ('K_PATH_IMAGES', ''); | |||
/** | |||
* Deafult image logo used be the default Header() method. | |||
* Please set here your own logo or an empty string to disable it. | |||
*/ | |||
//define ('PDF_HEADER_LOGO', ''); | |||
/** | |||
* Header logo image width in user units. | |||
*/ | |||
//define ('PDF_HEADER_LOGO_WIDTH', 0); | |||
/** | |||
* Cache directory for temporary files (full path). | |||
*/ | |||
//define ('K_PATH_CACHE', '/tmp/'); | |||
/** | |||
* Generic name for a blank image. | |||
*/ | |||
define ('K_BLANK_IMAGE', '_blank.png'); | |||
/** | |||
* Page format. | |||
*/ | |||
define ('PDF_PAGE_FORMAT', 'A4'); | |||
/** | |||
* Page orientation (P=portrait, L=landscape). | |||
*/ | |||
define ('PDF_PAGE_ORIENTATION', 'P'); | |||
/** | |||
* Document creator. | |||
*/ | |||
define ('PDF_CREATOR', 'TCPDF'); | |||
/** | |||
* Document author. | |||
*/ | |||
define ('PDF_AUTHOR', 'TCPDF'); | |||
/** | |||
* Header title. | |||
*/ | |||
define ('PDF_HEADER_TITLE', 'TCPDF Example'); | |||
/** | |||
* Header description string. | |||
*/ | |||
define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); | |||
/** | |||
* Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]. | |||
*/ | |||
define ('PDF_UNIT', 'mm'); | |||
/** | |||
* Header margin. | |||
*/ | |||
define ('PDF_MARGIN_HEADER', 5); | |||
/** | |||
* Footer margin. | |||
*/ | |||
define ('PDF_MARGIN_FOOTER', 10); | |||
/** | |||
* Top margin. | |||
*/ | |||
define ('PDF_MARGIN_TOP', 27); | |||
/** | |||
* Bottom margin. | |||
*/ | |||
define ('PDF_MARGIN_BOTTOM', 25); | |||
/** | |||
* Left margin. | |||
*/ | |||
define ('PDF_MARGIN_LEFT', 15); | |||
/** | |||
* Right margin. | |||
*/ | |||
define ('PDF_MARGIN_RIGHT', 15); | |||
/** | |||
* Default main font name. | |||
*/ | |||
define ('PDF_FONT_NAME_MAIN', 'helvetica'); | |||
/** | |||
* Default main font size. | |||
*/ | |||
define ('PDF_FONT_SIZE_MAIN', 10); | |||
/** | |||
* Default data font name. | |||
*/ | |||
define ('PDF_FONT_NAME_DATA', 'helvetica'); | |||
/** | |||
* Default data font size. | |||
*/ | |||
define ('PDF_FONT_SIZE_DATA', 8); | |||
/** | |||
* Default monospaced font name. | |||
*/ | |||
define ('PDF_FONT_MONOSPACED', 'courier'); | |||
/** | |||
* Ratio used to adjust the conversion of pixels to user units. | |||
*/ | |||
define ('PDF_IMAGE_SCALE_RATIO', 1.25); | |||
/** | |||
* Magnification factor for titles. | |||
*/ | |||
define('HEAD_MAGNIFICATION', 1.1); | |||
/** | |||
* Height of cell respect font height. | |||
*/ | |||
define('K_CELL_HEIGHT_RATIO', 1.25); | |||
/** | |||
* Title magnification respect main font size. | |||
*/ | |||
define('K_TITLE_MAGNIFICATION', 1.3); | |||
/** | |||
* Reduction factor for small font. | |||
*/ | |||
define('K_SMALL_RATIO', 2/3); | |||
/** | |||
* Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language. | |||
*/ | |||
define('K_THAI_TOPCHARS', true); | |||
/** | |||
* If true allows to call TCPDF methods using HTML syntax | |||
* IMPORTANT: For security reason, disable this feature if you are printing user HTML content. | |||
*/ | |||
define('K_TCPDF_CALLS_IN_HTML', true); | |||
/** | |||
* If true and PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution. | |||
*/ | |||
define('K_TCPDF_THROW_EXCEPTION_ERROR', false); | |||
/** | |||
* Default timezone for datetime functions | |||
*/ | |||
define('K_TIMEZONE', 'UTC'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_1d_html.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.000 | |||
*/ | |||
// include 1D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); | |||
// output the barcode as HTML object | |||
echo $barcodeobj->getBarcodeHTML(2, 30, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_1d_png.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.000 | |||
*/ | |||
// include 1D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); | |||
// output the barcode as PNG image | |||
$barcodeobj->getBarcodePNG(2, 30, array(0,0,0)); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_1d_svg.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.000 | |||
*/ | |||
// include 1D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); | |||
// output the barcode as SVG image | |||
$barcodeobj->getBarcodeSVG(2, 30, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_1d_svgi.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.000 | |||
*/ | |||
// include 1D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128'); | |||
// output the barcode as SVG inline code | |||
echo $barcodeobj->getBarcodeSVGcode(2, 40, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_html.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX'); | |||
// output the barcode as HTML object | |||
echo $barcodeobj->getBarcodeHTML(6, 6, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_png.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX'); | |||
// output the barcode as PNG image | |||
$barcodeobj->getBarcodePNG(6, 6, array(0,0,0)); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_svg.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX'); | |||
// output the barcode as SVG image | |||
$barcodeobj->getBarcodeSVG(6, 6, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_svgi.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX'); | |||
// output the barcode as SVG inline code | |||
echo $barcodeobj->getBarcodeSVGcode(6, 6, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_html.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417'); | |||
// output the barcode as HTML object | |||
echo $barcodeobj->getBarcodeHTML(4, 4, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_png.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417'); | |||
// output the barcode as PNG image | |||
$barcodeobj->getBarcodePNG(4, 4, array(0,0,0)); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_svg.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417'); | |||
// output the barcode as SVG image | |||
$barcodeobj->getBarcodeSVG(4, 4, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_svgi.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417'); | |||
// output the barcode as SVG inline code | |||
echo $barcodeobj->getBarcodeSVGcode(4, 4, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_html.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H'); | |||
// output the barcode as HTML object | |||
echo $barcodeobj->getBarcodeHTML(6, 6, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_png.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H'); | |||
// output the barcode as PNG image | |||
$barcodeobj->getBarcodePNG(6, 6, array(0,0,0)); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_svg.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H'); | |||
// output the barcode as SVG image | |||
$barcodeobj->getBarcodeSVG(6, 6, 'black'); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : example_2d_svgi.php | |||
// Version : 1.0.000 | |||
// Begin : 2011-07-21 | |||
// Last Update : 2013-03-19 | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2009-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Example for tcpdf_barcodes_2d.php class | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Example for tcpdf_barcodes_2d.php class | |||
* @package com.tecnick.tcpdf | |||
* @author Nicola Asuni | |||
* @version 1.0.009 | |||
*/ | |||
// include 2D barcode class (search for installation path) | |||
require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php'); | |||
// set the barcode content and type | |||
$barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H'); | |||
// output the barcode as SVG inline code | |||
echo $barcodeobj->getBarcodeSVGcode(6, 6, 'black'); | |||
//============================================================+ | |||
// END OF 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 | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* 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 | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : tcpdf_barcodes_2d_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 | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* Search and include the TCPDF Barcode 2D class. | |||
* @package com.tecnick.tcpdf | |||
* @abstract TCPDF - Include the main class. | |||
* @author Nicola Asuni | |||
* @since 2013-05-19 | |||
*/ | |||
// Include the TCPDF 2D barcode class (search the class on the following directories). | |||
$tcpdf_barcodes_2d_include_dirs = array(realpath('../../tcpdf_barcodes_2d.php'), '/usr/share/php/tcpdf/tcpdf_barcodes_2d.php', '/usr/share/tcpdf/tcpdf_barcodes_2d.php', '/usr/share/php-tcpdf/tcpdf_barcodes_2d.php', '/var/www/tcpdf/tcpdf_barcodes_2d.php', '/var/www/html/tcpdf/tcpdf_barcodes_2d.php', '/usr/local/apache2/htdocs/tcpdf/tcpdf_barcodes_2d.php'); | |||
foreach ($tcpdf_barcodes_2d_include_dirs as $tcpdf_barcodes_2d_include_path) { | |||
if (@file_exists($tcpdf_barcodes_2d_include_path)) { | |||
require_once($tcpdf_barcodes_2d_include_path); | |||
break; | |||
} | |||
} | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : tcpdf_config.php | |||
// Begin : 2004-06-11 | |||
// Last Update : 2013-05-16 | |||
// | |||
// Description : Example of alternative configuration file for TCPDF. | |||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2004-2013 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the GNU Lesser General Public License | |||
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
//============================================================+ | |||
/** | |||
* Example of alternative configuration file for TCPDF. | |||
* @author Nicola Asuni | |||
* @package com.tecnick.tcpdf | |||
* @version 4.9.005 | |||
* @since 2004-10-27 | |||
*/ | |||
/** | |||
* Define the following constant to ignore the default configuration file. | |||
*/ | |||
define ('K_TCPDF_EXTERNAL_CONFIG', true); | |||
/** | |||
* Installation path (/var/www/tcpdf/). | |||
* By default it is automatically calculated but you can also set it as a fixed string to improve performances. | |||
*/ | |||
//define ('K_PATH_MAIN', ''); | |||
/** | |||
* URL path to tcpdf installation folder (http://localhost/tcpdf/). | |||
* By default it is automatically set but you can also set it as a fixed string to improve performances. | |||
*/ | |||
//define ('K_PATH_URL', ''); | |||
/** | |||
* Path for PDF fonts. | |||
* By default it is automatically set but you can also set it as a fixed string to improve performances. | |||
*/ | |||
//define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); | |||
/** | |||
* Default images directory. | |||
* By default it is automatically set but you can also set it as a fixed string to improve performances. | |||
*/ | |||
define ('K_PATH_IMAGES', dirname(__FILE__).'/../images/'); | |||
/** | |||
* Deafult image logo used be the default Header() method. | |||
* Please set here your own logo or an empty string to disable it. | |||
*/ | |||
define ('PDF_HEADER_LOGO', 'tcpdf_logo.jpg'); | |||
/** | |||
* Header logo image width in user units. | |||
*/ | |||
define ('PDF_HEADER_LOGO_WIDTH', 30); | |||
/** | |||
* Cache directory for temporary files (full path). | |||
*/ | |||
define ('K_PATH_CACHE', sys_get_temp_dir().'/'); | |||
/** | |||
* Generic name for a blank image. | |||
*/ | |||
define ('K_BLANK_IMAGE', '_blank.png'); | |||
/** | |||
* Page format. | |||
*/ | |||
define ('PDF_PAGE_FORMAT', 'A4'); | |||
/** | |||
* Page orientation (P=portrait, L=landscape). | |||
*/ | |||
define ('PDF_PAGE_ORIENTATION', 'P'); | |||
/** | |||
* Document creator. | |||
*/ | |||
define ('PDF_CREATOR', 'TCPDF'); | |||
/** | |||
* Document author. | |||
*/ | |||
define ('PDF_AUTHOR', 'TCPDF'); | |||
/** | |||
* Header title. | |||
*/ | |||
define ('PDF_HEADER_TITLE', 'TCPDF Example'); | |||
/** | |||
* Header description string. | |||
*/ | |||
define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); | |||
/** | |||
* Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]. | |||
*/ | |||
define ('PDF_UNIT', 'mm'); | |||
/** | |||
* Header margin. | |||
*/ | |||
define ('PDF_MARGIN_HEADER', 5); | |||
/** | |||
* Footer margin. | |||
*/ | |||
define ('PDF_MARGIN_FOOTER', 10); | |||
/** | |||
* Top margin. | |||
*/ | |||
define ('PDF_MARGIN_TOP', 27); | |||
/** | |||
* Bottom margin. | |||
*/ | |||
define ('PDF_MARGIN_BOTTOM', 25); | |||
/** | |||
* Left margin. | |||
*/ | |||
define ('PDF_MARGIN_LEFT', 15); | |||
/** | |||
* Right margin. | |||
*/ | |||
define ('PDF_MARGIN_RIGHT', 15); | |||
/** | |||
* Default main font name. | |||
*/ | |||
define ('PDF_FONT_NAME_MAIN', 'helvetica'); | |||
/** | |||
* Default main font size. | |||
*/ | |||
define ('PDF_FONT_SIZE_MAIN', 10); | |||
/** | |||
* Default data font name. | |||
*/ | |||
define ('PDF_FONT_NAME_DATA', 'helvetica'); | |||
/** | |||
* Default data font size. | |||
*/ | |||
define ('PDF_FONT_SIZE_DATA', 8); | |||
/** | |||
* Default monospaced font name. | |||
*/ | |||
define ('PDF_FONT_MONOSPACED', 'courier'); | |||
/** | |||
* Ratio used to adjust the conversion of pixels to user units. | |||
*/ | |||
define ('PDF_IMAGE_SCALE_RATIO', 1.25); | |||
/** | |||
* Magnification factor for titles. | |||
*/ | |||
define('HEAD_MAGNIFICATION', 1.1); | |||
/** | |||
* Height of cell respect font height. | |||
*/ | |||
define('K_CELL_HEIGHT_RATIO', 1.25); | |||
/** | |||
* Title magnification respect main font size. | |||
*/ | |||
define('K_TITLE_MAGNIFICATION', 1.3); | |||
/** | |||
* Reduction factor for small font. | |||
*/ | |||
define('K_SMALL_RATIO', 2/3); | |||
/** | |||
* Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language. | |||
*/ | |||
define('K_THAI_TOPCHARS', true); | |||
/** | |||
* If true allows to call TCPDF methods using HTML syntax | |||
* IMPORTANT: For security reason, disable this feature if you are printing user HTML content. | |||
*/ | |||
define('K_TCPDF_CALLS_IN_HTML', true); | |||
/** | |||
* If true adn PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution. | |||
*/ | |||
define('K_TCPDF_THROW_EXCEPTION_ERROR', false); | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
Bag Attributes | |||
localKeyID: 7B AB 1B 7A BE 4C 85 C0 1A A6 DC 59 3F 79 48 C3 93 38 68 9C | |||
subject=/CN=TCPDF DEMO/O=TCPDF/OU=DEMO/[email protected]/C=IT | |||
issuer=/CN=TCPDF DEMO/O=TCPDF/OU=DEMO/[email protected]/C=IT | |||
-----BEGIN CERTIFICATE----- | |||
MIIC1TCCAj6gAwIBAgIKkehOL/XGkB5cjjANBgkqhkiG9w0BAQUFADBhMRMwEQYD | |||
VQQDEwpUQ1BERiBERU1PMQ4wDAYDVQQKEwVUQ1BERjENMAsGA1UECxMEREVNTzEe | |||
MBwGCSqGSIb3DQEJARYPeW91QGV4YW1wbGUuY29tMQswCQYDVQQGEwJJVDAeFw0w | |||
OTA4MjExMjU0NDhaFw0xNDA4MjExMjU0NDhaMGExEzARBgNVBAMTClRDUERGIERF | |||
TU8xDjAMBgNVBAoTBVRDUERGMQ0wCwYDVQQLEwRERU1PMR4wHAYJKoZIhvcNAQkB | |||
Fg95b3VAZXhhbXBsZS5jb20xCzAJBgNVBAYTAklUMIGfMA0GCSqGSIb3DQEBAQUA | |||
A4GNADCBiQKBgQDAqIL0uGKmTR98Lxx2vEEE1OGKkMXFo0JViitALe7Onhxxqx0H | |||
XMUDKF5mvEVu1rcvh7/oAnAfrCuEpL/up3u1mQCgBE7WXBnFFE/AE3jCksh9OkS0 | |||
Z0Xj9woN5bzxRDsGoPiOu/4xzk5qSEXt8jf2Ep90QuNkqLIRT4swAzpDbwIDAQAB | |||
o4GTMIGQMDcGA1UdEgQwMC6gEQYDVQQDDApUQ1BERiBERU1PoAwGA1UECgwFVENQ | |||
REagCwYDVQQLDARERU1PMDcGA1UdEQQwMC6gEQYDVQQDDApUQ1BERiBERU1PoAwG | |||
A1UECgwFVENQREagCwYDVQQLDARERU1PMA8GCSqGSIb3LwEBCgQCBQAwCwYDVR0P | |||
BAQDAgSQMA0GCSqGSIb3DQEBBQUAA4GBAEhTQfqX3ZNdHmpTLDbIj22RHXii2roE | |||
OavCbu9WsHoWpva0qSd+yIoD594VHvYAd29sfzDfiN+7W0aiZfDhq5jpaSQMVlN8 | |||
RGYMupbHY/+a9Gz1wqxnR84mlTtIkZVRYAhsfPwy6M1BEjdMqfdh9h40JIdkdjtb | |||
8faTCfXPePWQ | |||
-----END CERTIFICATE----- | |||
Bag Attributes | |||
localKeyID: 7B AB 1B 7A BE 4C 85 C0 1A A6 DC 59 3F 79 48 C3 93 38 68 9C | |||
Key Attributes: <No Attributes> | |||
-----BEGIN RSA PRIVATE KEY----- | |||
MIICXQIBAAKBgQDAqIL0uGKmTR98Lxx2vEEE1OGKkMXFo0JViitALe7Onhxxqx0H | |||
XMUDKF5mvEVu1rcvh7/oAnAfrCuEpL/up3u1mQCgBE7WXBnFFE/AE3jCksh9OkS0 | |||
Z0Xj9woN5bzxRDsGoPiOu/4xzk5qSEXt8jf2Ep90QuNkqLIRT4swAzpDbwIDAQAB | |||
AoGAXc+wNMmz/5Z+RlIKYia44klmqbplEx+0JULqXI4BQsrqvs67i+I4bJkznoL+ | |||
rEIRYSuQ3sCRKFsFtckjTGpxadnxkB+uwGKc6pZChv99BFX6HFR4hgBlT/BBRAQA | |||
hMDlM2JIRr4S4SMVXR7MHwGMUf9mUeanGLR3ZWtU3aXJrIECQQD7OaYUVYNEEnM9 | |||
uXyjm22CuHyqyEf5gb13sK0uQty67547yJTMUQZd/sQc9KGwhzBbhrob2LO2jAhh | |||
S+f+NSRnAkEAxFHm3fMI5RgXmswxlGm4QW07a/Ueo7ZJG6xjTkFXluJhd+XHswRD | |||
dQIO3zG9nGjNUoeMrPhXhPvKqFc2F9RDuQJAQBEGin74N77gxqfr4ik79y8nE8J5 | |||
oGZ2s/RJZdfFRKLg3mwbjjNHhWb4Ck5UgZkoOt8TzRApXG8/n9hktE5HFwJBALur | |||
M5AueO1Pl5kB489lNJ9OxUQRYUXMxpxuscuoCQwSwmv0O2+0/qtG2WKhUQnI4aYo | |||
L+FV0YwtivBb1jj3T/kCQQDIWOxq8eRowdaMzvJpRUHFgMcf1AVZExKyrugwYOWd | |||
KNsDxC4KaQOsPt8iT/Ulo4g/MJC0HolCOhWibKmR9Ayl | |||
-----END RSA PRIVATE KEY----- |
17.2 KB
<?php | |||
//============================================================+ | |||
// File name : afr.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Afrikaans | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Afrikaans | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Afrikaans | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'af'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'bladsy'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ara.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Arabic | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Arabic | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Arabic | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'rtl'; | |||
$l['a_meta_language'] = 'ar'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'صفحة'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : aze.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Azerbaijani | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Azerbaijani | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Azerbaijani | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'az'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'səhifə'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : bel.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Basque | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Basque | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Basque | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'be'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'старонкі'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : eng.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Brazilian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Brazilian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Brazilian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'pt'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'página'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : bul.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2013-05-13 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Bulgarian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Bulgarian | |||
* @author Nicola Asuni | |||
* @since 2012-03-22 | |||
*/ | |||
// Bulgarian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'bg'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'страница'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : cat.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Catalan | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Catalan | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Catalan | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ca'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'pàgina'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ces.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-11-22 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Czech | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Czech | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Czech | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'cs'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'stránka'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : chi.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Chinese (Simplified) | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Chinese (Simplified) | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Chinese (Simplified) | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'cn'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = '页面'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : urd.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Welsh | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Welsh | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Welsh | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'cy'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'tudalen'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : dan.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Danish | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Danish | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Danish | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'da'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'side'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : eng.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// English | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: English | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// English | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'en'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'page'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : est.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Estonian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Estonian | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Estonian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'et'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'lehekülg'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : eus.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Basque | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Basque | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Basque | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'eu'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'Orrialdearen'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : far.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Farsi | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Farsi | |||
* @author Sina Saeedi | |||
* @since 2011-04-12 | |||
*/ | |||
// Farsi | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'rtl'; | |||
$l['a_meta_language'] = 'fa'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'صفحه'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : fra.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// French | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: French | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// French | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'fr'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'page'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ger.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-11-16 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// German | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: German | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// German | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'de'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'Seite'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ind.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Irish | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Irish | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Irish | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ga'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'leathanach'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : glg.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Galician | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Galician | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Galician | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'gl'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'Páxina'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : hat.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Haitian Creole | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Haitian Creole | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Haitian Creole | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ht'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'paj'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : heb.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Hebrew | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Hebrew | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Hebrew | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'rtl'; | |||
$l['a_meta_language'] = 'he'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'מקור:'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : hrv.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Croatian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Croatian | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Croatian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'hr'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'stranica'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : hun.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Hungarian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Hungarian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Hungarian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'hu'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'oldal'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : hye.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Armenian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Armenian | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Armenian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'hy'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'էջ'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ind.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Indonesian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Indonesian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Indonesian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'id'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'halaman'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ita.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Italian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Italian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Italian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'it'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'pagina'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : jpn.php | |||
// Begin : 2011-01-24 | |||
// Last Update : 2011-01-24 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Japanese | |||
// | |||
// Author: Nicola Asuni - Translation by redcocker | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Japanese | |||
* @author Nicola Asuni - Translation by redcocker | |||
* @since 2012-01-24 | |||
*/ | |||
// Japanese | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ja'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'ページ'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : kat.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Georgian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Georgian | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Georgian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ka'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'გვერდი'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : kor.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Korean | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Korean | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Korean | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ko'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = '페이지'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : mkd.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Macedonian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Macedonian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Macedonian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'mk'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'страница'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : mlt.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Maltese | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Maltese | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Maltese | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'mt'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'paġna'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : msa.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Malay | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Malay | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Malay | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ms'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'laman'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : nld.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Dutch | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Dutch | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Dutch | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'nl'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'pagina'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : nob.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Norwegian Bokmål | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Norwegian Bokmål | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Norwegian Bokmål | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'nb'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'side'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : pol.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Polish | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Polish | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Polish | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'pl'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'strona'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : por.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Portuguese | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Portuguese | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Portuguese | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'pt'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'página'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ron.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Romanian, Moldavian, Moldovan | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Romanian, Moldavian, Moldovan | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Romanian, Moldavian, Moldovan | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ro'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'pagina'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : rus.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2012-07-25 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Russian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Russian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Russian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ru'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'страница'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : slv.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Slovene | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Slovene | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Slovene | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'sl'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'stran'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : spa.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Spanish; Castilian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Spanish; Castilian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Spanish; Castilian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'es'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'página'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : sqi.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Albanian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Albanian | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Albanian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'sq'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'faqe'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : srp.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Serbian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Serbian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Serbian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'sr'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'страна'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : swa.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Swahili | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Swahili | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Swahili | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'sw'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'ukurasa'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : swe.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Swedish | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Swedish | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Swedish | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'sv'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'sida'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : ukr.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2012-07-25 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Ukrainian | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Ukrainian | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Russian | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'ua'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'сторінка'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : urd.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Urdu | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Urdu | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Urdu | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'rtl'; | |||
$l['a_meta_language'] = 'ur'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'صفحہ'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : yid.php | |||
// Begin : 2004-03-03 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Welsh | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Welsh | |||
* @author Nicola Asuni | |||
* @since 2004-03-03 | |||
*/ | |||
// Welsh | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'rtl'; | |||
$l['a_meta_language'] = 'yi'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = 'זייַט'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
<?php | |||
//============================================================+ | |||
// File name : zho.php | |||
// Begin : 2010-10-26 | |||
// Last Update : 2010-10-26 | |||
// | |||
// Description : Language module for TCPDF | |||
// (contains translated texts) | |||
// Chinese | |||
// | |||
// Author: Nicola Asuni | |||
// | |||
// (c) Copyright: | |||
// Nicola Asuni | |||
// Tecnick.com LTD | |||
// www.tecnick.com | |||
// [email protected] | |||
//============================================================+ | |||
/** | |||
* TCPDF language file (contains translated texts). | |||
* @package com.tecnick.tcpdf | |||
* @brief TCPDF language file: Chinese | |||
* @author Nicola Asuni | |||
* @since 2010-10-26 | |||
*/ | |||
// Chinese | |||
global $l; | |||
$l = Array(); | |||
// PAGE META DESCRIPTORS -------------------------------------- | |||
$l['a_meta_charset'] = 'UTF-8'; | |||
$l['a_meta_dir'] = 'ltr'; | |||
$l['a_meta_language'] = 'zh'; | |||
// TRANSLATIONS -------------------------------------- | |||
$l['w_page'] = '頁面'; | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
application/helpers/tcpdf/tcpdf.php
deleted
100644 → 0
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
<?php | |||
//============================================================+ | |||
// File name : tcpdf_autoconfig.php | |||
// Version : 1.0.000 | |||
// Begin : 2013-05-16 | |||
// Last Update : 2014-09-02 | |||
// Authors : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected] | |||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) | |||
// ------------------------------------------------------------------- | |||
// Copyright (C) 2011-2014 Nicola Asuni - Tecnick.com LTD | |||
// | |||
// This file is part of TCPDF software library. | |||
// | |||
// TCPDF is free software: you can redistribute it and/or modify it | |||
// under the terms of the GNU Lesser General Public License as | |||
// published by the Free Software Foundation, either version 3 of the | |||
// License, or (at your option) any later version. | |||
// | |||
// TCPDF is distributed in the hope that it will be useful, but | |||
// WITHOUT ANY WARRANTY; without even the implied warranty of | |||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |||
// See the GNU Lesser General Public License for more details. | |||
// | |||
// You should have received a copy of the License | |||
// along with TCPDF. If not, see | |||
// <http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT>. | |||
// | |||
// See LICENSE.TXT file for more information. | |||
// ------------------------------------------------------------------- | |||
// | |||
// Description : Try to automatically configure some TCPDF | |||
// constants if not defined. | |||
// | |||
//============================================================+ | |||
/** | |||
* @file | |||
* Try to automatically configure some TCPDF constants if not defined. | |||
* @package com.tecnick.tcpdf | |||
* @version 1.0.000 | |||
*/ | |||
// DOCUMENT_ROOT fix for IIS Webserver | |||
if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) { | |||
if(isset($_SERVER['SCRIPT_FILENAME'])) { | |||
$_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF']))); | |||
} elseif(isset($_SERVER['PATH_TRANSLATED'])) { | |||
$_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF']))); | |||
} else { | |||
// define here your DOCUMENT_ROOT path if the previous fails (e.g. '/var/www') | |||
$_SERVER['DOCUMENT_ROOT'] = '/'; | |||
} | |||
} | |||
$_SERVER['DOCUMENT_ROOT'] = str_replace('//', '/', $_SERVER['DOCUMENT_ROOT']); | |||
if (substr($_SERVER['DOCUMENT_ROOT'], -1) != '/') { | |||
$_SERVER['DOCUMENT_ROOT'] .= '/'; | |||
} | |||
// Load main configuration file only if the K_TCPDF_EXTERNAL_CONFIG constant is set to false. | |||
if (!defined('K_TCPDF_EXTERNAL_CONFIG') OR !K_TCPDF_EXTERNAL_CONFIG) { | |||
// define a list of default config files in order of priority | |||
$tcpdf_config_files = array(dirname(__FILE__).'/config/tcpdf_config.php', '/etc/php-tcpdf/tcpdf_config.php', '/etc/tcpdf/tcpdf_config.php', '/etc/tcpdf_config.php'); | |||
foreach ($tcpdf_config_files as $tcpdf_config) { | |||
if (@file_exists($tcpdf_config) AND is_readable($tcpdf_config)) { | |||
require_once($tcpdf_config); | |||
break; | |||
} | |||
} | |||
} | |||
if (!defined('K_PATH_MAIN')) { | |||
define ('K_PATH_MAIN', dirname(__FILE__).'/'); | |||
} | |||
if (!defined('K_PATH_FONTS')) { | |||
define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); | |||
} | |||
if (!defined('K_PATH_URL')) { | |||
$k_path_url = K_PATH_MAIN; // default value for console mode | |||
if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) { | |||
if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND (strtolower($_SERVER['HTTPS']) != 'off')) { | |||
$k_path_url = 'https://'; | |||
} else { | |||
$k_path_url = 'http://'; | |||
} | |||
$k_path_url .= $_SERVER['HTTP_HOST']; | |||
$k_path_url .= str_replace( '\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1))); | |||
} | |||
define ('K_PATH_URL', $k_path_url); | |||
} | |||
if (!defined('K_PATH_IMAGES')) { | |||
$tcpdf_images_dirs = array(K_PATH_MAIN.'examples/images/', K_PATH_MAIN.'images/', '/usr/share/doc/php-tcpdf/examples/images/', '/usr/share/doc/tcpdf/examples/images/', '/usr/share/doc/php/tcpdf/examples/images/', '/var/www/tcpdf/images/', '/var/www/html/tcpdf/images/', '/usr/local/apache2/htdocs/tcpdf/images/', K_PATH_MAIN); | |||
foreach ($tcpdf_images_dirs as $tcpdf_images_path) { | |||
if (@file_exists($tcpdf_images_path)) { | |||
break; | |||
} | |||
} | |||
define ('K_PATH_IMAGES', $tcpdf_images_path); | |||
} | |||
if (!defined('PDF_HEADER_LOGO')) { | |||
$tcpdf_header_logo = ''; | |||
if (@file_exists(K_PATH_IMAGES.'tcpdf_logo.jpg')) { | |||
$tcpdf_header_logo = 'tcpdf_logo.jpg'; | |||
} | |||
define ('PDF_HEADER_LOGO', $tcpdf_header_logo); | |||
} | |||
if (!defined('PDF_HEADER_LOGO_WIDTH')) { | |||
if (!empty($tcpdf_header_logo)) { | |||
define ('PDF_HEADER_LOGO_WIDTH', 30); | |||
} else { | |||
define ('PDF_HEADER_LOGO_WIDTH', 0); | |||
} | |||
} | |||
if (!defined('K_PATH_CACHE')) { | |||
$K_PATH_CACHE = ini_get('upload_tmp_dir') ? ini_get('upload_tmp_dir') : sys_get_temp_dir(); | |||
if (substr($K_PATH_CACHE, -1) != '/') { | |||
$K_PATH_CACHE .= '/'; | |||
} | |||
define ('K_PATH_CACHE', $K_PATH_CACHE); | |||
} | |||
if (!defined('K_BLANK_IMAGE')) { | |||
define ('K_BLANK_IMAGE', '_blank.png'); | |||
} | |||
if (!defined('PDF_PAGE_FORMAT')) { | |||
define ('PDF_PAGE_FORMAT', 'A4'); | |||
} | |||
if (!defined('PDF_PAGE_ORIENTATION')) { | |||
define ('PDF_PAGE_ORIENTATION', 'P'); | |||
} | |||
if (!defined('PDF_CREATOR')) { | |||
define ('PDF_CREATOR', 'TCPDF'); | |||
} | |||
if (!defined('PDF_AUTHOR')) { | |||
define ('PDF_AUTHOR', 'TCPDF'); | |||
} | |||
if (!defined('PDF_HEADER_TITLE')) { | |||
define ('PDF_HEADER_TITLE', 'TCPDF Example'); | |||
} | |||
if (!defined('PDF_HEADER_STRING')) { | |||
define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); | |||
} | |||
if (!defined('PDF_UNIT')) { | |||
define ('PDF_UNIT', 'mm'); | |||
} | |||
if (!defined('PDF_MARGIN_HEADER')) { | |||
define ('PDF_MARGIN_HEADER', 5); | |||
} | |||
if (!defined('PDF_MARGIN_FOOTER')) { | |||
define ('PDF_MARGIN_FOOTER', 10); | |||
} | |||
if (!defined('PDF_MARGIN_TOP')) { | |||
define ('PDF_MARGIN_TOP', 27); | |||
} | |||
if (!defined('PDF_MARGIN_BOTTOM')) { | |||
define ('PDF_MARGIN_BOTTOM', 25); | |||
} | |||
if (!defined('PDF_MARGIN_LEFT')) { | |||
define ('PDF_MARGIN_LEFT', 15); | |||
} | |||
if (!defined('PDF_MARGIN_RIGHT')) { | |||
define ('PDF_MARGIN_RIGHT', 15); | |||
} | |||
if (!defined('PDF_FONT_NAME_MAIN')) { | |||
define ('PDF_FONT_NAME_MAIN', 'helvetica'); | |||
} | |||
if (!defined('PDF_FONT_SIZE_MAIN')) { | |||
define ('PDF_FONT_SIZE_MAIN', 10); | |||
} | |||
if (!defined('PDF_FONT_NAME_DATA')) { | |||
define ('PDF_FONT_NAME_DATA', 'helvetica'); | |||
} | |||
if (!defined('PDF_FONT_SIZE_DATA')) { | |||
define ('PDF_FONT_SIZE_DATA', 8); | |||
} | |||
if (!defined('PDF_FONT_MONOSPACED')) { | |||
define ('PDF_FONT_MONOSPACED', 'courier'); | |||
} | |||
if (!defined('PDF_IMAGE_SCALE_RATIO')) { | |||
define ('PDF_IMAGE_SCALE_RATIO', 1.25); | |||
} | |||
if (!defined('HEAD_MAGNIFICATION')) { | |||
define('HEAD_MAGNIFICATION', 1.1); | |||
} | |||
if (!defined('K_CELL_HEIGHT_RATIO')) { | |||
define('K_CELL_HEIGHT_RATIO', 1.25); | |||
} | |||
if (!defined('K_TITLE_MAGNIFICATION')) { | |||
define('K_TITLE_MAGNIFICATION', 1.3); | |||
} | |||
if (!defined('K_SMALL_RATIO')) { | |||
define('K_SMALL_RATIO', 2/3); | |||
} | |||
if (!defined('K_THAI_TOPCHARS')) { | |||
define('K_THAI_TOPCHARS', true); | |||
} | |||
if (!defined('K_TCPDF_CALLS_IN_HTML')) { | |||
define('K_TCPDF_CALLS_IN_HTML', true); | |||
} | |||
if (!defined('K_TCPDF_THROW_EXCEPTION_ERROR')) { | |||
define('K_TCPDF_THROW_EXCEPTION_ERROR', false); | |||
} | |||
if (!defined('K_TIMEZONE')) { | |||
define('K_TIMEZONE', @date_default_timezone_get()); | |||
} | |||
//============================================================+ | |||
// END OF FILE | |||
//============================================================+ |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
application/third_party/PHPExcel.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.