Source for file module_controls_inc.php
Documentation is available at module_controls_inc.php
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
* Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
include_once( '../kernel/setup_inc.php' );
if (!$gBitUser->hasPermission( 'p_tidbits_configure_modules' )) {
$gBitSmarty->assign('msg', tra("You dont have permission to use this feature"));
$gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'display' ));
/*if (!$gBitSystem->isFeatureActive( 'site_user_assigned_modules' ) && $check_req) {
$gBitSmarty->assign('msg', tra("This feature is disabled").": site_user_assigned_modules");
$gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'display' ));
if (!$gBitUser->isRegistered()) {
$gBitSmarty->assign('msg', tra("You must log in to use this feature"));
$gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'display' ));
$url = $_SERVER["HTTP_REFERER"];
// $debugger->msg('Module control clicked: '.$check_req);
// Make defaults if user still ot configure modules for himself
// if (!$usermoduleslib->user_has_assigned_modules($user))
// $usermoduleslib->create_user_assigned_modules($user);
//$user_id = $gBitUser->getUserId();
// Handle control icon click
if( isset ( $_REQUEST['fMove'] ) && isset ( $_REQUEST['fPackage'] ) && isset ( $_REQUEST['fModule'] ) ) {
switch( $_REQUEST['fMove'] ) {
$gBitThemes->unassignModule( $_REQUEST['fModule'], $user_id, $_REQUEST['fPackage'] );
$gBitThemes->moduleUp( $_REQUEST['fModule'], $user_id, $_REQUEST['fPackage'] );
$gBitThemes->moduleDown( $_REQUEST['fModule'], $user_id, $_REQUEST['fPackage'] );
$gBitThemes->modulePosition( $_REQUEST['fModule'], $user_id, $_REQUEST['fPackage'], 'r' );
$gBitThemes->modulePosition( $_REQUEST['fModule'], $user_id, $_REQUEST['fPackage'], 'l' );
// Remove module movemet paramaters from an URL
// \todo What if 'mc_xxx' arg was not at the end? (if smbd fix URL by hands...)
// should I handle this very special (hack?) case?
// $url = preg_replace('/(.*)(\?|&){1}(mc_up|mc_down|mc_move|mc_unassign)=[^&]*/','\1', $url);
// Fix locaton if parameter was removed...
|