loganalyzer/include/constants_filters.php
Andre Lorbach 8ff4e1b97e -Added files for filter helper frontend code, needed to display and configured
the filters properly. The real filtering will be done in tog logstream facility.
-Modified index page, added first filters for configuration.
2008-03-12 18:46:19 +01:00

31 lines
840 B
PHP

<?php
/*
*********************************************************************
* Copyright by Adiscon GmbH | 2008! *
* -> www.phplogcon.org <- *
* *
* Use this script at your own risk! *
* ----------------------------------------------------------------- *
* Some constants *
* *
* -> Stuff which has to be static and predefined *
* *
* All directives are explained within this file *
*********************************************************************
*/
// --- Avoid directly accessing this file!
if ( !defined('IN_PHPLOGCON') )
{
die('Hacking attempt');
exit;
}
// ---
// --- Some custom defines
define('DATEMODE_ALL', 1);
define('DATEMODE_RANGE', 2);
define('DATEMODE_LASTX', 3);
// ---
?>