Project

General

Profile

1 560 Ruebenwurz
<?php
2 1375 FrankH
/**
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$
13 1457 Luisehahne
 * @filesource		$HeadURL$
14
 * @lastmodified    $Date$
15 1538 Luisehahne
 * @description
16 1375 FrankH
 */
17 560 Ruebenwurz
18
require('../../config.php');
19
20
// Include WB admin wrapper script
21
require(WB_PATH.'/modules/admin.php');
22
23 1745 Luisehahne
$sec_anchor = '#'.(defined( 'SEC_ANCHOR' ) && ( SEC_ANCHOR != '' )  ? SEC_ANCHOR.$section_id : 'section_'.$section_id );
24 1553 Luisehahne
25 560 Ruebenwurz
// 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 1375 FrankH
	$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 560 Ruebenwurz
} else {
41 1375 FrankH
	$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 560 Ruebenwurz
}
43
44
// Print admin footer
45
$admin->print_footer();