<?php /********************************************************************************* ** The contents of this file are subject to the vtiger CRM Public License Version 1.0 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. * ********************************************************************************/ require_once('include/database/PearDatabase.php'); require_once('include/utils.php'); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Role Details</title> <!--meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"--> </head> <body> <script language="javascript"> function validate() { if( !emptyCheck( "roleName", "Role Name" ) ) return false; return true; } function cancelNewRoleCreation( roleId ) { } </script> <?php $delete_role_id = $_REQUEST['roleid']; $delete_role_name = getRoleName($delete_role_id); ?> <div class="bodyText mandatory"> </div> <form name="newProfileForm" action="index.php"> <input type="hidden" name="module" value="Users"> <input type="hidden" name="action" value="DeleteRole"> <input type="hidden" name="delete_role_id" value="<?php echo $delete_role_id; ?>"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td class="moduleTitle hline">Delete Role:</td> </tr> </tbody> </table> <p></p> <table width="40%" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td> <div align="right"><font class="required">*</font><?php echo $mod_strings['LBL_INDICATES_REQUIRED_FIELD']; ?> </div> </td> </tr> </tbody> </table> <table width="40%" border="0" cellpadding="0" cellspacing="1" class="formOuterBorder"> <tbody> <tr> <td class="formSecHeader" colspan="2">Delete Role</td> </tr> <tr> <td class="dataLabel mandatory">* Role To Be Deleted:</td> <td class="value"><?php echo $delete_role_name; ?></td> </tr> <tr> <td class="dataLabel mandatory">* Transfer Users to Role:</td> <td class="value"> <select class="select" name="transfer_role_id"> <?php global $adb; $sql = "select * from role"; $result = $adb->query($sql); $temprow = $adb->fetch_array($result); do { $role_name=$temprow["name"]; $role_id=$temprow["roleid"]; if($delete_role_id != $role_id) { ?> <option value="<?php echo $role_id ?>"><?php echo $role_name ?></option> <?php } }while($temprow = $adb->fetch_array($result)); ?> </select> </td> </tr> </tbody> </table> <p></p> <table width="40%" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td> <div align="center"> <input type="submit" class="button" name="save" value="<?php echo $app_strings['LBL_SAVE_BUTTON_LABEL'] ?>" tabindex="2"> <input name="cancel" class="button" type="button" value="<?php echo $app_strings['LBL_CANCEL_BUTTON_LABEL'] ?>" onclick="window.history.back()"> </form> </div> </td> </tr> </tbody> </table> </body> </html>