DEDECMS会员空间调用收藏
第一步
打开member/inc/space_action.php
将以下代码加入到最底部
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//我的收藏
else
if
(
$action
==
'stow'
)
{
include_once
(DEDEINC.
'/channelunit.func.php'
);
$sql
=
"SELECT s.*,t.* FROM `dede_member_stow` AS s left join `dede_member_stowtype` AS t on t.stowname=s.type where s.mid='{$_vars['mid']}' order by s.id desc"
;
$dlist
=
new
MemberListview();
$dlist
->pageSize =20;
$dlist
->SetParameter(
"action"
,
$action
);
$dlist
->SetTemplate(DEDEMEMBER.
"/space/{$_vars['spacestyle']}/list_stow.htm"
);
$dlist
->SetSource(
$sql
);
$dlist
->Display();
exit
();
}
第二步
将以下代码保存为list_stow.htm,保存在/member/space/你当前所使用的风格目录下
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
{dede:include file='header.htm'/}
<
div
class
=
"wrapper mT10"
>
<
div
class
=
"west"
>
{dede:include file='side_icon.htm'/}
{dede:include file='side_class.htm'/}
{dede:include file='side_visitor.htm'/}
{dede:include file='side_search.htm'/}
</
div
>
<
div
class
=
"east"
>
<
dl
class
=
"border"
>
<
dt
class
=
"caption"
><
strong
>收藏</
strong
></
dt
>
<
dd
class
=
"body"
>
{dede:datalist}
<
div
class
=
"mp10 dashed"
>
<
div
class
=
"mB10"
>
<
h3
class
=
"fLeft"
><
a
href
=
'archives_do.php?dopost=viewArchives&aid={dede:field.aid/}'
target
=
'_blank'
>{dede:field.title/}</
a
></
h3
>
<
span
class
=
"mL5 aGray"
>({dede:field.addtime function="MyDate('Y-m-d h:i',@me)"/})</
span
>
</
div
>
<
div
class
=
"clearfix pB10"
></
div
>
</
div
>
{/dede:datalist}
<
div
class
=
"fRight mTB10 pd10"
>{dede:pagelist /}</
div
>