コード例 #1
0
ファイル: postlookup.php プロジェクト: akmnhm/tabi_log
 public function action_p($pid)
 {
     $this->template->title = "旅ログ";
     $ret = Model_Members_General::getPost($pid);
     $first = array_shift($ret);
     $first['name'] = $this->viewer_info['name'];
     $first['itta'] = Model_Members_General::countItta($pid);
     $first['ikitai'] = Model_Members_General::countIkitai($pid);
     $first['revnum'] = Model_Members_General::countReview($pid);
     $first['msg'] = $this->msg;
     $this->template->content = View::forge('members/postlookup', $first);
 }