操作
Enhancement(機能追加・改善) #2657
未完了携帯版でコミュニティ検索ページに「コミュニティ説明文」を追加する
開始日:
2011-12-02
期日:
進捗率:
0%
予定工数:
説明
ファイル
Yuya Watanabe さんがほぼ13年前に更新
- ファイル スクリーンショット.png スクリーンショット.png を追加
とりあえず改善案を示しておきます.
下記コードはコミュニティ名の次の行に説明文を追加する実装となっています.
diff --git a/apps/mobile_frontend/modules/community/templates/searchSuccess.php b/apps/mobile_frontend/modules/community/templates/searchSuccess.php index 89407a2..6b8880e 100644 --- a/apps/mobile_frontend/modules/community/templates/searchSuccess.php +++ b/apps/mobile_frontend/modules/community/templates/searchSuccess.php @@ -9,7 +9,13 @@ $list = array(); foreach ($pager->getResults() as $community) { - $list[] = link_to(sprintf('%s(%d)', $community->getName(), $community->countCommunityMembers()), '@community_home?id='.$community->getId()); + $str = link_to(sprintf('%s(%d)', $community->getName(), $community->countCommunityMembers()), '@community_home?id='.$community->getId()); + $description = $community->getConfig('description'); + if ($description) + { + $str .= "<br>".$description; + } + $list[] = $str; } $option = array( 'border' => true,
!http://redmine.openpne.jp/attachments/380/スクリーンショット.png!
操作