Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         output_filter
6
 * @copyright       WebsiteBaker Org. e.V.
7
 * @author          Christian Sommer
8
 * @author          Dietmar Wöllbrink <dietmar.woellbrink@websitebaker.org>
9
 * @author          Manuela v.d.Decken <manuela@isteam.de>
10
 * @link            http://websitebaker.org/
11
 * @license         http://www.gnu.org/licenses/gpl.html
12
 * @platform        WebsiteBaker 2.8.3-SP7 and higher
13
 * @requirements    PHP 5.6 and higher
14
 * @version         $Id: info.php 2 2017-07-02 15:14:29Z Manuela $
15
 * @filesource      $HeadURL: svn://isteam.dynxs.de/wb/2.10.x/branches/main/modules/output_filter/info.php $
16
 * @lastmodified    $Date: 2017-07-02 17:14:29 +0200 (Sun, 02 Jul 2017) $
17
 *
18
 */
19

    
20
/* -------------------------------------------------------- */
21
// Must include code to stop this file being accessed directly
22
if(defined('WB_PATH') == false) { die('Illegale file access /'.basename(__DIR__).'/'.basename(__FILE__).''); }
23
/* -------------------------------------------------------- */
24

    
25
$module_directory   = 'output_filter';
26
$module_name        = 'Output Filter Frontend v1.1.7';
27
$module_function    = 'tool';
28
$module_version     = '1.1.7';
29
$module_platform    = '2.10.0';
30
$module_author      = 'Christian Sommer(doc), Manuela v.d. Decken(DarkViper), Dietmar Wöllbrink(luisehahne)';
31
$module_license     = 'GNU General Public License';
32
$module_description = 'This Add-On allows to filter the output directly before it is sent to the browser. '
33
                    . 'Each individual filter can be activated/deactivated by the ACP.'
34
                    . 'To add a new filter simply create a new filter file in \'modules/output_filter/filters\' '
35
                    . 'and add it to the \'individual\' section of \'modules/output_filter/index.php\'. '
36
                    . '';
(8-8/14)