MembersController.php
1.0 KB
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
<?php
namespace app\portal\controller;
use cmf\controller\HomeBaseController;
use EasyWeChat\Foundation\Application;
use think\Db;
class MembersController extends HomeBaseController{
//显示会员规则
public function members(){
$category_id = Db::name('portal_category_post') -> where('category_id',25) -> find();
$data = Db::name('portal_post') -> where('id',$category_id['post_id']) -> find();
$data['post_content'] = cmf_replace_content_file_url(htmlspecialchars_decode($data['post_content']));
$this -> assign('data',$data);
return $this -> fetch();
}
//显示会员优势
public function members_you(){
$category_id = Db::name('portal_category_post') -> where('category_id',26) -> find();
$data = Db::name('portal_post') -> where('id',$category_id['post_id']) -> find();
$data['post_content'] = cmf_replace_content_file_url(htmlspecialchars_decode($data['post_content']));
$this -> assign('data',$data);
return $this -> fetch();
}
}