Ejemplo n.º 1
0
 function execute($requests)
 {
     $u = $GLOBALS['KTAI_C_MEMBER_ID'];
     // --- リクエスト変数
     $nickname = $requests['nickname'];
     $birth_year = $requests['birth_year'];
     $birth_month = $requests['birth_month'];
     $birth_day = $requests['birth_day'];
     $page = $requests['page'];
     // ----------
     $profiles = array();
     if ($_REQUEST['profile']) {
         $profiles = db_member_search_check_profile($_REQUEST['profile']);
     }
     $this->set('profiles', $profiles);
     $limit = 10;
     $this->set('page', $page);
     //検索デフォルト値表示用
     $cond = array('birth_year' => $birth_year, 'birth_month' => $birth_month, 'birth_day' => $birth_day);
     $cond_like = array('nickname' => $nickname);
     $this->set('cond', array_merge($cond, $cond_like));
     $result = db_member_search($cond, $cond_like, $limit, $page, $u, $profiles);
     $this->set('target_friend_list', $result[0]);
     $pager = array('page_prev' => $result[1], 'page_next' => $result[2], 'total_num' => $result[3]);
     $pager["disp_start"] = $limit * ($page - 1) + 1;
     if (($disp_end = $limit * $page) > $pager['total_num']) {
         $pager['disp_end'] = $pager['total_num'];
     } else {
         $pager['disp_end'] = $disp_end;
     }
     $this->set("pager", $pager);
     $tmp = array();
     foreach ($cond as $key => $value) {
         if ($value) {
             $tmp[] = $key . '=' . urlencode(mb_convert_encoding($value, 'SJIS-win', 'UTF-8'));
         }
     }
     foreach ($cond_like as $key => $value) {
         if ($value) {
             $tmp[] = $key . '=' . urlencode(mb_convert_encoding($value, 'SJIS-win', 'UTF-8'));
         }
     }
     foreach ($profiles as $key => $value) {
         if ($value['c_profile_option_id']) {
             $v = $value['c_profile_option_id'];
         } else {
             $v = urlencode(mb_convert_encoding($value['value'], 'SJIS-win', 'UTF-8'));
         }
         $tmp[] = urlencode("profile[{$key}]") . '=' . $v;
     }
     $search_condition = implode("&", $tmp);
     $this->set("search_condition", $search_condition);
     $this->set('profile_list', db_member_c_profile_list());
     return 'success';
 }
Ejemplo n.º 2
0
 function execute($requests)
 {
     $u = $GLOBALS['AUTH']->uid();
     // --- リクエスト変数
     $page = $requests['page'];
     $birth_year = $requests['birth_year'];
     $birth_month = $requests['birth_month'];
     $birth_day = $requests['birth_day'];
     $image = $requests['image'];
     $nickname = $requests['nickname'];
     // ----------
     $profiles = array();
     if ($_REQUEST['profile']) {
         $profiles = db_member_search_check_profile($_REQUEST['profile']);
     }
     $limit = 20;
     $this->set("page", $page);
     $cond = array('birth_year' => $birth_year, 'birth_month' => $birth_month, 'birth_day' => $birth_day, 'image' => $image);
     $cond_like = array('nickname' => $nickname);
     $result = db_member_search($cond, $cond_like, $limit, $page, $u, $profiles);
     $this->set("target_friend_list", $result[0]);
     $pager = array("page_prev" => $result[1], "page_next" => $result[2], "total_num" => $result[3]);
     $pager["disp_start"] = $limit * ($page - 1) + 1;
     if (($disp_end = $limit * $page) > $pager['total_num']) {
         $pager['disp_end'] = $pager['total_num'];
     } else {
         $pager['disp_end'] = $disp_end;
     }
     $this->set("pager", $pager);
     $tmp = array();
     foreach ($cond as $key => $value) {
         if ($value) {
             $tmp[] = "{$key}=" . urlencode($value);
         }
     }
     foreach ($cond_like as $key => $value) {
         if ($value) {
             $tmp[] = "{$key}=" . urlencode($value);
         }
     }
     foreach ($profiles as $key => $value) {
         if ($value['c_profile_option_id']) {
             $v = $value['c_profile_option_id'];
         } else {
             $v = urlencode($value['value']);
         }
         $tmp[] = urlencode("profile[{$key}]") . "={$v}";
     }
     $search_condition = implode("&", $tmp);
     $this->set("search_condition", $search_condition);
     $this->set('inc_navi', fetch_inc_navi("h"));
     return 'success';
 }
Ejemplo n.º 3
0
function p_h_search_result_search($cond, $cond_like, $page_size, $page, $c_member_id, $profiles)
{
    return db_member_search($cond, $cond_like, $page_size, $page, $c_member_id, $profiles);
}