pkgsrc/www/php-glpi/files/config_path.php
hauke 9d00ed31e0 Update www/php-glpi to v9.2.1
Upstream says:

You'll find below the changes of this bugfixes version:

- Rework mail attachments for notifications (inline images are now handled, ...),
- Fix ticket reopening,
- Fix operating system update on sub-entities,
- Fix issues on knowledge base items removal and display,
- Unset autoclose delay on fresh install,
- Improve private saved searches (with entities),
- Fix carriage return issues on tickets,
- Fix massive actions on operating systems,
- Fix migration issues from 9.1 and 9.2,
- Add support for other cache methods than APCu,
- Fix linear amortize calculation,
- Fix mail collector attachments owner,
- And many more!

Full ChangeLog:
<https://github.com/glpi-project/glpi/milestone/21?closed=1>
2017-11-17 11:07:39 +00:00

37 lines
1.2 KiB
PHP

<?php
// $NetBSD: config_path.php,v 1.2 2017/11/17 11:07:39 hauke Exp $
//
// pkgsrc GLPI path setup file, see
// <http://glpi-developer-documentation.readthedocs.io/en/master/packaging.html>
// Configuration
define('GLPI_CONFIG_DIR', '@PKG_SYSCONFDIR@');
// Runtime Data
define('GLPI_DOC_DIR', '@VARBASE@/glpi');
define('GLPI_CACHE_DIR', GLPI_DOC_DIR . '/_cache');
define('GLPI_CRON_DIR', GLPI_DOC_DIR . '/_cron');
define('GLPI_DUMP_DIR', GLPI_DOC_DIR . '/_dumps');
define('GLPI_GRAPH_DIR', GLPI_DOC_DIR . '/_graphs');
define('GLPI_LOCK_DIR', GLPI_DOC_DIR . '/_lock');
define('GLPI_PICTURE_DIR', GLPI_DOC_DIR . '/_pictures');
define('GLPI_PLUGIN_DOC_DIR', GLPI_DOC_DIR . '/_plugins');
define('GLPI_RSS_DIR', GLPI_DOC_DIR . '/_rss');
define('GLPI_SESSION_DIR', GLPI_DOC_DIR . '/_sessions');
define('GLPI_TMP_DIR', GLPI_DOC_DIR . '/_tmp');
define('GLPI_UPLOAD_DIR', GLPI_DOC_DIR . '/_uploads');
// Log file
define('GLPI_LOG_DIR', '@VARBASE@/log/glpi');
// System libraries
// htmlawed not in pkgsrc - built-in, anyway?
//define('GLPI_HTMLAWED', '@PREFIX@/share/php/htmLawed/htmLawed.php');
// Fonts
// fonts/freefont-ttf
define('GLPI_FONT_FREESANS', '@PREFIX@/share/fonts/X11/TTF/FreeSans.ttf');
// Use system cron
define('GLPI_SYSTEM_CRON', true);