- Timestamp:
- 2012/11/05 18:30:06 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/helper/SC_Helper_Customer.php
r22065 r22074 636 636 return array($linemax, $arrData, $objNavi); 637 637 } 638 639 /** 640 * 仮会員かどうかを判定する. 641 * 642 * @param string $login_email メールアドレス 643 * @return boolean 仮会員の場合 true 644 */ 645 public function checkTempCustomer($login_email) { 646 $objQuery =& SC_Query_Ex::getSingletonInstance(); 647 $where = 'email = ? AND status = 1 AND del_flg = 0'; 648 $exists = $objQuery->exists('dtb_customer', $where, array($login_email)); 649 return $exists; 650 } 638 651 }
Note: See TracChangeset
for help on using the changeset viewer.
