织梦会员空间调用收藏
2018-09-17 来源:爱站科技
如果你对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. '/arc.memberlistview.class.php' );
???? 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'/}
??
?? {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 >
??
????
??????
??????
{dede:datalist} ????????
??????????
??????????
??????????
?????????? div >
??????????
???????? div >
{/dede:datalist} ????????
????????
?????? dd >
???? dl >
?? div >
div >
{dede:include?file='footer.htm'/} body >
html >
|
第三步 在/member/space/你当前所使用的风格目录下的header.htm里的导航中增加
1
|
|
?
以上为增加收藏的列表显示方式,下边是在侧边栏调用最新的10条收藏记录。
?
第一步
将以下代码保存为side_stow.htm,保存在/member/space/你当前所使用的风格目录下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
????
????
??????
?????????? php
???????????????? $dsql->Execute('fl',"Select?*?From?`dede_member_stow`?where?mid='{$_vars['mid']}'?order?by?id?desc?limit?10");
???????????????? while($arr?=?$dsql->GetArray('fl'))
???????????????? {
???????????????????? echo?"
???????????????? }
???????????????? ?>
?????? ul >
???? dd >
dl >
|
?
然后打开当前风格的index.htm 找到
1
|
{dede:include?file='side_links.htm'/} |
在其下方增加
1
|
{dede:include?file='side_stow.htm'/} |
?
完成,更多相关内容请继续关注西部数码技术频道。
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
最新资讯
热门推荐