chengkun
2025-04-29 a34a90f03cecc7658231547270f8036bb5affe4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
class Smarty_Internal_Compile_specialcom extends Smarty_Internal_CompileBase{
    public $required_attributes = array('item');
    public $optional_attributes = array('title', 'key', 'id', 'ispage', 'limit','status','namelen','jobnamelen');
    public $shorttag_order = array('from', 'item', 'key', 'name');
    public function compile($args, $compiler, $parameter){
        $_attr = $this->getAttributes($compiler, $args);
 
        $from = $_attr['from'];
        $item = $_attr['item'];
        $name = $_attr['item'];
        $name=str_replace('\'','',$name);
        $name=$name?$name:'list';$name='$'.$name;
        if (!strncmp("\$_smarty_tpl->tpl_vars[$item]", $from, strlen($item) + 24)) {
            $compiler->trigger_template_error("item variable {$item} may not be the same variable as at 'from'", $compiler->lex->taglineno);
        }
        //自定义标签 START
        $OutputStr='global $db,$db_config,$config;$paramer='.ArrayToString($_attr,true).';'.$name.'=array();
        //处理传入参数,并且构造分页参数
        $ParamerArr = GetSmarty($paramer,$_GET);
        $paramer = $ParamerArr[arr];
        $Purl =  $ParamerArr[purl];
        global $ModuleName;
        if(!$Purl["m"]){
            $Purl["m"]=$ModuleName;
        }
        $paramer[\'id\']=(int)$paramer[\'id\'];
        $where = "`status`=\'1\' and `sid`=\'".$paramer[\'id\']."\'";
        //排序字段默认为更新时间
        if($paramer[\'order\']){
            $order = " ORDER BY `".str_replace("\'","",$paramer[order])."`";
        }else{
            $order = " ORDER BY sort ";
        }
        //排序规则 默认为倒序
        if($paramer[\'sort\']){
            $sort = $paramer[\'sort\'];
        }else{
            $sort = " desc";
        }
        //查询条数
        if($paramer[limit]){
            $limit=" LIMIT ".$paramer[limit];
        }
        //自定义查询条件,默认取代上面任何参数直接使用该语句
        if($paramer[where]){
            $where = $paramer[where];
        }
        if($paramer[ispage]){
            $limit = PageNav($paramer,$_GET,"special_com",$where,$Purl,\'\',\'0\',$_smarty_tpl);
        }
        $where.=$order.$sort.$limit;
        '.$name.'=$db->select_all("special_com",$where);
        $time=time();
        if(is_array('.$name.')&&'.$name.'){
            include(PLUS_PATH."/com.cache.php");
            include(PLUS_PATH."/city.cache.php");
            include(PLUS_PATH."/industry.cache.php");
            $uid=$jobinfo=array();
            foreach('.$name.' as $val){
                $uid[]=$val[\'uid\'];
            }
            $company=$db->select_all("company","`uid` in(".@implode(\',\',$uid).")","`uid`,`name`,`shortname`,`logo`,`provinceid`,`cityid`,`hy`,`pr`,`mun`,`content`");
            $job=$db->select_all("company_job","`uid` in(".@implode(\',\',$uid).") and `sdate`<\'$time\' and `state`=1 AND `status`=0 order by `lastupdate` desc","`uid`,`name`,`id`,`minsalary`,`maxsalary`,`exp`,`edu`");
            if($job&&is_array($job)){
                foreach($job as $k=>$v){
                    if($v[minsalary]&&$v[maxsalary]){
                        if($config[\'resume_salarytype\']==1){
                            $v[job_salary] =$v[minsalary]."-".$v[maxsalary]."元";
                        }else{
                            if($v[maxsalary]<1000){
                                if($config[\'resume_salarytype\']==2){
                                    $v[job_salary] = "1千以下";
                                }elseif($config[\'resume_salarytype\']==3){
                                    $v[job_salary] = "1K以下";
                                }elseif($config[\'resume_salarytype\']==4){
                                    $v[job_salary] = "1k以下";
                                }
 
                            }else{
                                $v[job_salary] = changeSalary($v[minsalary])."-".changeSalary($v[maxsalary]);
                            }
                        }
                    }elseif($v[minsalary]){
                        if($config[\'resume_salarytype\']==1){
                            $v[job_salary] =$v[minsalary];
                        }else{
                            $v[job_salary] = changeSalary($v[minsalary]);
                        }
                    }else{
                        $v[job_salary] ="面议";
                    }
                    $v[\'edu_n\']=$comclass_name[$v[\'edu\']];
                    $v[\'exp_n\']=$comclass_name[$v[\'exp\']];
                    if($paramer[jobnamelen]){
                        $v[name_n] = mb_substr($v[\'name\'],0,$paramer[jobnamelen],"utf-8");
                    }
                    $v[\'joburl\']=Url("job",array("c"=>"comapply","id"=>$v[id]));
                    $jobinfo[$v[\'uid\']][]=$v;
                }
            }
            foreach('.$name.' as $key=>$value){
                foreach($company as $val){
                    if($value[\'uid\']==$val[\'uid\']){
                        if($val[\'shortname\']){
                            '.$name.'[$key][name] =$val[\'shortname\'];
                        }
                        if($paramer[namelen]){
                            if($val[\'shortname\']){
                                '.$name.'[$key][name_n] = mb_substr($val[\'shortname\'],0,$paramer[namelen],"utf-8");
                            }else{
                                '.$name.'[$key][name_n] = mb_substr($val[\'name\'],0,$paramer[namelen],"utf-8");
                            }
                        }
                        '.$name.'[$key][\'content\']=mb_substr(strip_tags($val[\'content\']),0,50,"utf-8");
                        '.$name.'[$key][\'provinceid\']=$city_name[$val[\'provinceid\']];
                        '.$name.'[$key][\'cityid\']=$city_name[$val[\'cityid\']];
                        '.$name.'[$key][\'hy\']=$val[\'hy\'];
                        '.$name.'[$key][\'hyname\']=$industry_name[$val[\'hy\']];
                        '.$name.'[$key][\'pr\']=$comclass_name[$val[\'pr\']];
                        '.$name.'[$key][\'mun\']=$comclass_name[$val[\'mun\']];
                        '.$name.'[$key][\'name\']=$val[\'name\'];
                        '.$name.'[$key][\'logo\'] = checkpic($val[\'logo\'],$config[\'sy_unit_icon\']);
                        '.$name.'[$key][\'comurl\']=Url("company",array("c"=>"show","id"=>$val[uid]));
                    }
                }
                '.$name.'[$key][\'jobnum\']=count($jobinfo[$value[\'uid\']]);
                '.$name.'[$key][\'jobs\']=$jobinfo[$value[\'uid\']];
            }
        }';
        //自定义标签 END
       // global $DiyTagOutputStr;
       // $DiyTagOutputStr[]=$OutputStr;
        return SmartyOutputStr($this,$compiler,$_attr,'specialcom',$name,$OutputStr,$name);
    }
}
class Smarty_Internal_Compile_specialcomelse extends Smarty_Internal_CompileBase{
    public function compile($args, $compiler, $parameter){
        $_attr = $this->getAttributes($compiler, $args);
 
        list($openTag, $nocache, $item, $key) = $this->closeTag($compiler, array('specialcom'));
        $this->openTag($compiler, 'specialcomelse', array('specialcomelse', $nocache, $item, $key));
 
        return "<?php }\nif (!\$_smarty_tpl->tpl_vars[$item]->_loop) {\n?>";
    }
}
class Smarty_Internal_Compile_specialcomclose extends Smarty_Internal_CompileBase{
    public function compile($args, $compiler, $parameter){
        $_attr = $this->getAttributes($compiler, $args);
        if ($compiler->nocache) {
            $compiler->tag_nocache = true;
        }
 
        list($openTag, $compiler->nocache, $item, $key) = $this->closeTag($compiler, array('specialcom', 'specialcomelse'));
 
        return "<?php } ?>";
    }
}