zencart获取安装的运费和支付模块数量

 function zen_count_payment_modules() 

function zen_count_shipping_modules()
�@���zencart函�� �名思�x就�缘檬鞘У�付�o模�K�c�\�M模�K的模�K�担��@�Y�b的是曾�安�b了的模�K�的俊_@���zencart函�底钍滓�的便是��用zen_count_modules �@��函�担��@��函�凳鞘�去指定模�K的�盗浚��@�Y的模�K均指的是安�b了的模�K。�函�翟�includes/functions/functions_general.php 文件中定�x
上面是�@些函�档脑�型代�a
function zen_count_modules($modules = '') {
$count = 0;
if (empty($modules)) return $count;
$modules_array = preg_split('/;/', $modules);
for ($i=0, $n=sizeof($modules_array); $i<$n; $i++) {
$class = substr($modules_array[$i], 0, strrpos($modules_array[$i], '.'));
if (is_object($GLOBALS[$class])) {
if ($GLOBALS[$class]->enabled) {
$count++;
}
}
}
return $count;
}
////
function zen_count_payment_modules() {
return zen_count_modules(MODULE_PAYMENT_INSTALLED);
}
////
function zen_count_shipping_modules() {
return zen_count_modules(MODULE_SHIPPING_INSTALLED);
}

你可能感兴趣的:(安装,模块)