mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-25 02:47:47 +02:00
made sure everything is properly under GPLv3
This commit is contained in:
parent
0f0e88a40f
commit
50b6ef381d
6
COPYING
6
COPYING
@ -1,9 +1,3 @@
|
|||||||
phpLogCon is available under the terms of the GNU GPL v3 or above (full
|
|
||||||
text below). If this license is too restrictive for your needs, you
|
|
||||||
may obtain a commercial license from Adiscon. For details, contact
|
|
||||||
sales@adiscon.com.
|
|
||||||
-----------------------------------------------------------------------
|
|
||||||
|
|
||||||
GNU GENERAL PUBLIC LICENSE
|
GNU GENERAL PUBLIC LICENSE
|
||||||
Version 3, 29 June 2007
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* *
|
* *
|
||||||
* Template Class 1.02 *
|
* Template Class 1.02 *
|
||||||
@ -20,6 +17,26 @@
|
|||||||
* by Andre Lorbach *
|
* by Andre Lorbach *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,15 +1,32 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Since php does not support enums we emulate it *
|
* Since php does not support enums we emulate it *
|
||||||
* using a abstract class. *
|
* using a abstract class. *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,15 +1,32 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* LogStream provides access to the log data. Be sure to always *
|
* LogStream provides access to the log data. Be sure to always *
|
||||||
* use LogStream if you want to access a text file or database. *
|
* use LogStream if you want to access a text file or database. *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,15 +1,32 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
* -> www.phplogcon.org <-
|
||||||
* -> www.phplogcon.org <- *
|
* -----------------------------------------------------------------
|
||||||
* *
|
* StreamConfig has the capability to create a specific LogStream
|
||||||
* Use this script at your own risk! *
|
* object depending on a configured LogStream*Config object.
|
||||||
* ----------------------------------------------------------------- *
|
*
|
||||||
* StreamConfig has the capability to create a specific LogStream *
|
* All directives are explained within this file
|
||||||
* object depending on a configured LogStream*Config object. *
|
*
|
||||||
* *
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
* All directives are explained within this file *
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,15 +1,32 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* StreamConfig has the capability to create a specific LogStream *
|
* StreamConfig has the capability to create a specific LogStream *
|
||||||
* object depending on a configured LogStream*Config object. *
|
* object depending on a configured LogStream*Config object. *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Some constants *
|
* Some constants *
|
||||||
* *
|
* *
|
||||||
@ -12,10 +9,30 @@
|
|||||||
* cases this will be plain text files. If we need access to e.g.
|
* cases this will be plain text files. If we need access to e.g.
|
||||||
* zipped files, this will be handled by a separate driver.
|
* zipped files, this will be handled by a separate driver.
|
||||||
*
|
*
|
||||||
* \version 1.0.1 2nd Version
|
* \version 2.0.1 2nd Version
|
||||||
* \version 1.0.0 Init Version
|
* \version 2.0.0 Init Version
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,14 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* LogStream LineParser abstract basic class *
|
* LogStream LineParser abstract basic class *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,14 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* LogStream Parser is used to split syslog messages into fields *
|
* LogStream Parser is used to split syslog messages into fields *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,14 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* LogStream Parser is used to split syslog messages into fields *
|
* LogStream Parser is used to split syslog messages into fields *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Generic Style defintions */
|
/* Generic Style definitions */
|
||||||
.ExpansionPlus
|
.ExpansionPlus
|
||||||
{
|
{
|
||||||
background-image: url("../images/icons/navigate_plus.png");
|
background-image: url("../images/icons/navigate_plus.png");
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Generic Style defintions */
|
/* Generic Style definitions */
|
||||||
.highlight_1
|
.highlight_1
|
||||||
{
|
{
|
||||||
color: #F61313;
|
color: #F61313;
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Some constants *
|
* Some constants *
|
||||||
* *
|
* *
|
||||||
* -> Stuff which has to be static and predefined *
|
* -> Stuff which has to be static and predefined *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Some constants *
|
* Some constants *
|
||||||
* *
|
* *
|
||||||
* -> Stuff which has to be static and predefined *
|
* -> Stuff which has to be static and predefined *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Some constants *
|
* Some constants *
|
||||||
* *
|
* *
|
||||||
* -> Stuff which has to be static and predefined *
|
* -> Stuff which has to be static and predefined *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Some constants *
|
* Some constants *
|
||||||
* *
|
* *
|
||||||
* -> Stuff which has to be static and predefined *
|
* -> Stuff which has to be static and predefined *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Common needed functions *
|
* Common needed functions *
|
||||||
* *
|
* *
|
||||||
* -> *
|
* -> *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,14 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Maintain and read Source Configurations *
|
* Maintain and read Source Configurations *
|
||||||
* *
|
* *
|
||||||
* -> Configuration need variables for the Database connection *
|
* -> Configuration need variables for the Database connection *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* DB Function Helper File *
|
* DB Function Helper File *
|
||||||
* *
|
* *
|
||||||
* -> Needed to establish and maintain the DB connetion *
|
* -> Needed to establish and maintain the DB connetion *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,13 +1,29 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Filter Helper functions for the frontend *
|
* Filter Helper functions for the frontend *
|
||||||
* *
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Helperfunctions for the web frontend *
|
* Helperfunctions for the web frontend *
|
||||||
* *
|
* *
|
||||||
* -> *
|
* -> *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
|
||||||
* -> www.phplogcon.org <- *
|
* -> www.phplogcon.org <- *
|
||||||
* *
|
|
||||||
* Use this script at your own risk! *
|
|
||||||
* ----------------------------------------------------------------- *
|
* ----------------------------------------------------------------- *
|
||||||
* Theme specific functions *
|
* Theme specific functions *
|
||||||
* *
|
* *
|
||||||
* -> *
|
* -> *
|
||||||
* *
|
* *
|
||||||
* All directives are explained within this file *
|
* All directives are explained within this file *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,4 +1,30 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/*
|
||||||
|
*********************************************************************
|
||||||
|
* -> www.phplogcon.org <-
|
||||||
|
* -----------------------------------------------------------------
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
|
*********************************************************************
|
||||||
|
*/
|
||||||
global $content;
|
global $content;
|
||||||
|
|
||||||
// Global Stuff
|
// Global Stuff
|
||||||
@ -8,7 +34,7 @@ $content['LN_GEN_LANGUAGE'] = "Sprache ausw
|
|||||||
$content['LN_GEN_SELECTSOURCE'] = "Select Source";
|
$content['LN_GEN_SELECTSOURCE'] = "Select Source";
|
||||||
|
|
||||||
// Index Site
|
// Index Site
|
||||||
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Warnung! Du hast das Installationsscript 'install.php' noch nicht aus dem UltraStats Hauptordner entfernt!";
|
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Warnung! Du hast das Installationsscript 'install.php' noch nicht aus dem phpLogCon Hauptordner entfernt!";
|
||||||
$content['LN_TOP_NUM'] = "No.";
|
$content['LN_TOP_NUM'] = "No.";
|
||||||
$content['LN_GRID_DATE'] = "Date";
|
$content['LN_GRID_DATE'] = "Date";
|
||||||
$content['LN_GRID_FACILITY'] = "Facility";
|
$content['LN_GRID_FACILITY'] = "Facility";
|
||||||
|
@ -1,4 +1,30 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/*
|
||||||
|
*********************************************************************
|
||||||
|
* -> www.phplogcon.org <-
|
||||||
|
* -----------------------------------------------------------------
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
|
*********************************************************************
|
||||||
|
*/
|
||||||
global $content;
|
global $content;
|
||||||
|
|
||||||
// Global Stuff
|
// Global Stuff
|
||||||
@ -13,7 +39,7 @@ $content['LN_GEN_NEXTPAGE'] = "Next Page";
|
|||||||
$content['LN_GEN_PREVIOUSPAGE'] = "Previous Page";
|
$content['LN_GEN_PREVIOUSPAGE'] = "Previous Page";
|
||||||
|
|
||||||
// Main Index Site
|
// Main Index Site
|
||||||
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Warning! You still have NOT removed the 'install.php' from your PhpLogCon main directory!";
|
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Warning! You still have NOT removed the 'install.php' from your phpLogCon main directory!";
|
||||||
$content['LN_TOP_NUM'] = "No.";
|
$content['LN_TOP_NUM'] = "No.";
|
||||||
$content['LN_TOP_UID'] = "uID";
|
$content['LN_TOP_UID'] = "uID";
|
||||||
$content['LN_GRID_DATE'] = "Date";
|
$content['LN_GRID_DATE'] = "Date";
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
* -> www.phplogcon.org <-
|
||||||
* -> www.phplogcon.org <- *
|
* -----------------------------------------------------------------
|
||||||
* *
|
* Main Index File
|
||||||
* Use this script at your own risk! *
|
*
|
||||||
* ----------------------------------------------------------------- *
|
* -> Loads the main PhpLogCon Site
|
||||||
* Main Index File *
|
*
|
||||||
* *
|
* All directives are explained within this file
|
||||||
* -> Loads the main PhpLogCon Site *
|
*
|
||||||
* *
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
* All directives are explained within this file *
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,16 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
* Copyright by Adiscon GmbH | 2008! *
|
* -> www.phplogcon.org <-
|
||||||
* -> www.phplogcon.org <- *
|
* -----------------------------------------------------------------
|
||||||
* *
|
* Main Index File
|
||||||
* Use this script at your own risk! *
|
*
|
||||||
* ----------------------------------------------------------------- *
|
* -> Loads the main PhpLogCon Site
|
||||||
* Main Index File *
|
*
|
||||||
* *
|
* All directives are explained within this file
|
||||||
* -> Loads the main PhpLogCon Site *
|
*
|
||||||
* *
|
* Copyright (C) 2008 Adiscon GmbH.
|
||||||
* All directives are explained within this file *
|
*
|
||||||
|
* This file is part of phpLogCon.
|
||||||
|
*
|
||||||
|
* PhpLogCon is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PhpLogCon 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with phpLogCon. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* A copy of the GPL can be found in the file "COPYING" in this
|
||||||
|
* distribution.
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user