Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         Menu Link
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id: info.php 1377 2011-01-12 18:10:27Z FrankH $
14
 * @filesource		$HeadURL: http://svn.websitebaker2.org/branches/2.8.x/wb/modules/wysiwyg/modify.php $
15
 * @lastmodified    $Date: 2011-01-11 20:29:52 +0100 (Di, 11 Jan 2011) $
16
 *
17
 */
18

    
19

    
20
/* History:
21
2.8 - June 2009
22
- Improved the pagelist (thorn)
23
- Added different redirect types 301 or 302 (thorn)
24
- Set platform version 2.8
25

    
26
2.7 - 24. Jan. 2008 - doc
27
- added language support, changed platform to 2.7
28

    
29
2.6.1.1 - 16. Jan. 2008 - thorn
30
- added table mod_menu_link
31
- added install.php, delete.php, add.php
32
- changed wb/index.php: redirect if page is menu_link
33
- removed special-handling of menu_link in: admin/pages/settings2.php
34

    
35
*/
36

    
37
$module_directory = 'menu_link';
38
$module_name = 'Menu Link';
39
$module_function = 'page';
40
$module_version = '2.8';
41
$module_platform = '2.8.x';
42
$module_author = 'Ryan Djurovich, thorn';
43
$module_license = 'GNU General Public License';
44
$module_description = 'This module allows you to insert a link into the menu.';
45

    
46
?>
(4-4/9)