getFetchQueryArray($sql);
$history_html = '';
$history_html .= '개인정보 처리방침의 변경
가. 회사는 개인정보처리방침을 개정하는 경우 최소 7일 전에 홈페이지의 공지사항을 통하여 고지할 것입니다.';
if($pdata['total'] > 0){
// 현재 버전의..
$curr_sort = $pdate = $curr_start = '';
$cnt_history = 0;
foreach($pdata['row'] as $k=>$v){
if($v['wm_id'] == $version){
// 순서
$curr_sort = $v['wm_wdate'];
// 개인정보처리방침 내용
$v_privacy = $v['wm_privacy'];
$pdate = $v['wm_pdate']; // 공고일자
$curr_start = $v['wm_sdate']; // 시행일자
}
$first_start = $v['wm_sdate']; // 첫 시행일자
// 현재 버전 이전 것만
if($curr_sort > $v['wm_wdate']){
$cnt_history++;
}
}
$history_html .= '
나. 이 개인정보 처리방침은 '.$curr_start.'부터 적용됩니다.
- 개인정보 처리방침 최초 시행일자: '.$first_start.'
- 개인정보 처리방침 개정 공고일자: '.$pdate;
if($cnt_history > 0){
$history_html .= '
다. 이전의 개인정보 처리방침은 아래에서 확인하실 수 있습니다.
';
foreach($pdata['row'] as $k=>$v){
// 현재 버전 이하만
if($curr_sort > $v['wm_wdate']){
$history_html .= ' '.$v['wm_sdate'].' ~ '.$v['wm_edate'].' 개인정보처리방침
';
}
}
}
}
// 없으면 현재 개인정보처리방침으로 이동
if($cnt_history == 0 && !$curr_sort){
alert('', '/doc/privacy', '');
return;
}
?>
=$history_html?>
}?>