0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Settings
/
[
Home
]
File: CurrencyListView.php
<?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('Smarty_setup.php'); require_once('include/database/PearDatabase.php'); require_once('include/utils/UserInfoUtil.php'); global $mod_strings,$adb,$theme,$app_strings; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $smarty=new vtigerCRM_Smarty; $parenttab = $_REQUEST['parenttab']; $sql = "select * from vtiger_currency_info"; $result = $adb->pquery($sql, array()); $temprow = $adb->fetch_array($result); $cnt=1; $currency = Array(); do { $currency_element = Array(); $currency_element['name'] = $temprow["currency_name"]; $currency_element['code'] = $temprow["currency_code"]; $currency_element['symbol'] = $temprow["currency_symbol"]; $currency_element['crate'] = $temprow["conversion_rate"]; $currency_element['status'] = $temprow["currency_status"]; if($temprow["defaultid"] != '-11') { $currency_element['name'] = '<a href=index.php?module=Settings&action=CurrencyEditView&parenttab='.$parenttab.'&record='.$temprow["id"].'&detailview=detail_view>'.$temprow["currency_name"].'</a>'; $currency_element['tool']= '<a href=index.php?module=Settings&action=CurrencyEditView&parenttab='.$parenttab.'&record='.$temprow["id"].'><img src="'.$image_path.'editfield.gif" border="0" alt="'.$app_strings['LBL_EDIT_BUTTON_LABEL'].'" title="'.$app_strings['LBL_EDIT_BUTTON_LABEL'].'"/></a> | <img style="cursor:pointer;" onClick="fnvshobj(this,\'currencydiv\');deleteCurrency(\''.$temprow['id'].'\');" src="'.$image_path.'currencydelete.gif" border="0" alt="'.$app_strings['LBL_DELETE_BUTTON_LABEL'].'" title="'.$app_strings['LBL_DELETE_BUTTON_LABEL'].'"/>'; } else $currency_element['tool']= ''; $currency[] = $currency_element; $cnt++; }while($temprow = $adb->fetch_array($result)); $smarty->assign("PARENTTAB",$parenttab); $smarty->assign("IMAGE_PATH",$image_path); $smarty->assign("MOD",$mod_strings); $smarty->assign("CURRENCY_LIST",$currency); if($_REQUEST['ajax'] !='') $smarty->display("CurrencyListViewEntries.tpl"); else $smarty->display("CurrencyListView.tpl"); ?>