Project

General

Profile

1
<?php
2

    
3
// $Id: info.php 561 2008-01-18 20:48:09Z Ruebenwurzel $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2008, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

    
26
/*
27
The Website Baker Project would like to thank Rudolph Lartey <www.carbonect.com>
28
for his contributions to this module - adding extra field types
29
*/
30

    
31
/*
32
revision:
33
2.6.2.0 21 jan 2007
34
	minor fixes in the search tabel entries
35
2.6.1.9 24 dez 2006
36
	adapted all files to be compatible with 2.6.5
37
2.6.1.8 03 oct 2006
38
	fixed double )) in save_field.php line 76
39
2.6.1.7 24 jan 2006
40
	added header to modify_fields
41
	removed a typo (captcha)
42
2.6.1.6 23 jan 2006
43
	added exit(0); after each header("Location: ...) call
44
	added language text for 'none' thanks to Ruebenwurzel
45
2.6.1.5 23 jan 2006
46
    added anti caching to captcha
47
    changed the way thankyou page works, if chosen page is none, mail still could be sent, thank you message is shown!
48
    
49
2.6.1.4 22 jan 2006
50
    added email to mailto/from selected fields  -> Ticket #118 
51
    removed last separator in radiobutton and checkbox 
52
2.6.1.3 21 jan 2006
53
    restored thankyou text
54
    fixed mail lines, format of maillines -> Ticket #86
55
    fixed max_submissions -> Ticket #115
56
    fixed mailto/from selected fields (only textfields) -> Ticket #118 
57
2.6.1.2 16 jan 2006
58
    fixed ' in websitetitle
59
2.6.1.1 14 jan 2006
60
    changed thank you text to thank you page 
61
    added thank you mail
62
    changed behaviour of adding fields
63
*/
64
/*
65
todo:
66
- display of fieldlengths as variable, 
67
- back after error with filled in stuff?
68
- validation link for submissions???
69
*/ 
70

    
71
$module_directory = 'form';
72
$module_name = 'Form';
73
$module_function = 'page';
74
$module_version = '2.6.2.0';
75
$module_platform = '2.6.x';
76
$module_author = 'Ryan Djurovich & Rudolph Lartey - additions John Maats - PCWacht';
77
$module_license = 'GNU General Public License';
78
$module_description = 'This module allows you to create customised online forms, such as a feedback form. '.
79
'Thank-you to Rudolph Lartey who help enhance this module, providing code for extra field types, etc.';
80

    
81
?>
(11-11/23)