Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
王水玲
9 years ago
Commit
7cd4b993530337f7c8258d26de76ef6342340bae
2 parents
5c04a0bb
f83a5bbe
Merge branch 'feature/xingchao' of
http://git.dev.yoho.cn/web/yohobuy
into feature/xingchao
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
8 deletions
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Starclass.php
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Starclass.php
View file @
7cd4b99
...
...
@@ -19,10 +19,13 @@ class StarClassController extends AbstractAction
*/
public
function
indexAction
()
{
//设置头部公共导航
$this
->
setNavHeader
(
'星潮教室'
,
true
,
false
);
//获取uid
$uid
=
$this
->
getLoggedUid
();
$uid
=
self
::
getLoggedUid
();
if
(
!
$this
->
_isApp
)
{
//设置头部公共导航
$this
->
setNavHeader
(
'星潮教室'
,
true
,
false
);
}
$this
->
setTitle
(
'星潮教室'
);
//调用模型获得星潮教室首页数据
$data
=
StarClassModel
::
getStarClass
(
$uid
);
//渲染模板
...
...
@@ -39,8 +42,13 @@ class StarClassController extends AbstractAction
*/
public
function
specialAction
()
{
//设置头部公共导航
$this
->
setNavHeader
(
'星潮教室'
,
true
,
false
);
//获取uid
$uid
=
self
::
getLoggedUid
();
if
(
!
$this
->
_isApp
)
{
//设置头部公共导航
$this
->
setNavHeader
(
'星潮教室'
,
true
,
false
);
}
$this
->
setTitle
(
'星潮教室'
);
//调用模型获得星专题数据
$data
=
StarClassModel
::
getspecial
();
...
...
@@ -58,8 +66,13 @@ class StarClassController extends AbstractAction
*/
public
function
collocationAction
()
{
//设置头部公共导航
$this
->
setNavHeader
(
'星潮教室'
,
true
,
false
);
//获取uid
$uid
=
self
::
getLoggedUid
();
if
(
!
$this
->
_isApp
)
{
//设置头部公共导航
$this
->
setNavHeader
(
'星潮教室'
,
true
,
false
);
}
$this
->
setTitle
(
'星潮教室'
);
//调用模板获得星搭配数据
$data
=
StarClassModel
::
getCollocation
();
...
...
@@ -104,7 +117,11 @@ class StarClassController extends AbstractAction
{
//设置头部公共导航(此处返回键调转星潮教室首页)
$url
=
Helpers
::
url
(
'/guang/starclass/index'
);
$this
->
setNavHeader
(
'星潮粉丝榜'
,
$url
,
false
);
if
(
!
$this
->
_isApp
)
{
//设置头部公共导航
$this
->
setNavHeader
(
'星潮粉丝榜'
,
$url
,
false
);
}
$this
->
setTitle
(
'星潮粉丝榜'
);
//根据客户端类型,进行未登录跳转
$uid
=
$this
->
getLoggedUid
();
...
...
Please
register
or
login
to post a comment