Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        module
5
 * @package         Form
6
 * @author          WebsiteBaker Project
7
 * @copyright       2009-2011, Website Baker Org. e.V.
8
 * @link			http://www.websitebaker2.org/
9
 * @license         http://www.gnu.org/licenses/gpl.html
10
 * @platform        WebsiteBaker 2.8.x
11
 * @requirements    PHP 5.2.2 and higher
12
 * @version         $Id: add_field.php 1745 2012-09-08 13:06:55Z Luisehahne $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/modules/form/add_field.php $
14
 * @lastmodified    $Date: 2012-09-08 15:06:55 +0200 (Sat, 08 Sep 2012) $
15
 * @description
16
 */
17

    
18
require('../../config.php');
19

    
20
// Include WB admin wrapper script
21
require(WB_PATH.'/modules/admin.php');
22

    
23
$sec_anchor = '#'.(defined( 'SEC_ANCHOR' ) && ( SEC_ANCHOR != '' )  ? SEC_ANCHOR.$section_id : 'section_'.$section_id );
24

    
25
// Include the ordering class
26
require(WB_PATH.'/framework/class.order.php');
27
// Get new order
28
$order = new order(TABLE_PREFIX.'mod_form_fields', 'position', 'field_id', 'section_id');
29
$position = $order->get_new($section_id);
30

    
31
// Insert new row into database
32
$database->query("INSERT INTO ".TABLE_PREFIX."mod_form_fields (section_id,page_id,position,required) VALUES ('$section_id','$page_id','$position','0')");
33

    
34
// Get the id
35
$field_id = $database->get_one("SELECT LAST_INSERT_ID()");
36

    
37
// Say that a new record has been added, then redirect to modify page
38
if($database->is_error()) {
39
	$admin->print_error($database->get_error(), WB_URL.'/modules/form/modify_field.php?page_id='.$page_id.'&section_id='.$section_id.'&field_id='.$admin->getIDKEY($field_id));
40
} else {
41
	$admin->print_success($TEXT['SUCCESS'],     WB_URL.'/modules/form/modify_field.php?page_id='.$page_id.'&section_id='.$section_id.'&field_id='.$admin->getIDKEY($field_id));
42
}
43

    
44
// Print admin footer
45
$admin->print_footer();
(4-4/25)