Skip to content
Extraits de code Groupes Projets
Valider 47353af0 rédigé par robocoder's avatar robocoder
Parcourir les fichiers

fixes #1656

git-svn-id: http://dev.piwik.org/svn/trunk@4224 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent 57c968e0
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
<?php <?php
//============================================================+
// File name : tcpdf_config.php
// Begin : 2004-06-11
// Last Update : 2010-12-16
//
// Description : Configuration file for TCPDF.
//
// Author: Nicola Asuni
//
// (c) Copyright:
// Nicola Asuni
// Tecnick.com s.r.l.
// Via Della Pace, 11
// 09044 Quartucciu (CA)
// ITALY
// www.tecnick.com
// info@tecnick.com
//============================================================+
/** /**
* Configuration file for TCPDF. * Piwik - Open source web analytics
* @author Nicola Asuni *
* @package com.tecnick.tcpdf * @link http://piwik.org
* @version 4.9.005 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
* @since 2004-10-27 * @version $Id$
*
* @category Piwik_Plugins
* @package Piwik_PDFReports
*/ */
define ('K_PATH_CACHE', PIWIK_USER_PATH.'/tmp/tcpdf/'); /**
define ('K_PATH_IMAGES', PIWIK_USER_PATH.'/tmp/tcpdf/'); * Override settings in libs/tcpdf_config.php
*
* @package Piwik_PDFReports
*/
// If you define the constant K_TCPDF_EXTERNAL_CONFIG, the following settings will be ignored. define('K_PATH_MAIN', PIWIK_INCLUDE_PATH.'/libs/tcpdf/');
define('K_PATH_CACHE', PIWIK_USER_PATH.'/tmp/tcpdf/');
define('K_PATH_IMAGES', PIWIK_USER_PATH.'/tmp/tcpdf/');
if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
...@@ -45,35 +34,39 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { ...@@ -45,35 +34,39 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
} }
} }
// Automatic calculation for the following K_PATH_MAIN constant if (!defined('K_PATH_MAIN')) {
$k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen('config')))); // Automatic calculation for the following K_PATH_MAIN constant
if (substr($k_path_main, -1) != '/') { $k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen('config'))));
$k_path_main .= '/'; if (substr($k_path_main, -1) != '/') {
} $k_path_main .= '/';
}
/** /**
* Installation path (/var/www/tcpdf/). * Installation path (/var/www/tcpdf/).
* By default it is automatically calculated but you can also set it as a fixed string to improve performances. * By default it is automatically calculated but you can also set it as a fixed string to improve performances.
*/ */
define ('K_PATH_MAIN', $k_path_main); define ('K_PATH_MAIN', $k_path_main);
}
// Automatic calculation for the following K_PATH_URL constant if (!defined('K_PATH_URL')) {
$k_path_url = $k_path_main; // default value for console mode // Automatic calculation for the following K_PATH_URL constant
if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) { $k_path_url = K_PATH_MAIN; // default value for console mode
if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') { if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) {
$k_path_url = 'https://'; if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') {
} else { $k_path_url = 'https://';
$k_path_url = 'http://'; } 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)));
} }
$k_path_url .= $_SERVER['HTTP_HOST'];
$k_path_url .= str_replace( '\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1)));
}
/** /**
* URL path to tcpdf installation folder (http://localhost/tcpdf/). * URL path to tcpdf installation folder (http://localhost/tcpdf/).
* By default it is automatically calculated but you can also set it as a fixed string to improve performances. * By default it is automatically calculated but you can also set it as a fixed string to improve performances.
*/ */
define ('K_PATH_URL', $k_path_url); define ('K_PATH_URL', $k_path_url);
}
/** /**
* path for PDF fonts * path for PDF fonts
...@@ -242,6 +235,7 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { ...@@ -242,6 +235,7 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
define('K_TCPDF_CALLS_IN_HTML', true); define('K_TCPDF_CALLS_IN_HTML', true);
} }
// define the constant K_TCPDF_EXTERNAL_CONFIG to ignore tcpdf's default settings
define('K_TCPDF_EXTERNAL_CONFIG', true); define('K_TCPDF_EXTERNAL_CONFIG', true);
//============================================================+ //============================================================+
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter