0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
Smarty
/
templates
/
[
Home
]
File: UserListView.tpl
{*<!-- /********************************************************************************* ** 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. * ********************************************************************************/ -->*} <script language="JAVASCRIPT" type="text/javascript" src="include/js/smoothscroll.js"></script> <br> <table align="center" border="0" cellpadding="0" cellspacing="0" width="98%"> <tbody><tr> <td valign="top"><img src="{$IMAGE_PATH}showPanelTopLeft.gif"></td> <td class="showPanelBg" style="padding: 10px;" valign="top" width="100%"> <form action="index.php" method="post" name="EditView" id="form"> <input type='hidden' name='module' value='Users'> <input type='hidden' name='action' value='EditView'> <input type='hidden' name='return_action' value='ListView'> <input type='hidden' name='return_module' value='Users'> <input type='hidden' name='parenttab' value='Settings'> <br> <div align=center> {include file='SetMenu.tpl'} <!-- DISPLAY --> <table border=0 cellspacing=0 cellpadding=5 width=100% class="settingsSelUITopLine"> <tr> <td width=50 rowspan=2 valign=top><img src="{$IMAGE_PATH}ico-users.gif" alt="{$MOD.LBL_USERS}" width="48" height="48" border=0 title="{$MOD.LBL_USERS}"></td> <td class=heading2 valign=bottom><b><a href="index.php?module=Settings&action=index&parenttab=Settings">{$MOD.LBL_SETTINGS}</a> > {$MOD.LBL_USERS}</b></td> </tr> <tr> <td valign=top class="small">{$MOD.LBL_USER_DESCRIPTION}</td> </tr> </table> <br> <table border=0 cellspacing=0 cellpadding=10 width=100% > <tr> <td> <div id="ListViewContents"> {include file="UserListViewContents.tpl"} </div> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </div> </td> <td valign="top"><img src="{$IMAGE_PATH}showPanelTopRight.gif"></td> </tr> </tbody> </form> </table> <div id="tempdiv" style="display:block;position:absolute;left:350px;top:200px;"></div> {literal} <script> function getListViewEntries_js(module,url) { $("status").style.display="inline"; new Ajax.Request( 'index.php', {queue: {position: 'end', scope: 'command'}, method: 'post', postBody: 'module=Users&action=UsersAjax&file=ListView&ajax=true&'+url, onComplete: function(response) { $("status").style.display="none"; $("ListViewContents").innerHTML= response.responseText; } } ); } function deleteUser(obj,userid) { $("status").style.display="inline"; new Ajax.Request( 'index.php', {queue: {position: 'end', scope: 'command'}, method: 'post', postBody: 'action=UsersAjax&file=UserDeleteStep1&return_action=ListView&return_module=Users&module=Users&parenttab=Settings&record='+userid, onComplete: function(response) { $("status").style.display="none"; $("tempdiv").innerHTML= response.responseText; fnvshobj(obj,"tempdiv"); } } ); } function transferUser(del_userid) { $("status").style.display="inline"; $("DeleteLay").style.display="none"; var trans_userid=$('transfer_user_id').options[$('transfer_user_id').options.selectedIndex].value; new Ajax.Request( 'index.php', {queue: {position: 'end', scope: 'command'}, method: 'post', postBody: 'module=Users&action=UsersAjax&file=DeleteUser&ajax=true&delete_user_id='+del_userid+'&transfer_user_id='+trans_userid, onComplete: function(response) { $("status").style.display="none"; $("ListViewContents").innerHTML= response.responseText; } } ); } </script> {/literal}