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
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
10 years ago
Commit
fa9b7a73d33192b2e4a17869ab183185f7834ba6
1 parent
74e09d33
添加是否推荐app下载链接标志位
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
2 deletions
library/Action/AbstractAction.php
yohobuy/m.yohobuy.com/application/controllers/Boys.php
yohobuy/m.yohobuy.com/application/controllers/Girls.php
yohobuy/m.yohobuy.com/application/controllers/Index.php
yohobuy/m.yohobuy.com/application/controllers/Kids.php
yohobuy/m.yohobuy.com/application/controllers/Lifestyle.php
library/Action/AbstractAction.php
View file @
fa9b7a7
...
...
@@ -333,7 +333,7 @@ class AbstractAction extends Controller_Abstract
*/
protected
function
setNavFooter
()
{
$footer
=
array
(
'showDownloadApp'
=>
true
);
$footer
=
array
();
// 已登录 @todo
$name
=
$this
->
getUname
();
...
...
yohobuy/m.yohobuy.com/application/controllers/Boys.php
View file @
fa9b7a7
...
...
@@ -26,6 +26,7 @@ class BoysController extends AbstractAction
// 渲染模板并输出
$this
->
_view
->
display
(
'index'
,
array
(
'boysHomePage'
=>
true
,
'showDownloadApp'
=>
true
,
'maybeLike'
=>
true
,
'content'
=>
Index\HomeModel
::
getBoysFloor
()
));
...
...
yohobuy/m.yohobuy.com/application/controllers/Girls.php
View file @
fa9b7a7
...
...
@@ -26,6 +26,7 @@ class GirlsController extends AbstractAction
// 渲染模板并输出
$this
->
_view
->
display
(
'index'
,
array
(
'grilsHomePage'
=>
true
,
'showDownloadApp'
=>
true
,
'maybeLike'
=>
true
,
'content'
=>
Index\HomeModel
::
getGirlsFloor
()
));
...
...
yohobuy/m.yohobuy.com/application/controllers/Index.php
View file @
fa9b7a7
...
...
@@ -19,7 +19,8 @@ class IndexController extends AbstractAction
// 渲染模板
$this
->
_view
->
display
(
'index'
,
array
(
'background'
=>
Index\HomeModel
::
getBgImage
(),
'channelPage'
=>
true
'channelPage'
=>
true
,
'showDownloadApp'
=>
true
));
}
...
...
yohobuy/m.yohobuy.com/application/controllers/Kids.php
View file @
fa9b7a7
...
...
@@ -26,6 +26,7 @@ class KidsController extends AbstractAction
// 渲染模板并输出
$this
->
_view
->
display
(
'index'
,
array
(
'kidsHomePage'
=>
true
,
'showDownloadApp'
=>
true
,
'maybeLike'
=>
true
,
'content'
=>
Index\HomeModel
::
getKidsFloor
()
));
...
...
yohobuy/m.yohobuy.com/application/controllers/Lifestyle.php
View file @
fa9b7a7
...
...
@@ -26,6 +26,7 @@ class LifestyleController extends AbstractAction
// 渲染模板并输出
$this
->
_view
->
display
(
'index'
,
array
(
'lifestyleHomePage'
=>
true
,
'showDownloadApp'
=>
true
,
'maybeLike'
=>
true
,
'content'
=>
Index\HomeModel
::
getLifestyleFloor
()
));
...
...
Please
register
or
login
to post a comment