1 |
2
|
Manuela
|
<?php
|
2 |
|
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category modules
|
5 |
|
|
* @package JsAdmin
|
6 |
|
|
* @author WebsiteBaker Project, modified by Swen Uth for Website Baker 2.7
|
7 |
|
|
* @copyright (C) 2006, Stepan Riha
|
8 |
|
|
* @copyright WebsiteBaker Org. e.V.
|
9 |
|
|
* @link http://websitebaker.org/
|
10 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
11 |
|
|
* @platform WebsiteBaker 2.8.3
|
12 |
|
|
* @requirements PHP 5.3.6 and higher
|
13 |
|
|
* @version $Id$
|
14 |
|
|
* @filesource $HeadURL$
|
15 |
|
|
* @lastmodified $Date$
|
16 |
|
|
*
|
17 |
|
|
*/
|
18 |
|
|
|
19 |
|
|
/* -------------------------------------------------------- */
|
20 |
|
|
// Must include code to prevent this file from being accessed directly
|
21 |
|
|
if(defined('WB_PATH') == false) { exit('Cannot access '.basename(__DIR__).'/'.basename(__FILE__).' directly'); }
|
22 |
|
|
/* -------------------------------------------------------- */
|
23 |
|
|
|
24 |
|
|
$aJsonRespond['modules'] = $aRequestVars['module'];
|
25 |
|
|
$aJsonRespond['success'] = true;
|
26 |
|
|
$aJsonRespond['modules_dir'] = '/modules/'.$aRequestVars['module'];
|
27 |
|
|
|
28 |
|
|
// Get id
|
29 |
|
|
$table = TABLE_PREFIX.'mod_form_fields';
|
30 |
|
|
$id = (int)$aRequestVars['move_id'];
|
31 |
|
|
$id_field = 'field_id';
|
32 |
|
|
$common_field = 'section_id';
|
33 |
|
|
$sFieldOrderName = 'position';
|
34 |
|
|
$aJsonRespond['message'] = 'Activity position '.$id.' successfully changed';
|
35 |
|
|
// $group = (int)$aRequestVars['section_id'];
|