PhpWind教程:修改默认评分显示顺序_for all_PhpWind教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!


比如默认评分是威望在前面,想修改金钱或其他积分类型在前面,修改如下

修改文件: operate.php



7.3.2版本修改方法:
查找
$creditselect .= '';
修改为:
$creditselect .= '';
//rvrc可以改成其他的,如money表示金钱,rvrc表示威望


7.0版本修改方法:
找到
foreach ($credittype as $key => $cid) {
   if (isset($credit->cType[$cid])) {
   $creditselect .= '';
修改为
foreach ($credittype as $key => $cid) {
   if (isset($credit->cType[$cid])) {
    if($cid == 'money'){//这个自己改money金钱,rvrc威望
     $defaultcid = 'selected';
    }else{
     $defaultcid = '';
    }
    $creditselect .= '';

6.3.2版本修改方法
找到


foreach ($credittype as $key=>$cid) {


if (isset($cType[$cid])) {


$creditselect .= ''.$cType[$cid].'';




修改为:


foreach ($credittype as $key=>$cid) {


if (isset($cType[$cid])) {


if($cType[$cid] == '好评度'){//这个自己改如金钱、威望等


$defaultcid = 'selected';


}else{


$defaultcid = '';


}


$creditselect .= ''.$cType[$cid].'';






查看更多 PhpWind教程  PhpWind模板风格

来源:Phpwind//所属分类:PhpWind教程/更新时间:2012-06-06
相关PhpWind教程