本文整理汇总了PHP中VTCacheUtils::updateCurrencyInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP VTCacheUtils::updateCurrencyInfo方法的具体用法?PHP VTCacheUtils::updateCurrencyInfo怎么用?PHP VTCacheUtils::updateCurrencyInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VTCacheUtils
的用法示例。
在下文中一共展示了VTCacheUtils::updateCurrencyInfo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getCurrencyName
/** Function to get the Currency name from the vtiger_currency_info
* @param $currencyid -- vtiger_currencyid:: Type integer
* @returns $currencyname -- Currency Name:: Type varchar
*
*/
function getCurrencyName($currencyid, $show_symbol = true)
{
global $log;
$log->debug("Entering getCurrencyName(" . $currencyid . ") method ...");
// Look at cache first
$currencyinfo = VTCacheUtils::lookupCurrencyInfo($currencyid);
if ($currencyinfo === false) {
global $adb;
$sql1 = "select * from vtiger_currency_info where id= ?";
$result = $adb->pquery($sql1, array($currencyid));
$resultinfo = $adb->fetch_array($result);
// Update cache
VTCacheUtils::updateCurrencyInfo($currencyid, $resultinfo['currency_name'], $resultinfo['currency_code'], $resultinfo['currency_symbol'], $resultinfo['conversion_rate']);
// Re-look at the cache now
$currencyinfo = VTCacheUtils::lookupCurrencyInfo($currencyid);
}
$currencyname = $currencyinfo['name'];
$curr_symbol = $currencyinfo['symbol'];
$log->debug("Exiting getCurrencyName method ...");
if ($show_symbol) {
return getTranslatedCurrencyString($currencyname) . ' : ' . $curr_symbol;
} else {
return $currencyname;
}
// NOTE: Without symbol the value could be used for filtering/lookup hence avoiding the translation
}
示例2: getCurrencyInfo
function getCurrencyInfo($currencyid)
{
$currencyinfo = VTCacheUtils::lookupCurrencyInfo($currencyid);
if ($currencyinfo === false) {
global $adb;
$sql1 = "select * from vtiger_currency_info where id= ?";
$result = $adb->pquery($sql1, array($currencyid));
$resultinfo = $adb->fetch_array($result);
// Update cache
VTCacheUtils::updateCurrencyInfo($currencyid, $resultinfo['currency_name'], $resultinfo['currency_code'], $resultinfo['currency_symbol'], $resultinfo['conversion_rate']);
// Re-look at the cache now
$currencyinfo = VTCacheUtils::lookupCurrencyInfo($currencyid);
}
return $currencyinfo;
}