first
This commit is contained in:
33
modules/member/action/a.point_delete.php
Normal file
33
modules/member/action/a.point_delete.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
if(!defined('__KIMS__')) exit;
|
||||
|
||||
if (!$my['uid'])
|
||||
{
|
||||
getLink('','','정상적인 접근이 아닙니다.','');
|
||||
}
|
||||
|
||||
$pointType = $pointType ? $pointType : 'point';
|
||||
if ($my['admin'])
|
||||
{
|
||||
foreach($members as $val)
|
||||
{
|
||||
$P = getUidData($table['s_'.$pointType],$val);
|
||||
if (!$P['uid']) continue;
|
||||
|
||||
getDbDelete($table['s_'.$pointType],'uid='.$P['uid']);
|
||||
getDbUpdate($table['s_mbrdata'],$pointType.'='.$pointType.'-'.$P['price'],'memberuid='.$P['my_mbruid']);
|
||||
}
|
||||
}
|
||||
else {
|
||||
foreach($members as $val)
|
||||
{
|
||||
$P = getUidData($table['s_'.$pointType],$val);
|
||||
if (!$P['uid'] || $my['uid'] != $P['my_mbruid']) continue;
|
||||
|
||||
getDbDelete($table['s_'.$pointType],'uid='.$P['uid'].' and my_mbruid='.$my['uid']);
|
||||
getDbUpdate($table['s_mbrdata'],$pointType.'='.$pointType.'-'.$P['price'],'memberuid='.$my['uid']);
|
||||
}
|
||||
}
|
||||
setrawcookie('member_point_result', rawurlencode($pointType.'가 삭제 되었습니다.|success')); // 처리여부 cookie 저장
|
||||
getLink('reload','parent.','','');
|
||||
?>
|
||||
Reference in New Issue
Block a user