MySQLi 지원 추가 및 SMS5 수정
This commit is contained in:
@ -6,7 +6,6 @@ $menu["menu900"] = array (
|
||||
array('900300', '문자 보내기', ''.G5_SMS5_ADMIN_URL.'/sms_write.php', 'sms_write'),
|
||||
array('900400', '전송내역-건별', ''.G5_SMS5_ADMIN_URL.'/history_list.php', 'sms_history' , 1),
|
||||
array('900410', '전송내역-번호별', ''.G5_SMS5_ADMIN_URL.'/history_num.php', 'sms_history_num' , 1),
|
||||
array('900450', '전송내역-회원', ''.G5_SMS5_ADMIN_URL.'/history_member.php', 'sms_history_mb' , 1),
|
||||
array('900500', '이모티콘 그룹', ''.G5_SMS5_ADMIN_URL.'/form_group.php' , 'emoticon_group'),
|
||||
array('900600', '이모티콘 관리', ''.G5_SMS5_ADMIN_URL.'/form_list.php', 'emoticon_list'),
|
||||
array('900700', '휴대폰번호 그룹', ''.G5_SMS5_ADMIN_URL.'/num_group.php' , 'hp_group', 1),
|
||||
|
||||
@ -69,7 +69,7 @@ $result = sql_query($sql);
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php for ($i=0; $row=mysql_fetch_array($result); $i++) {
|
||||
<?php for ($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
$bg = 'bg'.($i%2);
|
||||
?>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
|
||||
@ -21,7 +21,7 @@ if ($w == "")
|
||||
$sql_common ";
|
||||
sql_query($sql);
|
||||
|
||||
$fa_id = mysql_insert_id();
|
||||
$fa_id = sql_insert_id();
|
||||
}
|
||||
else if ($w == "u")
|
||||
{
|
||||
|
||||
@ -31,7 +31,7 @@ if ($w == "")
|
||||
$sql = " insert {$g5['faq_master_table']} $sql_common ";
|
||||
sql_query($sql);
|
||||
|
||||
$fm_id = mysql_insert_id();
|
||||
$fm_id = sql_insert_id();
|
||||
}
|
||||
else if ($w == "u")
|
||||
{
|
||||
|
||||
@ -93,7 +93,7 @@ $result = sql_query($sql);
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php for ($i=0; $row=mysql_fetch_array($result); $i++) {
|
||||
<?php for ($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
$sql1 = " select COUNT(*) as cnt from {$g5['faq_table']} where fm_id = '{$row['fm_id']}' ";
|
||||
$row1 = sql_fetch($sql1);
|
||||
$cnt = $row1['cnt'];
|
||||
|
||||
@ -51,7 +51,7 @@ $colspan = 7;
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
for ($i=0; $row=mysql_fetch_array($result); $i++) {
|
||||
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
$s_vie = '<a href="./mail_preview.php?ma_id='.$row['ma_id'].'" target="_blank">미리보기</a>';
|
||||
|
||||
$num = number_format($total_count - ($page - 1) * $config['cf_page_rows'] - $i);
|
||||
|
||||
@ -27,7 +27,7 @@ if($w == "")
|
||||
$sql = " insert {$g5['new_win_table']} set $sql_common ";
|
||||
sql_query($sql);
|
||||
|
||||
$nw_id = mysql_insert_id();
|
||||
$nw_id = sql_insert_id();
|
||||
}
|
||||
else if ($w == "u")
|
||||
{
|
||||
|
||||
@ -70,7 +70,7 @@ $result = sql_query($sql);
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
for ($i=0; $row=mysql_fetch_array($result); $i++) {
|
||||
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
$bg = 'bg'.($i%2);
|
||||
|
||||
switch($row['nw_device']) {
|
||||
|
||||
@ -17,7 +17,7 @@ if ($w == '')
|
||||
values ( '{$_POST['po_subject']}', '{$_POST['po_poll1']}', '{$_POST['po_poll2']}', '{$_POST['po_poll3']}', '{$_POST['po_poll4']}', '{$_POST['po_poll5']}', '{$_POST['po_poll6']}', '{$_POST['po_poll7']}', '{$_POST['po_poll8']}', '{$_POST['po_poll9']}', '{$_POST['po_cnt1']}', '{$_POST['po_cnt2']}', '{$_POST['po_cnt3']}', '{$_POST['po_cnt4']}', '{$_POST['po_cnt5']}', '{$_POST['po_cnt6']}', '{$_POST['po_cnt7']}', '{$_POST['po_cnt8']}', '{$_POST['po_cnt9']}', '{$_POST['po_etc']}', '{$_POST['po_level']}', '{$_POST['po_point']}', '".G5_TIME_YMD."' ) ";
|
||||
sql_query($sql);
|
||||
|
||||
$po_id = mysql_insert_id();
|
||||
$po_id = sql_insert_id();
|
||||
}
|
||||
else if ($w == 'u')
|
||||
{
|
||||
|
||||
@ -16,7 +16,7 @@ $sql_order = " order by cnt desc ";
|
||||
|
||||
$sql = " select pp_word {$sql_common} {$sql_search} {$sql_group} ";
|
||||
$result = sql_query($sql);
|
||||
$total_count = mysql_num_rows($result);
|
||||
$total_count = sql_num_rows($result);
|
||||
|
||||
$rows = $config['cf_page_rows'];
|
||||
$total_page = ceil($total_count / $rows); // 전체 페이지 계산
|
||||
|
||||
@ -5,7 +5,7 @@ include_once(G5_ADMIN_PATH.'/admin.lib.php');
|
||||
include_once(G5_SMS5_PATH.'/sms5.lib.php');
|
||||
|
||||
if (!strstr($_SERVER['SCRIPT_NAME'], 'install.php')) {
|
||||
if(!mysql_num_rows(mysql_query(" show tables like '{$g5['sms5_config_table']}' ")))
|
||||
if(!sql_num_rows(sql_query(" show tables like '{$g5['sms5_config_table']}' ")))
|
||||
goto_url('install.php');
|
||||
|
||||
// SMS 설정값 배열변수
|
||||
|
||||
@ -90,49 +90,10 @@ if ($config['cf_sms_use'] == 'icode') { // 아이코드 사용
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_phone">회신번호<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td>
|
||||
<?php echo help("회신받을 휴대폰 번호를 입력하세요. '-' 를 꼭 입력하세요.<br>예) 010-123-4567"); ?>
|
||||
<?php echo help("회신받을 휴대폰 번호를 입력하세요. 회신번호는 발신번호로 사전등록된 번호와 동일해야 합니다.<br>예) 010-123-4567"); ?>
|
||||
<input type="text" name="cf_phone" value="<?php echo $sms5['cf_phone']; ?>" id="cf_phone" required class="frm_input required" size="12">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_member">회원간 문자전송</label></th>
|
||||
<td>
|
||||
<?php echo help("허용에 체크하면 회원끼리 문자전송이 가능합니다.");?>
|
||||
<input type="checkbox" name="cf_member" value="1" id="cf_member" <?php echo get_checked(1, $sms5['cf_member']); ?>> <label for="cf_member">허용</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_level">문자전송가능 레벨</label></th>
|
||||
<td>
|
||||
<?php echo help("문자전송을 허용할 회원레벨을 선택해주세요.");?>
|
||||
<select name="cf_level" id="cf_level">
|
||||
<?php for ($i=1; $i<=10; $i++) { ?>
|
||||
<option value="<?php echo $i?>"<?php echo get_selected($i, $sms5['cf_level']);?>> <?php echo $i?> </option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
레벨 이상
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_point">문자전송 차감 포인트<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td>
|
||||
<?php echo help("회원이 문자를 전송할시에 차감할 포인트를 입력해주세요. 0이면 포인트를 차감하지 않습니다.");?>
|
||||
<input type="text" name="cf_point" value="<?php echo $sms5['cf_point']; ?>" id="cf_point" required class="frm_input required" size="5">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_day_count">문자전송 하루제한 갯수<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td>
|
||||
<?php echo help("회원이 하루에 보낼수 있는 문자 갯수를 입력해주세요. 0이면 제한하지 않습니다.");?>
|
||||
<input type="text" name="cf_day_count" value="<?php echo $sms5['cf_day_count']; ?>" id="cf_day_count" required class="frm_input required" size="5">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_skin">스킨 디렉토리<strong class="sound_only">필수</strong></label></th>
|
||||
<td>
|
||||
<?php echo get_sms5_skin_select('skin', 'cf_skin', 'cf_skin', $sms5['cf_skin'], 'required'); ?>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@ -8,16 +8,15 @@ check_demo();
|
||||
|
||||
$g5['title'] = "SMS 기본설정";
|
||||
|
||||
// 회신번호 체크
|
||||
if(!check_vaild_callback($cf_phone))
|
||||
alert('회신번호가 올바르지 않습니다.');
|
||||
|
||||
$userinfo = get_icode_userinfo($cf_icode_id, $cf_icode_pw);
|
||||
|
||||
if ($userinfo['code'] == '202')
|
||||
alert('아이코드 아이디와 패스워드가 맞지 않습니다.');
|
||||
|
||||
if ($cf_member == '1')
|
||||
$cf_member = 1;
|
||||
else
|
||||
$cf_member = 0;
|
||||
|
||||
$res = sql_fetch("select * from ".$g5['sms5_config_table']." limit 1");
|
||||
|
||||
if (!$res)
|
||||
@ -25,7 +24,7 @@ if (!$res)
|
||||
else
|
||||
$sql = "update ";
|
||||
|
||||
$sql .= $g5['sms5_config_table']." set cf_phone='$cf_phone', cf_member='$cf_member', cf_level='$cf_level', cf_point='$cf_point', cf_day_count='$cf_day_count', cf_skin = '$cf_skin' ";
|
||||
$sql .= $g5['sms5_config_table']." set cf_phone='$cf_phone' ";
|
||||
|
||||
sql_query($sql);
|
||||
|
||||
|
||||
@ -1,90 +0,0 @@
|
||||
<?php
|
||||
$sub_menu = "900410";
|
||||
include_once("./_common.php");
|
||||
|
||||
$page_size = 20;
|
||||
$colspan = 7;
|
||||
|
||||
auth_check($auth[$sub_menu], "r");
|
||||
|
||||
$g5['title'] = "문자전송 내역 (회원)";
|
||||
|
||||
if ($page < 1) $page = 1;
|
||||
|
||||
if ($st && trim($sv))
|
||||
$sql_search = " and $st like '%$sv%' ";
|
||||
else
|
||||
$sql_search = "";
|
||||
|
||||
$total_res = sql_fetch("select count(*) as cnt from {$g5['sms5_member_history_table']} where 1 $sql_search");
|
||||
$total_count = $total_res['cnt'];
|
||||
|
||||
$total_page = (int)($total_count/$page_size) + ($total_count%$page_size==0 ? 0 : 1);
|
||||
$page_start = $page_size * ( $page - 1 );
|
||||
|
||||
$vnum = $total_count - (($page-1) * $page_size);
|
||||
|
||||
include_once(G5_ADMIN_PATH.'/admin.head.php');
|
||||
?>
|
||||
|
||||
<form name="search_form" method="get" action="<?php echo $_SEVER['SCRIPT_NAME']?>" class="local_sch01 local_sch">
|
||||
<label for="st" class="sound_only">검색대상</label>
|
||||
<select name="st" id="st">
|
||||
<option value="mb_id"<?php echo get_selected('mh_name', $st); ?>>아이디</option>
|
||||
<option value="mh_hp"<?php echo get_selected('mh_hp', $st); ?>>받는번호</option>
|
||||
<option value="mh_reply"<?php echo get_selected('mh_reply', $st); ?>>보내는번호</option>
|
||||
</select>
|
||||
<label for="sv" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="sv" value="<?php echo $sv ?>" id="sv" required class="required frm_input">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
</form>
|
||||
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<table>
|
||||
<caption><?php echo $g5['title']; ?> 목록</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">번호</th>
|
||||
<th scope="col">회원</th>
|
||||
<th scope="col">보내는번호</th>
|
||||
<th scope="col">받는번호</th>
|
||||
<th scope="col">전송일시</th>
|
||||
<th scope="col">예약</th>
|
||||
<th scope="col">Log</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php if (!$total_count) { ?>
|
||||
<tr>
|
||||
<td colspan="<?php echo $colspan?>" class="empty_table" >
|
||||
데이터가 없습니다.
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
$qry = sql_query("select * from {$g5['sms5_member_history_table']} where 1 $sql_search order by mh_no desc limit $page_start, $page_size");
|
||||
while($row = sql_fetch_array($qry)) {
|
||||
$bg = 'bg'.($line++%2);
|
||||
|
||||
$mb = get_member($row['mb_id']);
|
||||
$mb_id = get_sideview($row['mb_id'], $mb['mb_nick']);
|
||||
?>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td class="td_num"><?php echo $vnum--?></td>
|
||||
<td class="td_mbid"><?php echo $mb_id?></td>
|
||||
<td class="td_numbig"><?php echo $row['mh_reply']?></td>
|
||||
<td class="td_numbig"><?php echo $row['mh_hp']?></td>
|
||||
<td class="td_datetime"><?php echo $row['mh_datetime']?></td>
|
||||
<td class="td_boolean"><?php echo $row['mh_booking']!='0000-00-00 00:00:00'?"<span title='{$row['mh_booking']}'>예약</span>":'';?></td>
|
||||
<td><?php echo $row['mh_log']?></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, $_SERVER['SCRIPT_NAME']."?st=$st&sv=$sv&page="); ?>
|
||||
|
||||
<?php
|
||||
include_once(G5_ADMIN_PATH.'/admin.tail.php');
|
||||
?>
|
||||
@ -53,7 +53,7 @@ eval("\$file = \"$file\";");
|
||||
$f = explode(";", $file);
|
||||
for ($i=0; $i<count($f); $i++) {
|
||||
if (trim($f[$i]) == "") continue;
|
||||
mysql_query($f[$i]) or die(mysql_error());
|
||||
sql_query($f[$i]) or die(mysqli_error());
|
||||
}
|
||||
// 테이블 생성 ------------------------------------
|
||||
|
||||
@ -68,7 +68,7 @@ $download_point = -20;
|
||||
//-------------------------------------------------------------------------------------------------
|
||||
// config 테이블 설정
|
||||
$sql = " insert into {$g5['sms5_book_group_table']} set bg_name='미분류'";
|
||||
mysql_query($sql) or die(mysql_error() . "<p>" . $sql);
|
||||
sql_query($sql) or die(mysqli_error() . "<p>" . $sql);
|
||||
|
||||
echo "<script>document.getElementById('sms5_job_02').innerHTML='DB설정 완료';</script>";
|
||||
flush(); usleep(50000);
|
||||
|
||||
@ -65,12 +65,7 @@ DROP TABLE IF EXISTS `{$g5['sms5_config_table']}`;
|
||||
|
||||
CREATE TABLE `{$g5['sms5_config_table']}` (
|
||||
`cf_phone` varchar(255) NOT NULL default '',
|
||||
`cf_datetime` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`cf_member` tinyint(4) NOT NULL default '1',
|
||||
`cf_level` tinyint(4) NOT NULL default '2',
|
||||
`cf_point` int(11) NOT NULL default '0',
|
||||
`cf_day_count` int(11) NOT NULL default '0',
|
||||
`cf_skin` varchar(100) NOT NULL DEFAULT ''
|
||||
`cf_datetime` datetime NOT NULL default '0000-00-00 00:00:00'
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
@ -164,25 +159,3 @@ CREATE TABLE `{$g5['sms5_write_table']}` (
|
||||
`wr_memo` text NOT NULL,
|
||||
KEY `wr_no` (`wr_no`,`wr_renum`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
##
|
||||
## Table structure for table `{$g5['sms5_member_history_table']}`
|
||||
##
|
||||
|
||||
DROP TABLE IF EXISTS `{$g5['sms5_member_history_table']}`;
|
||||
|
||||
|
||||
CREATE TABLE `{$g5['sms5_member_history_table']}` (
|
||||
`mh_no` int(11) NOT NULL auto_increment,
|
||||
`mb_id` varchar(30) NOT NULL,
|
||||
`mh_reply` varchar(30) NOT NULL,
|
||||
`mh_hp` varchar(30) NOT NULL,
|
||||
`mh_datetime` datetime NOT NULL,
|
||||
`mh_booking` datetime NOT NULL,
|
||||
`mh_log` varchar(255) NOT NULL,
|
||||
`mh_ip` varchar(15) NOT NULL,
|
||||
PRIMARY KEY (`mh_no`),
|
||||
KEY `mb_id` (`mb_id`,`mh_datetime`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
@ -114,7 +114,7 @@ if ($config['cf_sms_use'] == 'icode') { // 아이코드 사용
|
||||
|
||||
<div id="write_reply">
|
||||
<label for="wr_reply">회신<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="wr_reply" value="<?php echo $sms5['cf_phone']?>" id="wr_reply" required class="frm_input required" size="17" maxlength="20">
|
||||
<input type="text" name="wr_reply" value="<?php echo $sms5['cf_phone']?>" id="wr_reply" required class="frm_input required" size="17" maxlength="20" readonly="readonly">
|
||||
</div>
|
||||
|
||||
<div id="write_recv" class="write_inner">
|
||||
@ -532,7 +532,7 @@ if ($wr_no)
|
||||
// 회원목록
|
||||
$sql = " select * from {$g5['sms5_history_table']} where wr_no = '$wr_no' and bk_no > 0 ";
|
||||
$qry = sql_query($sql);
|
||||
$tot = mysql_num_rows($qry);
|
||||
$tot = sql_num_rows($qry);
|
||||
|
||||
if ($tot > 0) {
|
||||
|
||||
@ -550,7 +550,7 @@ if ($wr_no)
|
||||
// 비회원 목록
|
||||
$sql = " select * from {$g5['sms5_history_table']} where wr_no = '$wr_no' and bk_no = 0 ";
|
||||
$qry = sql_query($sql);
|
||||
$tot = mysql_num_rows($qry);
|
||||
$tot = sql_num_rows($qry);
|
||||
|
||||
if ($tot > 0)
|
||||
{
|
||||
|
||||
@ -12,6 +12,9 @@ $wr_message = clean_xss_tags(trim($wr_message));
|
||||
if (!$wr_reply)
|
||||
win_close_alert('회신 번호를 숫자, - 로 입력해주세요.');
|
||||
|
||||
if(!check_vaild_callback($wr_reply))
|
||||
win_close_alert('회신 번호를 올바르게 입력해 주십시오.');
|
||||
|
||||
if (!$wr_message)
|
||||
win_close_alert('메세지를 입력해주세요.');
|
||||
|
||||
@ -42,6 +45,9 @@ while ($row = array_shift($send_list))
|
||||
while ($row = sql_fetch_array($qry))
|
||||
{
|
||||
$row['bk_hp'] = get_hp($row['bk_hp'], 0);
|
||||
|
||||
if(!$row['bk_hp']) continue;
|
||||
|
||||
if ($wr_overlap && array_overlap($hps, $row['bk_hp'])) {
|
||||
$overlap++;
|
||||
array_push( $duplicate_data['hp'], $row['bk_hp'] );
|
||||
@ -63,6 +69,8 @@ while ($row = array_shift($send_list))
|
||||
$hp = get_hp($row['mb_hp'], 0);
|
||||
$mb_id = $row['mb_id'];
|
||||
|
||||
if(!$hp) continue;
|
||||
|
||||
if ($wr_overlap && array_overlap($hps, $hp)) {
|
||||
$overlap++;
|
||||
array_push( $duplicate_data['hp'], $row['bk_hp'] );
|
||||
@ -84,6 +92,8 @@ while ($row = array_shift($send_list))
|
||||
$hp = get_hp($item[$i][1], 0);
|
||||
$name = $item[$i][0];
|
||||
|
||||
if(!$hp) continue;
|
||||
|
||||
if ($wr_overlap && array_overlap($hps, $hp)) {
|
||||
$overlap++;
|
||||
array_push( $duplicate_data['hp'], $row['bk_hp'] );
|
||||
@ -99,6 +109,8 @@ while ($row = array_shift($send_list))
|
||||
$row = sql_fetch("select * from {$g5['sms5_book_table']} where bk_no='$item[$i]'");
|
||||
$row['bk_hp'] = get_hp($row['bk_hp'], 0);
|
||||
|
||||
if(!$row['bk_hp']) continue;
|
||||
|
||||
if ($wr_overlap && array_overlap($hps, $row['bk_hp'])) {
|
||||
$overlap++;
|
||||
array_push( $duplicate_data['hp'], $row['bk_hp'] );
|
||||
|
||||
@ -53,7 +53,7 @@ if ($sca || $stx) {
|
||||
/*
|
||||
$sql = " select distinct wr_parent from {$write_table} where {$sql_search} ";
|
||||
$result = sql_query($sql);
|
||||
$total_count = mysql_num_rows($result);
|
||||
$total_count = sql_num_rows($result);
|
||||
*/
|
||||
} else {
|
||||
$sql_search = "";
|
||||
|
||||
@ -99,7 +99,7 @@ while ($row = sql_fetch_array($result))
|
||||
wr_10 = '".addslashes($row2['wr_10'])."' ";
|
||||
sql_query($sql);
|
||||
|
||||
$insert_id = mysql_insert_id();
|
||||
$insert_id = sql_insert_id();
|
||||
|
||||
// 코멘트가 아니라면
|
||||
if (!$row2['wr_is_comment'])
|
||||
|
||||
@ -244,7 +244,7 @@ if($w == '' || $w == 'a' || $w == 'r') {
|
||||
sql_query($sql);
|
||||
|
||||
if($w == '' || $w == 'r') {
|
||||
$qa_id = mysql_insert_id();
|
||||
$qa_id = sql_insert_id();
|
||||
|
||||
if($w == 'r' && $write['qa_related']) {
|
||||
$qa_related = $write['qa_related'];
|
||||
|
||||
@ -70,7 +70,7 @@ if ($wr_content && ($member['mb_level'] >= $board['bo_comment_level']))
|
||||
wr_ip = '{$_SERVER['REMOTE_ADDR']}' ";
|
||||
sql_query($sql);
|
||||
|
||||
$comment_id = mysql_insert_id();
|
||||
$comment_id = sql_insert_id();
|
||||
|
||||
// 원글에 코멘트수 증가
|
||||
sql_query(" update $write_table set wr_comment = wr_comment + 1 where wr_id = '$wr_id' ");
|
||||
|
||||
@ -120,7 +120,7 @@ if ($stx) {
|
||||
|
||||
$sql = " select wr_id from {$tmp_write_table} where {$sql_search} ";
|
||||
$result = sql_query($sql, false);
|
||||
$row['cnt'] = @mysql_num_rows($result);
|
||||
$row['cnt'] = @sql_num_rows($result);
|
||||
|
||||
$total_count += $row['cnt'];
|
||||
if ($row['cnt']) {
|
||||
|
||||
@ -12,7 +12,7 @@ switch($_REQUEST['sns']) {
|
||||
header("Location:http://www.facebook.com/sharer/sharer.php?s=100&u=".$short_url."&p=".$title);
|
||||
break;
|
||||
case 'twitter' :
|
||||
header("Location:http://twitter.com/home?status=".$title_url);
|
||||
header("Location:https://twitter.com/intent/tweet?text=".$title_url);
|
||||
break;
|
||||
case 'gplus' :
|
||||
header("Location:https://plus.google.com/share?url=".$short_url);
|
||||
|
||||
@ -167,7 +167,7 @@ if ($w == 'c') // 댓글 입력
|
||||
wr_10 = '$wr_10' ";
|
||||
sql_query($sql);
|
||||
|
||||
$comment_id = mysql_insert_id();
|
||||
$comment_id = sql_insert_id();
|
||||
|
||||
// 원글에 댓글수 증가 & 마지막 시간 반영
|
||||
sql_query(" update $write_table set wr_comment = wr_comment + 1, wr_last = '".G5_TIME_YMDHIS."' where wr_id = '$wr_id' ");
|
||||
|
||||
@ -244,7 +244,7 @@ if ($w == '' || $w == 'r') {
|
||||
wr_10 = '$wr_10' ";
|
||||
sql_query($sql);
|
||||
|
||||
$wr_id = mysql_insert_id();
|
||||
$wr_id = sql_insert_id();
|
||||
|
||||
// 부모 아이디에 UPDATE
|
||||
sql_query(" update $write_table set wr_parent = '$wr_id' where wr_id = '$wr_id' ");
|
||||
|
||||
@ -135,7 +135,7 @@ if (file_exists($dbconfig_file)) {
|
||||
// mysql connect resource $g5 배열에 저장 - 명랑폐인님 제안
|
||||
$g5['connect_db'] = $connect_db;
|
||||
|
||||
sql_query(" set names utf8 ");
|
||||
sql_set_charset('utf8', $connect_db);
|
||||
if(defined('G5_MYSQL_SET_MODE') && G5_MYSQL_SET_MODE) sql_query("SET SESSION sql_mode = ''");
|
||||
if (defined(G5_TIMEZONE)) sql_query(" set time_zone = '".G5_TIMEZONE."'");
|
||||
} else {
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
********************/
|
||||
|
||||
define('G5_VERSION', '그누보드5');
|
||||
define('G5_GNUBOARD_VER', '5.1.2');
|
||||
define('G5_GNUBOARD_VER', '5.1.3');
|
||||
|
||||
// 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음
|
||||
define('_GNUBOARD_', true);
|
||||
@ -195,6 +195,9 @@ define('G5_THUMB_PNG_COMPRESS', 5);
|
||||
// 모바일 기기에서 DHTML 에디터 사용여부를 설정합니다.
|
||||
define('G5_IS_MOBILE_DHTML_USE', false);
|
||||
|
||||
// MySQLi 사용여부를 설정합니다.
|
||||
define('G5_MYSQLI_USE', true);
|
||||
|
||||
// ip 숨김방법 설정
|
||||
/* 123.456.789.012 ip의 숨김 방법을 변경하는 방법은
|
||||
\\1 은 123, \\2는 456, \\3은 789, \\4는 012에 각각 대응되므로
|
||||
|
||||
@ -22,23 +22,10 @@ $g5['sms5_book_table'] = $g5['sms5_prefix'] . 'book';
|
||||
$g5['sms5_book_group_table'] = $g5['sms5_prefix'] . 'book_group';
|
||||
$g5['sms5_form_table'] = $g5['sms5_prefix'] . 'form';
|
||||
$g5['sms5_form_group_table'] = $g5['sms5_prefix'] . 'form_group';
|
||||
$g5['sms5_member_history_table'] = $g5['sms5_prefix'] . 'member_history';
|
||||
|
||||
if (!empty($config['cf_sms_use'])) {
|
||||
|
||||
$sms5 = sql_fetch("select * from {$g5['sms5_config_table']} ", false);
|
||||
if( $sms5['cf_member'] && trim($member['mb_hp']) ) {
|
||||
$g5['sms5_use_sideview'] = true; //회원 사이드뷰 레이어에 추가
|
||||
} else {
|
||||
$g5['sms5_use_sideview'] = false;
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
// 스킨경로
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$sms5_skin_path = G5_SMS5_PATH.'/skin/'.$sms5['cf_skin']; //sms5 스킨 path
|
||||
$sms5_skin_url = G5_SMS5_URL .'/skin/'.$sms5['cf_skin']; //sms5 스킨 url
|
||||
|
||||
// Demo 설정
|
||||
if (file_exists(G5_PATH.'/DEMO'))
|
||||
|
||||
@ -169,13 +169,7 @@ document.onkeydown = noRefresh ;
|
||||
$is_euckr = true;
|
||||
|
||||
// member table 복사
|
||||
$columns = array();
|
||||
$fields = mysql_list_fields(G5_MYSQL_DB, $g5['member_table']);
|
||||
$count = mysql_num_fields($fields);
|
||||
for ($i = 0; $i < $count; $i++) {
|
||||
$fld = mysql_field_name($fields, $i);
|
||||
$columns[] = $fld;
|
||||
}
|
||||
$columns = sql_field_names($g5['member_table']);
|
||||
|
||||
$sql = " select * from {$g4['member_table']} ";
|
||||
$result = sql_query($sql);
|
||||
@ -325,13 +319,7 @@ document.onkeydown = noRefresh ;
|
||||
echo '<li>visit sum table 복사</li>'.PHP_EOL;
|
||||
|
||||
// group table 복사
|
||||
$columns = array();
|
||||
$fields = mysql_list_fields(G5_MYSQL_DB, $g5['group_table']);
|
||||
$count = mysql_num_fields($fields);
|
||||
for ($i = 0; $i < $count; $i++) {
|
||||
$fld = mysql_field_name($fields, $i);
|
||||
$columns[] = $fld;
|
||||
}
|
||||
$columns = sql_field_names($g5['group_table']);
|
||||
|
||||
$sql = " select * from {$g4['group_table']} ";
|
||||
$result = sql_query($sql);
|
||||
@ -365,13 +353,7 @@ document.onkeydown = noRefresh ;
|
||||
unset($fiels);
|
||||
|
||||
// board 복사
|
||||
$columns = array();
|
||||
$fields = mysql_list_fields(G5_MYSQL_DB, $g5['board_table']);
|
||||
$count = mysql_num_fields($fields);
|
||||
for ($i = 0; $i < $count; $i++) {
|
||||
$fld = mysql_field_name($fields, $i);
|
||||
$columns[] = $fld;
|
||||
}
|
||||
$columns = sql_field_names($g5['board_table']);
|
||||
|
||||
$sql = " select * from {$g4['board_table']} ";
|
||||
$result = sql_query($sql);
|
||||
@ -413,13 +395,7 @@ document.onkeydown = noRefresh ;
|
||||
// 게시글 복사
|
||||
if(sql_query($sql, FALSE)) {
|
||||
$write_table = $g4['write_prefix'].$bo_table;
|
||||
$columns2 = array();
|
||||
$fields2 = mysql_list_fields(G5_MYSQL_DB, $create_table);
|
||||
$count2 = mysql_num_fields($fields2);
|
||||
for ($j = 0; $j < $count2; $j++) {
|
||||
$fld = mysql_field_name($fields2, $j);
|
||||
$columns2[] = $fld;
|
||||
}
|
||||
$columns2 = sql_field_names($create_table);
|
||||
|
||||
$sql3 = " select * from $write_table ";
|
||||
$result3 = sql_query($sql3);
|
||||
@ -461,13 +437,7 @@ document.onkeydown = noRefresh ;
|
||||
$tables = array('board_file', 'board_new', 'board_good', 'mail', 'memo', 'group_member', 'auth', 'popular', 'poll', 'poll_etc', 'scrap');
|
||||
|
||||
foreach($tables as $table) {
|
||||
$columns = array();
|
||||
$fields = mysql_list_fields(G5_MYSQL_DB, $g5[$table.'_table']);
|
||||
$count = mysql_num_fields($fields);
|
||||
for ($i = 0; $i < $count; $i++) {
|
||||
$fld = mysql_field_name($fields, $i);
|
||||
$columns[] = $fld;
|
||||
}
|
||||
$columns = sql_field_names($g5[$table.'_table']);
|
||||
|
||||
$src_table = $g4[$table.'_table'];
|
||||
$dst_table = $g5[$table.'_table'];
|
||||
|
||||
@ -8,6 +8,8 @@ header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
|
||||
header('Pragma: no-cache'); // HTTP/1.0
|
||||
|
||||
include_once ('../config.php');
|
||||
include_once ('../lib/common.lib.php');
|
||||
|
||||
$title = G5_VERSION." 설치 완료 3/3";
|
||||
include_once ('./install.inc.php');
|
||||
|
||||
@ -23,7 +25,7 @@ $admin_pass = $_POST['admin_pass'];
|
||||
$admin_name = $_POST['admin_name'];
|
||||
$admin_email = $_POST['admin_email'];
|
||||
|
||||
$dblink = @mysql_connect($mysql_host, $mysql_user, $mysql_pass);
|
||||
$dblink = sql_connect($mysql_host, $mysql_user, $mysql_pass, $mysql_db);
|
||||
if (!$dblink) {
|
||||
?>
|
||||
|
||||
@ -37,7 +39,7 @@ if (!$dblink) {
|
||||
exit;
|
||||
}
|
||||
|
||||
$select_db = @mysql_select_db($mysql_db, $dblink);
|
||||
$select_db = sql_select_db($mysql_db, $dblink);
|
||||
if (!$select_db) {
|
||||
?>
|
||||
|
||||
@ -52,12 +54,14 @@ if (!$select_db) {
|
||||
}
|
||||
|
||||
$mysql_set_mode = 'false';
|
||||
@mysql_query('set names utf8');
|
||||
$row = mysql_fetch_assoc(mysql_query(" SELECT @@sql_mode as mode "));
|
||||
sql_set_charset('utf8', $dblink);
|
||||
$result = sql_query(" SELECT @@sql_mode as mode ", true, $dblink);
|
||||
$row = sql_fetch_array($result);
|
||||
if($row['mode']) {
|
||||
@mysql_query("SET SESSION sql_mode = ''");
|
||||
sql_query("SET SESSION sql_mode = ''", true, $dblink);
|
||||
$mysql_set_mode = 'true';
|
||||
}
|
||||
unset($result);
|
||||
unset($row);
|
||||
?>
|
||||
|
||||
@ -75,7 +79,7 @@ $file = preg_replace('/`g5_([^`]+`)/', '`'.$table_prefix.'$1', $file);
|
||||
$f = explode(';', $file);
|
||||
for ($i=0; $i<count($f); $i++) {
|
||||
if (trim($f[$i]) == '') continue;
|
||||
mysql_query($f[$i]) or die(mysql_error());
|
||||
sql_query($f[$i], true, $dblink);
|
||||
}
|
||||
// 테이블 생성 ------------------------------------
|
||||
?>
|
||||
@ -154,14 +158,14 @@ $sql = " insert into `{$table_prefix}config`
|
||||
cf_stipulation = '해당 홈페이지에 맞는 회원가입약관을 입력합니다.',
|
||||
cf_privacy = '해당 홈페이지에 맞는 개인정보처리방침을 입력합니다.'
|
||||
";
|
||||
mysql_query($sql) or die(mysql_error() . "<p>" . $sql);
|
||||
sql_query($sql, true, $dblink);
|
||||
|
||||
// 1:1문의 설정
|
||||
$sql = " insert into `{$table_prefix}qa_config`
|
||||
( qa_title, qa_category, qa_skin, qa_mobile_skin, qa_use_email, qa_req_email, qa_use_hp, qa_req_hp, qa_use_editor, qa_subject_len, qa_mobile_subject_len, qa_page_rows, qa_mobile_page_rows, qa_image_width, qa_upload_size, qa_insert_content )
|
||||
values
|
||||
( '1:1문의', '회원|포인트', 'basic', 'basic', '1', '0', '1', '0', '1', '60', '30', '15', '15', '600', '1048576', '' ) ";
|
||||
mysql_query($sql);
|
||||
sql_query($sql, true, $dblink);
|
||||
|
||||
// 관리자 회원가입
|
||||
$sql = " insert into `{$table_prefix}member`
|
||||
@ -177,15 +181,15 @@ $sql = " insert into `{$table_prefix}member`
|
||||
mb_datetime = '".G5_TIME_YMDHIS."',
|
||||
mb_ip = '{$_SERVER['REMOTE_ADDR']}'
|
||||
";
|
||||
@mysql_query($sql);
|
||||
sql_query($sql, true, $dblink);
|
||||
|
||||
// 내용관리 생성
|
||||
@mysql_query(" insert into `{$table_prefix}content` set co_id = 'company', co_html = '1', co_subject = '회사소개', co_content= '<p align=center><b>회사소개에 대한 내용을 입력하십시오.</b></p>' ") or die(mysql_error() . "<p>" . $sql);
|
||||
@mysql_query(" insert into `{$table_prefix}content` set co_id = 'privacy', co_html = '1', co_subject = '개인정보 처리방침', co_content= '<p align=center><b>개인정보 처리방침에 대한 내용을 입력하십시오.</b></p>' ") or die(mysql_error() . "<p>" . $sql);
|
||||
@mysql_query(" insert into `{$table_prefix}content` set co_id = 'provision', co_html = '1', co_subject = '서비스 이용약관', co_content= '<p align=center><b>서비스 이용약관에 대한 내용을 입력하십시오.</b></p>' ") or die(mysql_error() . "<p>" . $sql);
|
||||
sql_query(" insert into `{$table_prefix}content` set co_id = 'company', co_html = '1', co_subject = '회사소개', co_content= '<p align=center><b>회사소개에 대한 내용을 입력하십시오.</b></p>' ", true, $dblink);
|
||||
sql_query(" insert into `{$table_prefix}content` set co_id = 'privacy', co_html = '1', co_subject = '개인정보 처리방침', co_content= '<p align=center><b>개인정보 처리방침에 대한 내용을 입력하십시오.</b></p>' ", true, $dblink);
|
||||
sql_query(" insert into `{$table_prefix}content` set co_id = 'provision', co_html = '1', co_subject = '서비스 이용약관', co_content= '<p align=center><b>서비스 이용약관에 대한 내용을 입력하십시오.</b></p>' ", true, $dblink);
|
||||
|
||||
// FAQ Master
|
||||
@mysql_query(" insert into `{$table_prefix}faq_master` set fm_id = '1', fm_subject = '자주하시는 질문' ") or die(mysql_error() . "<p>" . $sql);
|
||||
sql_query(" insert into `{$table_prefix}faq_master` set fm_id = '1', fm_subject = '자주하시는 질문' ", true, $dblink);
|
||||
?>
|
||||
|
||||
<li>DB설정 완료</li>
|
||||
|
||||
13
js/common.js
13
js/common.js
@ -503,14 +503,6 @@ var win_zip = function(frm_name, frm_zip, frm_addr1, frm_addr2, frm_addr3, frm_j
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* sms5 창
|
||||
**/
|
||||
var win_sms5 = function(href) {
|
||||
var new_win = window.open(href, 'win_sms5', 'width=474, height=560, scrollbars=1');
|
||||
new_win.focus();
|
||||
}
|
||||
|
||||
/**
|
||||
* 새로운 비밀번호 분실 창 : 101123
|
||||
**/
|
||||
@ -590,11 +582,6 @@ $(function(){
|
||||
return false;
|
||||
});
|
||||
|
||||
$(".win_sms5").click(function() {
|
||||
win_sms5(this.href);
|
||||
return false;
|
||||
});
|
||||
|
||||
/*
|
||||
$(".win_poll").click(function() {
|
||||
win_poll(this.href);
|
||||
|
||||
@ -1260,10 +1260,6 @@ function get_sideview($mb_id, $name='', $email='', $homepage='')
|
||||
}
|
||||
if($mb_id)
|
||||
$str2 .= "<a href=\"".G5_BBS_URL."/new.php?mb_id=".$mb_id."\">전체게시물</a>\n";
|
||||
if($g5['sms5_use_sideview']){
|
||||
$mb = get_member($mb_id, " mb_open, mb_sms , mb_hp ");
|
||||
if( $mb['mb_open'] && $mb['mb_sms'] && $mb['mb_hp'] ) $str2 .= "<a href=\"".G5_SMS5_URL."/?mb_id=".$mb_id."\" class=\"win_sms5\" target=\"_blank\">문자보내기</a>\n";
|
||||
}
|
||||
if($is_admin == "super" && $mb_id) {
|
||||
$str2 .= "<a href=\"".G5_ADMIN_URL."/member_form.php?w=u&mb_id=".$mb_id."\" target=\"_blank\">회원정보변경</a>\n";
|
||||
$str2 .= "<a href=\"".G5_ADMIN_URL."/point_list.php?sfl=mb_id&stx=".$mb_id."\" target=\"_blank\">포인트내역</a>\n";
|
||||
@ -1416,11 +1412,22 @@ function html_symbol($str)
|
||||
*************************************************************************/
|
||||
|
||||
// DB 연결
|
||||
function sql_connect($host, $user, $pass)
|
||||
function sql_connect($host, $user, $pass, $db=G5_MYSQL_DB)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
return @mysql_connect($host, $user, $pass);
|
||||
if(function_exists('mysqli_connect') && G5_MYSQLI_USE) {
|
||||
$link = mysqli_connect($host, $user, $pass, $db);
|
||||
|
||||
// 연결 오류 발생 시 스크립트 종료
|
||||
if (mysqli_connect_errno()) {
|
||||
die('Connect Error: '.mysqli_connect_error());
|
||||
}
|
||||
} else {
|
||||
$link = mysql_connect($host, $user, $pass);
|
||||
}
|
||||
|
||||
return $link;
|
||||
}
|
||||
|
||||
|
||||
@ -1429,16 +1436,36 @@ function sql_select_db($db, $connect)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
return @mysql_select_db($db, $connect);
|
||||
if(function_exists('mysqli_select_db') && G5_MYSQLI_USE)
|
||||
return @mysqli_select_db($connect, $db);
|
||||
else
|
||||
return @mysql_select_db($db, $connect);
|
||||
}
|
||||
|
||||
|
||||
// mysql_query 와 mysql_error 를 한꺼번에 처리
|
||||
// mysql connect resource 지정 - 명랑폐인님 제안
|
||||
function sql_query($sql, $error=G5_DISPLAY_SQL_ERROR)
|
||||
function sql_set_charset($charset, $link=null)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
if(!$link)
|
||||
$link = $g5['connect_db'];
|
||||
|
||||
if(function_exists('mysqli_set_charset') && G5_MYSQLI_USE)
|
||||
mysqli_set_charset($link, $charset);
|
||||
else
|
||||
sql_query(" set names {$charset} ");
|
||||
}
|
||||
|
||||
|
||||
// mysqli_query 와 mysqli_error 를 한꺼번에 처리
|
||||
// mysql connect resource 지정 - 명랑폐인님 제안
|
||||
function sql_query($sql, $error=G5_DISPLAY_SQL_ERROR, $link=null)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
if(!$link)
|
||||
$link = $g5['connect_db'];
|
||||
|
||||
// Blind SQL Injection 취약점 해결
|
||||
$sql = trim($sql);
|
||||
// union의 사용을 허락하지 않습니다.
|
||||
@ -1447,20 +1474,34 @@ function sql_query($sql, $error=G5_DISPLAY_SQL_ERROR)
|
||||
// `information_schema` DB로의 접근을 허락하지 않습니다.
|
||||
$sql = preg_replace("#^select.*from.*where.*`?information_schema`?.*#i", "select 1", $sql);
|
||||
|
||||
if ($error)
|
||||
$result = @mysql_query($sql, $g5['connect_db']) or die("<p>$sql<p>" . mysql_errno() . " : " . mysql_error() . "<p>error file : {$_SERVER['SCRIPT_NAME']}");
|
||||
else
|
||||
$result = @mysql_query($sql, $g5['connect_db']);
|
||||
if(function_exists('mysqli_query') && G5_MYSQLI_USE) {
|
||||
if ($error) {
|
||||
$result = @mysqli_query($link, $sql) or die("<p>$sql<p>" . mysqli_errno($link) . " : " . mysqli_error($link) . "<p>error file : {$_SERVER['SCRIPT_NAME']}");
|
||||
} else {
|
||||
$result = @mysqli_query($link, $sql);
|
||||
}
|
||||
} else {
|
||||
if ($error) {
|
||||
$result = @mysql_query($sql, $link) or die("<p>$sql<p>" . mysql_errno() . " : " . mysql_error() . "<p>error file : {$_SERVER['SCRIPT_NAME']}");
|
||||
} else {
|
||||
$result = @mysql_query($sql, $link);
|
||||
}
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
||||
// 쿼리를 실행한 후 결과값에서 한행을 얻는다.
|
||||
function sql_fetch($sql, $error=G5_DISPLAY_SQL_ERROR)
|
||||
function sql_fetch($sql, $error=G5_DISPLAY_SQL_ERROR, $link=null)
|
||||
{
|
||||
$result = sql_query($sql, $error);
|
||||
//$row = @sql_fetch_array($result) or die("<p>$sql<p>" . mysql_errno() . " : " . mysql_error() . "<p>error file : $_SERVER['SCRIPT_NAME']");
|
||||
global $g5;
|
||||
|
||||
if(!$link)
|
||||
$link = $g5['connect_db'];
|
||||
|
||||
$result = sql_query($sql, $error, $link);
|
||||
//$row = @sql_fetch_array($result) or die("<p>$sql<p>" . mysqli_errno() . " : " . mysqli_error() . "<p>error file : $_SERVER['SCRIPT_NAME']");
|
||||
$row = sql_fetch_array($result);
|
||||
return $row;
|
||||
}
|
||||
@ -1469,7 +1510,11 @@ function sql_fetch($sql, $error=G5_DISPLAY_SQL_ERROR)
|
||||
// 결과값에서 한행 연관배열(이름으로)로 얻는다.
|
||||
function sql_fetch_array($result)
|
||||
{
|
||||
$row = @mysql_fetch_assoc($result);
|
||||
if(function_exists('mysqli_fetch_assoc') && G5_MYSQLI_USE)
|
||||
$row = @mysqli_fetch_assoc($result);
|
||||
else
|
||||
$row = @mysql_fetch_assoc($result);
|
||||
|
||||
return $row;
|
||||
}
|
||||
|
||||
@ -1479,7 +1524,10 @@ function sql_fetch_array($result)
|
||||
// 단, 결과 값은 스크립트(script) 실행부가 종료되면서 메모리에서 자동적으로 지워진다.
|
||||
function sql_free_result($result)
|
||||
{
|
||||
return mysql_free_result($result);
|
||||
if(function_exists('mysqli_free_result') && G5_MYSQLI_USE)
|
||||
return mysqli_free_result($result);
|
||||
else
|
||||
return mysql_free_result($result);
|
||||
}
|
||||
|
||||
|
||||
@ -1493,6 +1541,74 @@ function sql_password($value)
|
||||
}
|
||||
|
||||
|
||||
function sql_insert_id($link=null)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
if(!$link)
|
||||
$link = $g5['connect_db'];
|
||||
|
||||
if(function_exists('mysqli_insert_id') && G5_MYSQLI_USE)
|
||||
return mysqli_insert_id($link);
|
||||
else
|
||||
return mysql_insert_id($link);
|
||||
}
|
||||
|
||||
|
||||
function sql_num_rows($result)
|
||||
{
|
||||
if(function_exists('mysqli_num_rows') && G5_MYSQLI_USE)
|
||||
return mysqli_num_rows($result);
|
||||
else
|
||||
return mysql_num_rows($result);
|
||||
}
|
||||
|
||||
|
||||
function sql_field_names($table, $link=null)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
if(!$link)
|
||||
$link = $g5['connect_db'];
|
||||
|
||||
$columns = array();
|
||||
|
||||
$sql = " select * from `$table` limit 1 ";
|
||||
$result = sql_query($sql, $link);
|
||||
|
||||
if(function_exists('mysqli_fetch_field') && G5_MYSQLI_USE) {
|
||||
while($field = mysqli_fetch_field($result)) {
|
||||
$columns[] = $field->name;
|
||||
}
|
||||
} else {
|
||||
$i = 0;
|
||||
$cnt = mysql_num_fields($result);
|
||||
while($i < $cnt) {
|
||||
$field = mysql_fetch_field($result, $i);
|
||||
$columns[] = $field->name;
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
||||
return $columns;
|
||||
}
|
||||
|
||||
|
||||
function sql_error_info($link=null)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
if(!$link)
|
||||
$link = $g5['connect_db'];
|
||||
|
||||
if(function_exists('mysqli_error') && G5_MYSQLI_USE) {
|
||||
return mysqli_errno($link) . ' : ' . mysqli_error($link);
|
||||
} else {
|
||||
return mysql_errno($link) . ' : ' . mysql_error($link);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// PHPMyAdmin 참고
|
||||
function get_table_define($table, $crlf="\n")
|
||||
{
|
||||
@ -1893,12 +2009,15 @@ function convert_charset($from_charset, $to_charset, $str)
|
||||
}
|
||||
|
||||
|
||||
// mysql_real_escape_string 의 alias 기능을 한다.
|
||||
function sql_real_escape_string($field)
|
||||
// mysqli_real_escape_string 의 alias 기능을 한다.
|
||||
function sql_real_escape_string($str, $link=null)
|
||||
{
|
||||
global $g5;
|
||||
|
||||
return mysql_real_escape_string($field, $g5['connect_db']);
|
||||
if(!$link)
|
||||
$link = $g5['connect_db'];
|
||||
|
||||
return mysqli_real_escape_string($link, $str);
|
||||
}
|
||||
|
||||
function escape_trim($field)
|
||||
@ -3017,4 +3136,29 @@ function get_skin_url($dir, $skin)
|
||||
|
||||
return str_replace(G5_PATH, G5_URL, $skin_path);
|
||||
}
|
||||
|
||||
// 발신번호 유효성 체크
|
||||
function check_vaild_callback($callback){
|
||||
$_callback = preg_replace('/[^0-9]/','', $callback);
|
||||
|
||||
/**
|
||||
* 1588 로시작하면 총8자리인데 7자리라 차단
|
||||
* 02 로시작하면 총9자리 또는 10자리인데 11자리라차단
|
||||
* 1366은 그자체가 원번호이기에 다른게 붙으면 차단
|
||||
* 030으로 시작하면 총10자리 또는 11자리인데 9자리라차단
|
||||
*/
|
||||
|
||||
if( substr($_callback,0,4) == '1588') if( strlen($_callback) != 8) return false;
|
||||
if( substr($_callback,0,2) == '02') if( strlen($_callback) != 9 && strlen($_callback) != 10 ) return false;
|
||||
if( substr($_callback,0,3) == '030') if( strlen($_callback) != 10 && strlen($_callback) != 11 ) return false;
|
||||
|
||||
if( !preg_match("/^(02|0[3-6]\d|01(0|1|3|5|6|7|8|9)|070|080|007)\-?\d{3,4}\-?\d{4,5}$/",$_callback) &&
|
||||
!preg_match("/^(15|16|18)\d{2}\-?\d{4,5}$/",$_callback) ){
|
||||
return false;
|
||||
} else if( preg_match("/^(02|0[3-6]\d|01(0|1|3|5|6|7|8|9)|070|080)\-?0{3,4}\-?\d{4}$/",$_callback )) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
?>
|
||||
@ -474,7 +474,7 @@ and the roundoff errors in the Gaussian blur process, are welcome.
|
||||
|
||||
$radius = abs(round($radius)); // Only integers make sense.
|
||||
if ($radius == 0) {
|
||||
return $img; imagedestroy($img); break; }
|
||||
return $img; imagedestroy($img); }
|
||||
$w = imagesx($img); $h = imagesy($img);
|
||||
$imgCanvas = imagecreatetruecolor($w, $h);
|
||||
$imgBlur = imagecreatetruecolor($w, $h);
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 60 B |
Binary file not shown.
|
Before Width: | Height: | Size: 67 B |
@ -1,48 +0,0 @@
|
||||
#sms5_send {position:relative}
|
||||
|
||||
.sms5_box {position:relative;padding:10px;border-radius:5px;background:#fbec99}
|
||||
.sms5_box .box_ico {position:absolute;top:20px;left:-7px;width:7px;height:13px;background:url('img/box_ico.gif') no-repeat}
|
||||
.sms5_box .box_txt {border:0;background:transparent;word-break:break-all;resize:none;overflow:hidden}
|
||||
.sms5_box .box_square {width:100px;height:90px}
|
||||
|
||||
#send_write {padding:0 20px !important}
|
||||
#send_write h2 {padding:0 0 10px}
|
||||
#send_write .sms5_box {margin:0 0 5px;text-align:center}
|
||||
#send_write .box_txt {width:90%;height:80px}
|
||||
#wr_message_lbl {position:absolute;top:45px;left:48%;color:#999;font-size:0.95em;letter-spacing:-0.1em}
|
||||
|
||||
.write_inner {position:relative;padding:10px 0;border-bottom:1px solid #efefef;zoom:1}
|
||||
.write_inner:after {display:block;visibility:hidden;clear:both;content:''}
|
||||
.write_inner h2 {margin:0;padding:0 0 20px !important}
|
||||
.write_floater {position:absolute;top:10px;right:0;text-align:right}
|
||||
.write_floater_btn {margin:0;padding:0;border:0;background:transparent;color:#999;font-size:0.95em;letter-spacing:-0.1em}
|
||||
|
||||
#write_rcv {margin:0 0 10px}
|
||||
#write_rcv strong {display:inline-block;margin:0 10px 0 0}
|
||||
#write_reply label {display:inline-block;margin:0 10px 0 0;font-weight:bold}
|
||||
#write_reply #mh_reply {padding:0 5px;width:90px;height:20px;border:1px solid #e9e9e9;text-align:center;line-height:1.8em}
|
||||
|
||||
#write_rsv .rsv_line {display:block;height:10px}
|
||||
|
||||
.write_scemo strong {display:block;margin:0 0 10px}
|
||||
.write_scemo .scemo_btn {margin:0 0 1px;padding:10px 0;width:100%;border:0;background:#686868;color:#fff;text-align:center}
|
||||
.write_scemo .scemo_list {display:none;letter-spacing:-4px}
|
||||
.write_scemo .list_closer {margin:5px 0;text-align:right}
|
||||
.write_scemo .list_closer_btn {margin:0;padding:10px 0;width:100%;border:0;background:#383838;color:#fff;letter-spacing:0}
|
||||
.write_scemo .scemo_add {margin:0;padding:0;width:25%;height:40px;border:1px solid #e9e9e9;background:transparent;letter-spacing:0}
|
||||
#write_sc .scemo_list {margin:0 0 20px}
|
||||
|
||||
#sms_byte {position:absolute;top:-27px;right:0;color:#999}
|
||||
|
||||
#send_emo {position:relative;padding:20px;border-top:1px solid #e9e9e9;background:#f7f7f7}
|
||||
#send_emo h2 {margin:0 0 20px}
|
||||
#send_emo .tmp_loading {display:block;padding:180px 0 0;text-align:center}
|
||||
#send_emo #emo_sel {position:absolute;top:20px;right:20px;margin:0}
|
||||
#send_emo .emo_list {margin:0;padding:0;list-style:none}
|
||||
#send_emo li {float:left;margin:0 2% 10px 0;width:49%}
|
||||
#send_emo li:nth-of-type(even) {margin:0 0 10px}
|
||||
#send_emo .sms5_box {background:#fbec99}
|
||||
#send_emo .box_ico {display:none}
|
||||
#send_emo .box_txt {cursor:pointer}
|
||||
#send_emo .emo_tit {display:block;height:20px;line-height:2em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
||||
#send_emo .btn_submit {padding:0 5px;height:24px;border:1px solid #ccc;background:#fafafa;color:#000;font-size:0.95em;vertical-align:middle;cursor:pointer}
|
||||
@ -1,50 +0,0 @@
|
||||
#sms5_send {position:relative}
|
||||
|
||||
.sms5_box {position:relative;padding:10px;border-radius:5px;background:#fbec99}
|
||||
.sms5_box .box_ico {position:absolute;top:20px;left:-7px;width:7px;height:13px;background:url('img/box_ico.gif') no-repeat}
|
||||
.sms5_box .box_txt {border:0;background:transparent;word-break:break-all;resize:none;overflow:hidden}
|
||||
.sms5_box .box_square {width:100px;height:90px}
|
||||
|
||||
#send_write {padding:0 20px !important}
|
||||
#send_write h2 {padding:0 0 10px}
|
||||
#send_write .sms5_box {margin:0 0 5px;text-align:center}
|
||||
#send_write .box_txt {width:390px;height:80px}
|
||||
#wr_message_lbl {position:absolute;top:45px;left:200px;color:#999;font-size:0.95em;letter-spacing:-0.1em}
|
||||
|
||||
.write_inner {position:relative;padding:10px 0;border-bottom:1px solid #efefef;zoom:1}
|
||||
.write_inner:after {display:block;visibility:hidden;clear:both;content:''}
|
||||
.write_inner h2 {margin:0;padding:0 0 10px !important}
|
||||
.write_floater {position:absolute;top:15px;right:0;text-align:right}
|
||||
.write_floater_btn {margin:0;padding:0;border:0;background:transparent;color:#999;font-size:0.95em;letter-spacing:-0.1em}
|
||||
|
||||
#write_rcv {float:left;height:22px;line-height:1.8em}
|
||||
#write_rcv strong {display:inline-block;margin:0 10px 0 0}
|
||||
#write_reply {float:right}
|
||||
#write_reply label {display:inline-block;margin:0 10px 0 0;font-weight:bold}
|
||||
#write_reply #mh_reply {padding:0 5px;width:90px;height:20px;border:1px solid #e9e9e9;text-align:center;line-height:1.8em}
|
||||
|
||||
.write_scemo {width:48%}
|
||||
.write_scemo strong {display:block;margin:0 0 10px}
|
||||
.write_scemo .scemo_list {letter-spacing:-4px}
|
||||
.write_scemo .scemo_add {margin:0;padding:0;height:25px;border:1px solid #e9e9e9;background:transparent;letter-spacing:0}
|
||||
#write_sc {float:left}
|
||||
#write_sc .scemo_add {width:25px}
|
||||
#write_emo {float:right}
|
||||
#write_emo .scemo_list {text-align:right}
|
||||
#write_emo .scemo_add {width:66px}
|
||||
#write_emo .emo_long {}
|
||||
|
||||
#sms_byte {position:absolute;top:-27px;right:0;color:#999}
|
||||
|
||||
#send_emo {position:relative;padding:20px;border-top:1px solid #e9e9e9;background:#f7f7f7}
|
||||
#send_emo h2 {margin:0 0 20px}
|
||||
#send_emo .tmp_loading {display:block;padding:180px 0 0;text-align:center}
|
||||
#send_emo #emo_sel {position:absolute;top:20px;right:20px;margin:0}
|
||||
#send_emo .emo_list {margin:0;padding:0;list-style:none}
|
||||
#send_emo li {float:left;margin:0 10px 10px 0 !important;margin:0 5px 10px 0;width:113px !important;width:110px}
|
||||
#send_emo li:nth-of-type(3n) {margin:0 0 10px !important}
|
||||
#send_emo .sms5_box {background:#fbec99}
|
||||
#send_emo .box_ico {display:none}
|
||||
#send_emo .box_txt {cursor:pointer}
|
||||
#send_emo .emo_tit {display:block;height:20px;line-height:2em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
||||
#send_emo .btn_submit {padding:0 5px;height:24px;border:1px solid #ccc;background:#fafafa;color:#000;font-size:0.95em;vertical-align:middle;cursor:pointer}
|
||||
@ -1,378 +0,0 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||
add_stylesheet('<link rel="stylesheet" href="'.$sms5_skin_url.'/style.css">', 0);
|
||||
?>
|
||||
|
||||
<div id="sms5_send" class="new_win">
|
||||
<h1 id="win_title">SMS 보내기</h1>
|
||||
|
||||
<div id="send_write">
|
||||
<form action="<?php echo $action_url?>" onsubmit="return smssend_submit(this);" name="smsform" method="post" autocomplete="off">
|
||||
<input type="hidden" name="token" value="<?php echo $token?>">
|
||||
<input type="hidden" name="mh_hp" value="">
|
||||
<input type="hidden" name="mb_id" value="<?php echo $mb_id?>">
|
||||
<h2>보낼내용</h2>
|
||||
<div class="sms5_box">
|
||||
<span class="box_ico"></span>
|
||||
<label for="mh_message" id="wr_message_lbl">내용</label>
|
||||
<textarea name="mh_message" id="mh_message" class="box_txt" onkeyup="byte_check('mh_message', 'sms_bytes');"></textarea>
|
||||
<div id="sms_byte"><span id="sms_bytes">0</span> / 80 byte</div>
|
||||
</div>
|
||||
|
||||
<div class="write_inner">
|
||||
<?php if( $mb['mb_id'] ){ //회원 아이디가 있다면 ?>
|
||||
<div id="write_rcv">
|
||||
<strong>수신회원</strong> <?php echo $mb['mb_nick']?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<div id="write_reply">
|
||||
<label for="mh_reply">회신번호</label>
|
||||
<input type="text" name="mh_reply" value="<?php echo $member['mb_hp']?>" id="mh_reply" <?php if ($is_admin != 'super') { ?> readonly<?php } ?>>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="write_rsv" class="write_inner">
|
||||
<h2>예약전송</h2>
|
||||
|
||||
<div class="write_floater">
|
||||
<label for="booking_flag"><span class="sound_only">예약전송 </span>사용</label>
|
||||
<input type="checkbox" name="booking_flag" id="booking_flag" value="true" onclick="booking_show()" >
|
||||
</div>
|
||||
|
||||
<select name="mh_by" id="mh_by" disabled>
|
||||
<option value="<?php echo date('Y')?>"><?php echo date('Y')?></option>
|
||||
<option value="<?php echo date('Y')+1?>"><?php echo date('Y')+1?></option>
|
||||
</select> 년
|
||||
<select name="mh_bm" id="mh_bm" disabled>
|
||||
<?php for ($i=1; $i<=12; $i++) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>" <?php echo date('m')==$i?'selected':''?>><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 월
|
||||
<select name="mh_bd" id="mh_bd" disabled>
|
||||
<?php for ($i=1; $i<=31; $i++) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>" <?php echo date('d')==$i?'selected':''?>><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 일
|
||||
<select name="mh_bh" id="mh_bh" disabled>
|
||||
<?php for ($i=0; $i<24; $i++) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>" <?php echo date('H')+1==$i?'selected':''?>><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 시
|
||||
<select name="mh_bi" id="mh_bi" disabled>
|
||||
<?php for ($i=0; $i<=59; $i+=5) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>"><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 분
|
||||
</div>
|
||||
|
||||
<div class="write_inner">
|
||||
<div id="write_sc" class="write_scemo">
|
||||
<strong>특수기호</strong>
|
||||
<div class="scemo_list">
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('■')">■</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('□')">□</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▣')">▣</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◈')">◈</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◆')">◆</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◇')">◇</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♥')">♥</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♡')">♡</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('●')">●</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('○')">○</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▲')">▲</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▼')">▼</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▶')">▶</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▷')">▷</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◀')">◀</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◁')">◁</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☎')">☎</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☏')">☏</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♠')">♠</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♤')">♤</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♣')">♣</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♧')">♧</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('★')">★</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☆')">☆</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☞')">☞</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☜')">☜</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▒')">▒</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('⊙')">⊙</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('㈜')">㈜</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('№')">№</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('㉿')">㉿</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♨')">♨</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('™')">™</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('℡')">℡</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('∑')">∑</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('∏')">∏</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♬')">♬</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♪')">♪</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♩')">♩</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♭')">♭</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id="write_emo" class="write_scemo">
|
||||
<strong>이모티콘</strong>
|
||||
<div class="scemo_list">
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('*^^*')">*^^*</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♡.♡')">♡.♡</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('@_@')">@_@</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☞_☜')">☞_☜</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('ㅠ ㅠ')">ㅠ ㅠ</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('Θ.Θ')">Θ.Θ</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('^_~♥')">^_~♥</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('~o~')">~o~</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('★.★')">★.★</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('(!.!)')">(!.!)</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('⊙.⊙')">⊙.⊙</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('q.p')">q.p</button>
|
||||
<button type="button" class="scemo_add emo_long" onclick="javascript:add('↖(^-^)↗')">↖(^-^)↗</button>
|
||||
<button type="button" class="scemo_add emo_long" onclick="javascript:add('(*^-^*)')">(*^-^*)</button>
|
||||
<button type="button" class="scemo_add emo_long" onclick="javascript:add('d(^-^)b')">d(^-^)b</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="win_btn">
|
||||
<input type="submit" value="전송" class="btn_submit">
|
||||
<button type="button" onclick="window.close();">창닫기</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
<?php if( count($emoticon_group) ){ //회원에게 공개된 이모티콘 그룹이 있다면 ?>
|
||||
<div id="send_emo">
|
||||
<h2>이모티콘 목록</h2>
|
||||
<form name="emoticon_form">
|
||||
<label for="emo_sel" class="sound_only">이모티콘 그룹</label>
|
||||
<select name="fg_no" id="emo_sel">
|
||||
<option value="" <?php echo $fg_no?'':'selected'?>>전체</option>
|
||||
<?php for($i=0; $i<count($emoticon_group); $i++) {?>
|
||||
<option value="<?php echo $emoticon_group[$i]['fg_no']?>"<?php echo ($fg_no==$emoticon_group[$i]['fg_no'])?'selected':''?>><?php echo $emoticon_group[$i]['fg_name']?> (<?php echo number_format($emoticon_group[$i]['fg_count'])?>)</option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
</form>
|
||||
|
||||
<ul class="emo_list">
|
||||
</ul>
|
||||
|
||||
<nav class="pg_wrap">
|
||||
<span class="pg" id="emoticon_pg"></span>
|
||||
</nav>
|
||||
|
||||
<form name="emoticon_search" id="emoticon_search">
|
||||
<input type="hidden" name="page" id="hidden_page" >
|
||||
</form>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function sms_error(obj, err) {
|
||||
alert(err);
|
||||
obj.value = '';
|
||||
}
|
||||
|
||||
function smssend_submit(f)
|
||||
{
|
||||
if (!f.mh_message.value)
|
||||
{
|
||||
alert('보내실 문자를 입력하십시오.');
|
||||
f.mh_message.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!f.mh_reply.value)
|
||||
{
|
||||
alert('발신 번호를 입력하십시오.\n\n발신 번호는 회원정보의 휴대폰번호입니다.');
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
//f.submit();
|
||||
//win.focus();
|
||||
}
|
||||
|
||||
function booking_show()
|
||||
{
|
||||
if (document.getElementById('booking_flag').checked) {
|
||||
document.getElementById('mh_by').disabled = false;
|
||||
document.getElementById('mh_bm').disabled = false;
|
||||
document.getElementById('mh_bd').disabled = false;
|
||||
document.getElementById('mh_bh').disabled = false;
|
||||
document.getElementById('mh_bi').disabled = false;
|
||||
} else {
|
||||
document.getElementById('mh_by').disabled = true;
|
||||
document.getElementById('mh_bm').disabled = true;
|
||||
document.getElementById('mh_bd').disabled = true;
|
||||
document.getElementById('mh_bh').disabled = true;
|
||||
document.getElementById('mh_bi').disabled = true;
|
||||
}
|
||||
}
|
||||
|
||||
function add(str) {
|
||||
var conts = document.getElementById('mh_message');
|
||||
var bytes = document.getElementById('sms_bytes');
|
||||
conts.focus();
|
||||
conts.value+=str;
|
||||
byte_check('mh_message', 'sms_bytes');
|
||||
return;
|
||||
}
|
||||
|
||||
function byte_check(mh_message, sms_bytes)
|
||||
{
|
||||
var conts = document.getElementById(mh_message);
|
||||
var bytes = document.getElementById(sms_bytes);
|
||||
|
||||
var i = 0;
|
||||
var cnt = 0;
|
||||
var exceed = 0;
|
||||
var ch = '';
|
||||
|
||||
for (i=0; i<conts.value.length; i++)
|
||||
{
|
||||
ch = conts.value.charAt(i);
|
||||
if (escape(ch).length > 4) {
|
||||
cnt += 2;
|
||||
} else {
|
||||
cnt += 1;
|
||||
}
|
||||
}
|
||||
|
||||
bytes.innerHTML = cnt;
|
||||
|
||||
if (cnt > 80)
|
||||
{
|
||||
exceed = cnt - 80;
|
||||
alert('메시지 내용은 80바이트를 넘을수 없습니다.\n\n작성하신 메세지 내용은 '+ exceed +'byte가 초과되었습니다.\n\n초과된 부분은 자동으로 삭제됩니다.');
|
||||
var tcnt = 0;
|
||||
var xcnt = 0;
|
||||
var tmp = conts.value;
|
||||
for (i=0; i<tmp.length; i++)
|
||||
{
|
||||
ch = tmp.charAt(i);
|
||||
if (escape(ch).length > 4) {
|
||||
tcnt += 2;
|
||||
} else {
|
||||
tcnt += 1;
|
||||
}
|
||||
|
||||
if (tcnt > 80) {
|
||||
tmp = tmp.substring(0,i);
|
||||
break;
|
||||
} else {
|
||||
xcnt = tcnt;
|
||||
}
|
||||
}
|
||||
conts.value = tmp;
|
||||
bytes.innerHTML = xcnt;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
byte_check('mh_message', 'sms_bytes');
|
||||
</script>
|
||||
<script src="<?php echo G5_JS_URL?>/jquery.sms_paging.js"></script>
|
||||
<script>
|
||||
var emoticon_list = {
|
||||
go : function(fo_no){
|
||||
var wr_message = document.getElementById('mh_message');
|
||||
|
||||
//wr_message.focus();
|
||||
wr_message.value = document.getElementById('fo_contents_' + fo_no).value;
|
||||
|
||||
byte_check('mh_message', 'sms_bytes');
|
||||
}
|
||||
};
|
||||
(function($){
|
||||
$(".box_txt").bind("focus keydown", function(){
|
||||
$("#wr_message_lbl").hide();
|
||||
});
|
||||
|
||||
var $search_form = $("form#emoticon_search");
|
||||
emoticon_list.fn_paging = function( hash_val,total_page ){
|
||||
$('#emoticon_pg').paging({
|
||||
current:hash_val ? hash_val : 1,
|
||||
max:total_page == 0 || total_page ? total_page : 45,
|
||||
length : 5,
|
||||
liitem : 'span',
|
||||
format:'{0}',
|
||||
next:'next',
|
||||
prev:'prev',
|
||||
first:'<<',last:'>>',
|
||||
href:'#',
|
||||
itemCurrent:'pg_current',
|
||||
itemClass:'pg_page',
|
||||
appendhtml:'<span class="sound_only">페이지</span>',
|
||||
onclick:function(e,page){
|
||||
e.preventDefault();
|
||||
$("#hidden_page").val( page );
|
||||
var params = $($search_form).serialize();
|
||||
emoticon_list.select_page( params, "json" );
|
||||
}
|
||||
});
|
||||
}
|
||||
emoticon_list.loading = function( el, src ){
|
||||
if( !el || !src) return;
|
||||
$(el).append("<span class='tmp_loading'><img src='"+src+"' title='loading...' ></span>");
|
||||
}
|
||||
emoticon_list.loadingEnd = function( el ){
|
||||
$(".tmp_loading", $(el)).remove();
|
||||
}
|
||||
emoticon_list.select_page = function( params, type ){
|
||||
if( !type ){
|
||||
type = "json";
|
||||
}
|
||||
emoticon_list.loading(".emo_list", "<?php echo $sms5_skin_url?>/img/ajax-loader.gif" ); //로딩 이미지 보여줌
|
||||
$.ajax({
|
||||
url: "./ajax.sms_emoticon.php",
|
||||
cache:false,
|
||||
timeout : 30000,
|
||||
dataType:type,
|
||||
data:params,
|
||||
success: function(HttpRequest) {
|
||||
if( type == "json" ){
|
||||
if (HttpRequest.error) {
|
||||
alert(HttpRequest.error);
|
||||
return false;
|
||||
} else {
|
||||
var $emoticon_box = $(".emo_list");
|
||||
var list_text = "";
|
||||
$.each( HttpRequest.list_text , function(num) {
|
||||
var list_data = HttpRequest.list_text[num];
|
||||
list_text = list_text + "<li class=\"screen_list sms5_box\"><span class=\"box_ico\"></span><textarea class=\"sms_textarea box_txt box_square\" readonly onclick=\"emoticon_list.go("+list_data.fo_no+")\">"+list_data.fo_content+"</textarea><textarea id=\"fo_contents_"+list_data.fo_no+"\" style=\"display:none; width:0; height:0\">"+list_data.fo_content+"</textarea><strong class=\"emo_tit\">"+list_data.fo_name+"</strong></li>";
|
||||
});
|
||||
if( !list_text ){
|
||||
list_text = "<li>데이터가 없습니다.</li>";
|
||||
}
|
||||
$emoticon_box.html( list_text );
|
||||
emoticon_list.fn_paging( HttpRequest.page, HttpRequest.total_page );
|
||||
$("#hidden_page").val( HttpRequest.page );
|
||||
}
|
||||
}
|
||||
emoticon_list.loadingEnd(".emo_list"); //로딩 이미지 지움
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$("#emo_sel").bind("change", function(e){
|
||||
var params = { fg_no : $(this).val() };
|
||||
$search_form[0].reset();
|
||||
$("#hidden_fg_no").val( $(this).val() );
|
||||
emoticon_list.select_page( params, "json" );
|
||||
});
|
||||
$search_form.submit(function(e){
|
||||
e.preventDefault();
|
||||
var $form = $(this),
|
||||
params = $(this).serialize();
|
||||
emoticon_list.select_page( params, "json" );
|
||||
});
|
||||
if( $("#emo_sel").length ){
|
||||
$("#emo_sel").trigger("change");
|
||||
}
|
||||
})(jQuery);
|
||||
</script>
|
||||
@ -1,394 +0,0 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||
add_stylesheet('<link rel="stylesheet" href="'.$sms5_skin_url.'/mobile.css">', 0);
|
||||
?>
|
||||
|
||||
<div id="sms5_send" class="new_win">
|
||||
<h1 id="win_title">SMS 보내기</h1>
|
||||
|
||||
<div id="send_write">
|
||||
<form action="<?php echo $action_url?>" onsubmit="return smssend_submit(this);" name="smsform" method="post" autocomplete="off">
|
||||
<input type="hidden" name="token" value="<?php echo $token?>">
|
||||
<input type="hidden" name="mh_hp" value="">
|
||||
<input type="hidden" name="mb_id" value="<?php echo $mb_id?>">
|
||||
<h2>보낼내용</h2>
|
||||
<div class="sms5_box">
|
||||
<span class="box_ico"></span>
|
||||
<label for="mh_message" id="wr_message_lbl">내용</label>
|
||||
<textarea name="mh_message" id="mh_message" class="box_txt" onkeyup="byte_check('mh_message', 'sms_bytes');"></textarea>
|
||||
<div id="sms_byte"><span id="sms_bytes">0</span> / 80 byte</div>
|
||||
</div>
|
||||
|
||||
<div class="write_inner">
|
||||
<?php if( $mb['mb_id'] ){ //회원 아이디가 있다면 ?>
|
||||
<div id="write_rcv">
|
||||
<strong>수신회원</strong> <?php echo $mb['mb_nick']?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<div id="write_reply">
|
||||
<label for="mh_reply">회신번호</label>
|
||||
<input type="text" name="mh_reply" value="<?php echo $member['mb_hp']?>" id="mh_reply" <?php if ($is_admin != 'super') { ?> readonly<?php } ?>>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="write_rsv" class="write_inner">
|
||||
<h2>예약전송</h2>
|
||||
|
||||
<div class="write_floater">
|
||||
<label for="booking_flag"><span class="sound_only">예약전송 </span>사용</label>
|
||||
<input type="checkbox" name="booking_flag" id="booking_flag" value="true" onclick="booking_show()" >
|
||||
</div>
|
||||
|
||||
<select name="mh_by" id="mh_by" disabled>
|
||||
<option value="<?php echo date('Y')?>"><?php echo date('Y')?></option>
|
||||
<option value="<?php echo date('Y')+1?>"><?php echo date('Y')+1?></option>
|
||||
</select> 년
|
||||
<select name="mh_bm" id="mh_bm" disabled>
|
||||
<?php for ($i=1; $i<=12; $i++) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>" <?php echo date('m')==$i?'selected':''?>><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 월
|
||||
<span class="rsv_line"></span>
|
||||
<select name="mh_bd" id="mh_bd" disabled>
|
||||
<?php for ($i=1; $i<=31; $i++) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>" <?php echo date('d')==$i?'selected':''?>><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 일
|
||||
<select name="mh_bh" id="mh_bh" disabled>
|
||||
<?php for ($i=0; $i<24; $i++) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>" <?php echo date('H')+1==$i?'selected':''?>><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 시
|
||||
<select name="mh_bi" id="mh_bi" disabled>
|
||||
<?php for ($i=0; $i<=59; $i+=5) { ?>
|
||||
<option value="<?php echo sprintf("%02d",$i)?>"><?php echo sprintf("%02d",$i)?></option>
|
||||
<?php } ?>
|
||||
</select> 분
|
||||
</div>
|
||||
|
||||
<div class="write_inner">
|
||||
<div id="write_sc" class="write_scemo">
|
||||
<button type="button" id="scemo_sc" class="scemo_btn">특수기호</button>
|
||||
<div class="scemo_list scemo_sc">
|
||||
<div class="list_closer"><button type="button" class="list_closer_btn">특수기호닫기</button></div>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('■')">■</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('□')">□</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▣')">▣</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◈')">◈</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◆')">◆</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◇')">◇</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♥')">♥</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♡')">♡</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('●')">●</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('○')">○</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▲')">▲</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▼')">▼</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▶')">▶</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▷')">▷</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◀')">◀</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('◁')">◁</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☎')">☎</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☏')">☏</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♠')">♠</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♤')">♤</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♣')">♣</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♧')">♧</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('★')">★</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☆')">☆</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☞')">☞</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☜')">☜</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('▒')">▒</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('⊙')">⊙</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('㈜')">㈜</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('№')">№</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('㉿')">㉿</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♨')">♨</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('™')">™</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('℡')">℡</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('∑')">∑</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('∏')">∏</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♬')">♬</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♪')">♪</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♩')">♩</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♭')">♭</button>
|
||||
<div class="list_closer"><button type="button" class="list_closer_btn">특수기호닫기</button></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="write_emo" class="write_scemo">
|
||||
<button type="button" id="scemo_emo" class="scemo_btn">이모티콘</button>
|
||||
<div class="scemo_list scemo_emo">
|
||||
<div class="list_closer"><button type="button" class="list_closer_btn">이모티콘닫기</button></div>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('*^^*')">*^^*</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('♡.♡')">♡.♡</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('@_@')">@_@</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('☞_☜')">☞_☜</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('ㅠ ㅠ')">ㅠ ㅠ</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('Θ.Θ')">Θ.Θ</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('^_~♥')">^_~♥</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('~o~')">~o~</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('★.★')">★.★</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('(!.!)')">(!.!)</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('⊙.⊙')">⊙.⊙</button>
|
||||
<button type="button" class="scemo_add" onclick="javascript:add('q.p')">q.p</button>
|
||||
<button type="button" class="scemo_add emo_long" onclick="javascript:add('↖(^-^)↗')">↖(^-^)↗</button>
|
||||
<button type="button" class="scemo_add emo_long" onclick="javascript:add('(*^-^*)')">(*^-^*)</button>
|
||||
<button type="button" class="scemo_add emo_long" onclick="javascript:add('d(^-^)b')">d(^-^)b</button>
|
||||
<div class="list_closer"><button type="button" class="list_closer_btn">이모티콘닫기</button></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="win_btn">
|
||||
<input type="submit" value="전송" class="btn_submit">
|
||||
<button type="button" onclick="window.close();">창닫기</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
<?php if( count($emoticon_group) ){ //회원에게 공개된 이모티콘 그룹이 있다면 ?>
|
||||
<div id="send_emo">
|
||||
<h2>이모티콘 목록</h2>
|
||||
<form name="emoticon_form">
|
||||
<label for="emo_sel" class="sound_only">이모티콘 그룹</label>
|
||||
<select name="fg_no" id="emo_sel">
|
||||
<option value="" <?php echo $fg_no?'':'selected'?>>전체</option>
|
||||
<?php for($i=0; $i<count($emoticon_group); $i++) {?>
|
||||
<option value="<?php echo $emoticon_group[$i]['fg_no']?>"<?php echo ($fg_no==$emoticon_group[$i]['fg_no'])?'selected':''?>><?php echo $emoticon_group[$i]['fg_name']?> (<?php echo number_format($emoticon_group[$i]['fg_count'])?>)</option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
</form>
|
||||
|
||||
<ul class="emo_list">
|
||||
</ul>
|
||||
|
||||
<nav class="pg_wrap">
|
||||
<span class="pg" id="emoticon_pg"></span>
|
||||
</nav>
|
||||
|
||||
<form name="emoticon_search" id="emoticon_search">
|
||||
<input type="hidden" name="page" id="hidden_page" >
|
||||
</form>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function sms_error(obj, err) {
|
||||
alert(err);
|
||||
obj.value = '';
|
||||
}
|
||||
|
||||
function smssend_submit(f)
|
||||
{
|
||||
if (!f.mh_message.value)
|
||||
{
|
||||
alert('보내실 문자를 입력하십시오.');
|
||||
f.mh_message.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!f.mh_reply.value)
|
||||
{
|
||||
alert('발신 번호를 입력하십시오.\n\n발신 번호는 회원정보의 휴대폰번호입니다.');
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
//f.submit();
|
||||
//win.focus();
|
||||
}
|
||||
|
||||
function booking_show()
|
||||
{
|
||||
if (document.getElementById('booking_flag').checked) {
|
||||
document.getElementById('mh_by').disabled = false;
|
||||
document.getElementById('mh_bm').disabled = false;
|
||||
document.getElementById('mh_bd').disabled = false;
|
||||
document.getElementById('mh_bh').disabled = false;
|
||||
document.getElementById('mh_bi').disabled = false;
|
||||
} else {
|
||||
document.getElementById('mh_by').disabled = true;
|
||||
document.getElementById('mh_bm').disabled = true;
|
||||
document.getElementById('mh_bd').disabled = true;
|
||||
document.getElementById('mh_bh').disabled = true;
|
||||
document.getElementById('mh_bi').disabled = true;
|
||||
}
|
||||
}
|
||||
|
||||
function add(str) {
|
||||
var conts = document.getElementById('mh_message');
|
||||
var bytes = document.getElementById('sms_bytes');
|
||||
conts.focus();
|
||||
conts.value+=str;
|
||||
byte_check('mh_message', 'sms_bytes');
|
||||
return;
|
||||
}
|
||||
|
||||
function byte_check(mh_message, sms_bytes)
|
||||
{
|
||||
var conts = document.getElementById(mh_message);
|
||||
var bytes = document.getElementById(sms_bytes);
|
||||
|
||||
var i = 0;
|
||||
var cnt = 0;
|
||||
var exceed = 0;
|
||||
var ch = '';
|
||||
|
||||
for (i=0; i<conts.value.length; i++)
|
||||
{
|
||||
ch = conts.value.charAt(i);
|
||||
if (escape(ch).length > 4) {
|
||||
cnt += 2;
|
||||
} else {
|
||||
cnt += 1;
|
||||
}
|
||||
}
|
||||
|
||||
bytes.innerHTML = cnt;
|
||||
|
||||
if (cnt > 80)
|
||||
{
|
||||
exceed = cnt - 80;
|
||||
alert('메시지 내용은 80바이트를 넘을수 없습니다.\n\n작성하신 메세지 내용은 '+ exceed +'byte가 초과되었습니다.\n\n초과된 부분은 자동으로 삭제됩니다.');
|
||||
var tcnt = 0;
|
||||
var xcnt = 0;
|
||||
var tmp = conts.value;
|
||||
for (i=0; i<tmp.length; i++)
|
||||
{
|
||||
ch = tmp.charAt(i);
|
||||
if (escape(ch).length > 4) {
|
||||
tcnt += 2;
|
||||
} else {
|
||||
tcnt += 1;
|
||||
}
|
||||
|
||||
if (tcnt > 80) {
|
||||
tmp = tmp.substring(0,i);
|
||||
break;
|
||||
} else {
|
||||
xcnt = tcnt;
|
||||
}
|
||||
}
|
||||
conts.value = tmp;
|
||||
bytes.innerHTML = xcnt;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
byte_check('mh_message', 'sms_bytes');
|
||||
</script>
|
||||
<script src="<?php echo G5_JS_URL?>/jquery.sms_paging.js"></script>
|
||||
<script>
|
||||
var emoticon_list = {
|
||||
go : function(fo_no){
|
||||
var wr_message = document.getElementById('mh_message');
|
||||
|
||||
//wr_message.focus();
|
||||
wr_message.value = document.getElementById('fo_contents_' + fo_no).value;
|
||||
|
||||
byte_check('mh_message', 'sms_bytes');
|
||||
}
|
||||
};
|
||||
(function($){
|
||||
$(".box_txt").bind("focus keydown", function(){
|
||||
$("#wr_message_lbl").hide();
|
||||
});
|
||||
|
||||
var $search_form = $("form#emoticon_search");
|
||||
emoticon_list.fn_paging = function( hash_val,total_page ){
|
||||
$('#emoticon_pg').paging({
|
||||
current:hash_val ? hash_val : 1,
|
||||
max:total_page == 0 || total_page ? total_page : 45,
|
||||
length : 5,
|
||||
liitem : 'span',
|
||||
format:'{0}',
|
||||
next:'next',
|
||||
prev:'prev',
|
||||
first:'<<',last:'>>',
|
||||
href:'#',
|
||||
itemCurrent:'pg_current',
|
||||
itemClass:'pg_page',
|
||||
appendhtml:'<span class="sound_only">페이지</span>',
|
||||
onclick:function(e,page){
|
||||
e.preventDefault();
|
||||
$("#hidden_page").val( page );
|
||||
var params = $($search_form).serialize();
|
||||
emoticon_list.select_page( params, "json" );
|
||||
}
|
||||
});
|
||||
}
|
||||
emoticon_list.loading = function( el, src ){
|
||||
if( !el || !src) return;
|
||||
$(el).append("<span class='tmp_loading'><img src='"+src+"' title='loading...' ></span>");
|
||||
}
|
||||
emoticon_list.loadingEnd = function( el ){
|
||||
$(".tmp_loading", $(el)).remove();
|
||||
}
|
||||
emoticon_list.select_page = function( params, type ){
|
||||
if( !type ){
|
||||
type = "json";
|
||||
}
|
||||
emoticon_list.loading(".emo_list", "<?php echo $sms5_skin_url?>/img/ajax-loader.gif" ); //로딩 이미지 보여줌
|
||||
$.ajax({
|
||||
url: "./ajax.sms_emoticon.php",
|
||||
cache:false,
|
||||
timeout : 30000,
|
||||
dataType:type,
|
||||
data:params,
|
||||
success: function(HttpRequest) {
|
||||
if( type == "json" ){
|
||||
if (HttpRequest.error) {
|
||||
alert(HttpRequest.error);
|
||||
return false;
|
||||
} else {
|
||||
var $emoticon_box = $(".emo_list");
|
||||
var list_text = "";
|
||||
$.each( HttpRequest.list_text , function(num) {
|
||||
var list_data = HttpRequest.list_text[num];
|
||||
list_text = list_text + "<li class=\"screen_list\"><div class=\"sms5_box\"><span class=\"box_ico\"></span><textarea class=\"sms_textarea box_txt box_square\" readonly onclick=\"emoticon_list.go("+list_data.fo_no+")\">"+list_data.fo_content+"</textarea><textarea id=\"fo_contents_"+list_data.fo_no+"\" style=\"display:none; width:0; height:0\">"+list_data.fo_content+"</textarea><strong class=\"emo_tit\">"+list_data.fo_name+"</strong></div></li>";
|
||||
});
|
||||
if( !list_text ){
|
||||
list_text = "<li>데이터가 없습니다.</li>";
|
||||
}
|
||||
$emoticon_box.html( list_text );
|
||||
emoticon_list.fn_paging( HttpRequest.page, HttpRequest.total_page );
|
||||
$("#hidden_page").val( HttpRequest.page );
|
||||
}
|
||||
}
|
||||
emoticon_list.loadingEnd(".emo_list"); //로딩 이미지 지움
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$("#emo_sel").bind("change", function(e){
|
||||
var params = { fg_no : $(this).val() };
|
||||
$search_form[0].reset();
|
||||
$("#hidden_fg_no").val( $(this).val() );
|
||||
emoticon_list.select_page( params, "json" );
|
||||
});
|
||||
$search_form.submit(function(e){
|
||||
e.preventDefault();
|
||||
var $form = $(this),
|
||||
params = $(this).serialize();
|
||||
emoticon_list.select_page( params, "json" );
|
||||
});
|
||||
if( $("#emo_sel").length ){
|
||||
$("#emo_sel").trigger("change");
|
||||
}
|
||||
|
||||
$(".scemo_btn").click(function(){
|
||||
var scemoid = $(this).attr("id");
|
||||
$(this).hide();
|
||||
$(".scemo_list").hide();
|
||||
$("."+scemoid).show();
|
||||
});
|
||||
$(".list_closer_btn").click(function(){
|
||||
$(".scemo_btn").show();
|
||||
$(".scemo_list").hide();
|
||||
});
|
||||
})(jQuery);
|
||||
</script>
|
||||
@ -7,19 +7,6 @@ if (!defined('_GNUBOARD_')) exit;
|
||||
**
|
||||
*************************************************************************/
|
||||
|
||||
// 스킨디렉토리를 SELECT 형식으로 얻음
|
||||
function get_sms5_skin_select($skin_gubun, $id, $name, $selected='', $event='')
|
||||
{
|
||||
$skins = get_skin_dir($skin_gubun, G5_SMS5_PATH);
|
||||
$str = "<select id=\"$id\" name=\"$name\" $event>\n";
|
||||
for ($i=0; $i<count($skins); $i++) {
|
||||
if ($i == 0) $str .= "<option value=\"\">선택</option>";
|
||||
$str .= option_selected($skins[$i], $selected);
|
||||
}
|
||||
$str .= "</select>";
|
||||
return $str;
|
||||
}
|
||||
|
||||
// 한페이지에 보여줄 행, 현재페이지, 총페이지수, URL
|
||||
function sms5_sub_paging($write_pages, $cur_page, $total_page, $url, $add="", $starget="")
|
||||
{
|
||||
|
||||
@ -1,75 +0,0 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit;
|
||||
|
||||
if(!$config['cf_sms_use'])
|
||||
alert_close('문자보내기를 이용하실 수 없습니다.');
|
||||
|
||||
if( !$sms5['bo_skin'] ){
|
||||
$sms5['bo_skin'] = "basic";
|
||||
}
|
||||
|
||||
$err = null;
|
||||
|
||||
if (!$mb_id){
|
||||
$err = "받는회원 아이디가 넘어오지 않았습니다.";
|
||||
alert_close($err);
|
||||
}
|
||||
if (!$sms5['cf_member']){
|
||||
$err = "문자전송이 허용되지 않았습니다.\\n\\n사이트 관리자에게 문의하여 주십시오.";
|
||||
alert_close($err);
|
||||
}
|
||||
if (!$err and !$is_member){
|
||||
$err = "로그인 해주세요.";
|
||||
alert_close($err);
|
||||
}
|
||||
if (!$err and $member['mb_level'] < $sms5['cf_level']){
|
||||
$err = "회원 {$sms5['cf_level']} 레벨 이상만 문자전송이 가능합니다.";
|
||||
alert_close($err);
|
||||
}
|
||||
// 오늘 문자를 보낸 총 건수
|
||||
$row = sql_fetch(" select count(*) as cnt from {$g5['sms5_member_history_table']} where mb_id='{$member['mb_id']}' and date_format(mh_datetime, '%Y-%m-%d') = '".G5_TIME_YMD."' ");
|
||||
$total = $row['cnt'];
|
||||
|
||||
// 건수 제한
|
||||
if (!$err and $sms5['cf_day_count'] > 0 && $is_admin != 'super') {
|
||||
if ($total >= $sms5['cf_day_count']) {
|
||||
$err = "하루에 보낼수 있는 문자갯수(".number_format($sms5['cf_day_count'])." 건)를 초과하였습니다.";
|
||||
alert_close($err);
|
||||
}
|
||||
}
|
||||
|
||||
// 포인트 검사
|
||||
if (!$err and $sms5['cf_point'] > 0 && $is_admin != 'super') {
|
||||
if ($sms5['cf_point'] > $member['mb_point']) {
|
||||
$err = "보유하신 포인트(".number_format($member['mb_point'])." 포인트)가 없거나 모자라서\\n\\n문자전송(".number_format($sms5['cf_point'])." 포인트)이 불가합니다.\\n\\n포인트를 적립하신 후 다시 시도 해 주십시오.";
|
||||
alert_close($err);
|
||||
}
|
||||
}
|
||||
|
||||
// 특정회원에게 문자 전송
|
||||
if ($mb_id) {
|
||||
$mb = get_member($mb_id);
|
||||
if (!$mb['mb_hp']) alert_close("회원 휴대폰번호가 없습니다.");
|
||||
if (!$mb['mb_open']) alert_close("정보를 공개하지 않았습니다.");
|
||||
if (!$mb['mb_sms']) alert_close("SMS 수신여부가 비활성화 되어 있습니다.");
|
||||
//$hp = $mb['mb_hp'];
|
||||
}
|
||||
|
||||
$g5['title'] = "문자전송";
|
||||
|
||||
$token = get_token();
|
||||
|
||||
$emoticon_group = array();
|
||||
$qry = sql_query("select * from {$g5['sms5_form_group_table']} where fg_member = 1 order by fg_name");
|
||||
while ($res = sql_fetch_array($qry)) array_push($emoticon_group, $res);
|
||||
|
||||
$action_url = "./write_update.php";
|
||||
|
||||
if( G5_IS_MOBILE ){
|
||||
$write_skin_page = "/write_mobile.skin.php";
|
||||
} else {
|
||||
$write_skin_page = "/write.skin.php";
|
||||
}
|
||||
include_once ($sms5_skin_path.$write_skin_page);
|
||||
echo PHP_EOL.'<!-- skin : '.$sms5['bo_skin'].' -->'.PHP_EOL;
|
||||
?>
|
||||
@ -1,170 +0,0 @@
|
||||
<?php
|
||||
include_once("./_common.php");
|
||||
|
||||
if(!$config['cf_sms_use'])
|
||||
alert_close('문자보내기를 이용하실 수 없습니다.');
|
||||
|
||||
// SMS 라이브러리
|
||||
$config['cf_sms_type'] = '';
|
||||
include_once(G5_LIB_PATH.'/icode.sms.lib.php');
|
||||
include_once(G5_SMS5_PATH.'/sms5.lib.php');
|
||||
|
||||
$g5['title'] = "문자전송중";
|
||||
|
||||
if (!($token && get_session("ss_token") == $token))
|
||||
die("올바른 방법으로 사용해 주십시오.");
|
||||
|
||||
if (!$sms5['cf_member'])
|
||||
die("문자전송이 허용되지 않았습니다. 사이트 관리자에게 문의하여 주십시오.");
|
||||
|
||||
if (!$is_member)
|
||||
die("로그인 해주세요.");
|
||||
|
||||
if ($member['mb_level'] < $sms5['cf_level'])
|
||||
alert("회원 {$sms5['cf_level']}레벨 이상만 문자전송이 가능합니다.");
|
||||
|
||||
$mh_reply = preg_replace('#[^0-9\-]#', '', trim($mh_reply));
|
||||
$mh_message = clean_xss_tags(trim($mh_message));
|
||||
|
||||
if (!$mh_reply)
|
||||
alert('보내는 번호를 입력해주세요.');
|
||||
|
||||
if (!$mh_message)
|
||||
alert('메세지를 입력해주세요.');
|
||||
|
||||
if ($is_admin != 'super')
|
||||
{
|
||||
$mh_reply = get_hp($mh_reply, 0);
|
||||
if (!$mh_reply)
|
||||
alert("보내는 번호가 올바르지 않습니다.");
|
||||
}
|
||||
else
|
||||
{
|
||||
$mh_reply = str_replace("-", "", $mh_reply);;
|
||||
if (!check_string($mh_reply, G5_NUMERIC))
|
||||
alert("보내는 번호가 올바르지 않습니다.");
|
||||
}
|
||||
|
||||
$mh_hp = explode(',', $mh_hp);
|
||||
|
||||
if ($mb_id) {
|
||||
$mb = get_member($mb_id);
|
||||
if (!$mb['mb_sms'] || !$mb['mb_open']) {
|
||||
alert("정보를 공개하지 않았습니다.");
|
||||
}
|
||||
if( $mb['mb_hp'] ){
|
||||
array_push( $mh_hp, $mb['mb_hp'] );
|
||||
}
|
||||
}
|
||||
|
||||
if (!count($mh_hp))
|
||||
alert('받는 번호를 입력해주세요.');
|
||||
|
||||
// 핸드폰 번호만 걸러낸다.
|
||||
$tmp = array();
|
||||
for ($i=0; $i<count($mh_hp); $i++)
|
||||
{
|
||||
$hp = trim($mh_hp[$i]);
|
||||
$hp = get_hp($hp);
|
||||
|
||||
if ($hp)
|
||||
$tmp[]['bk_hp'] = get_hp($hp, 0);
|
||||
}
|
||||
$mh_hp = $tmp;
|
||||
|
||||
$total = count($mh_hp);
|
||||
|
||||
// 건수 제한
|
||||
if ($sms5['cf_day_count'] > 0 && $is_admin != 'super') {
|
||||
$row = sql_fetch(" select count(*) as cnt from {$g5['sms5_member_history_table']} where mb_id='{$member['mb_id']}' and date_format(mh_datetime, '%Y-%m-%d') = '".G5_TIME_YMD."' ");
|
||||
if ($row['cnt'] + $total > $sms5['cf_day_count']) {
|
||||
alert("하루에 보낼수 있는 문자갯수(".number_format($sms5['cf_day_count']).")를 초과하였습니다.");
|
||||
}
|
||||
}
|
||||
|
||||
// 포인트 검사
|
||||
if ($sms5['cf_point'] > 0 && $is_admin != 'super') {
|
||||
$minus_point = $sms5['cf_point'] * $total;
|
||||
if ($minus_point > $member['mb_point'])
|
||||
alert("보유하신 포인트(".number_format($member['mb_point']).")가 없거나 모자라서 문자전송(".number_format($minus_point).")이 불가합니다.\\n\\n포인트를 적립하신 후 다시 시도 해 주십시오.");
|
||||
} else
|
||||
$minus_point = 0;
|
||||
|
||||
// 예약전송
|
||||
if ($mh_by && $mh_bm && $mh_bd && $mh_bh && $mh_bi) {
|
||||
$mh_booking = "$mh_by-$mh_bm-$mh_bd $mh_bh:$mh_bi:00";
|
||||
$booking = $mh_by.$mh_bm.$mh_bd.$mh_bh.$mh_bi;
|
||||
} else {
|
||||
$mh_booking = '';
|
||||
$booking = '';
|
||||
}
|
||||
|
||||
$SMS = new SMS5;
|
||||
$SMS->SMS_con($config['cf_icode_server_ip'], $config['cf_icode_id'], $config['cf_icode_pw'], $config['cf_icode_server_port']);
|
||||
|
||||
$mh_message = conv_unescape_nl($mh_message);
|
||||
|
||||
$result = $SMS->Add($mh_hp, $mh_reply, '', '', $mh_message, $booking, $total);
|
||||
|
||||
$is_success = null;
|
||||
|
||||
if ($result)
|
||||
{
|
||||
$result = $SMS->Send();
|
||||
|
||||
if ($result) //SMS 서버에 접속했습니다.
|
||||
{
|
||||
foreach ($SMS->Result as $result)
|
||||
{
|
||||
list($hp, $code) = explode(":", $result);
|
||||
|
||||
if (substr($code,0,5) == "Error")
|
||||
{
|
||||
$is_success = false;
|
||||
|
||||
switch (substr($code,6,2)) {
|
||||
case '02': // "02:형식오류"
|
||||
$mh_log = "형식이 잘못되어 전송이 실패하였습니다.";
|
||||
break;
|
||||
case '23': // "23:인증실패,데이터오류,전송날짜오류"
|
||||
$mh_log = "데이터를 다시 확인해 주시기바랍니다.";
|
||||
break;
|
||||
case '97': // "97:잔여코인부족"
|
||||
$mh_log = "잔여코인이 부족합니다.";
|
||||
break;
|
||||
case '98': // "98:사용기간만료"
|
||||
$mh_log = "사용기간이 만료되었습니다.";
|
||||
break;
|
||||
case '99': // "99:인증실패"
|
||||
$mh_log = "인증 받지 못하였습니다. 계정을 다시 확인해 주세요.";
|
||||
break;
|
||||
default: // "미 확인 오류"
|
||||
$mh_log = "알 수 없는 오류로 전송이 실패하었습니다.";
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$is_success = true;
|
||||
$mh_log = "문자전송:".get_hp($hp, 1);
|
||||
}
|
||||
|
||||
$hp = get_hp($hp, 1);
|
||||
$log = array_shift($SMS->Log);
|
||||
sql_query("insert into {$g5['sms5_member_history_table']} set mb_id='{$member['mb_id']}', mh_reply='$mh_reply', mh_hp='$hp', mh_datetime='".G5_TIME_YMDHIS."', mh_booking='$mh_booking', mh_log='$mh_log', mh_ip='".$_SERVER['REMOTE_ADDR']."'");
|
||||
|
||||
if ($is_admin == 'super')
|
||||
$sms5['cf_point'] = 0;
|
||||
|
||||
if ($is_success)
|
||||
insert_point($member['mb_id'], (-1) * $sms5['cf_point'], "$mh_log");
|
||||
|
||||
}
|
||||
$SMS->Init(); // 보관하고 있던 결과값을 지웁니다.
|
||||
}
|
||||
else alert("에러: SMS 서버와 통신이 불안정합니다.");
|
||||
}
|
||||
else alert("에러: SMS 데이터 입력도중 에러가 발생하였습니다.");
|
||||
|
||||
alert_close("$total 건의 문자메세지 전송을 완료하였습니다.");
|
||||
?>
|
||||
Reference in New Issue
Block a user