source: branches/mobile/data/lib/slib.php @ 11524

Revision 11524, 73.7 KB checked in by rebelt, 16 years ago (diff)

下記の問題点の修正です。

  • 検証結果1,2,3,7
  • MYページで簡単ログインが利用できない。
  • MYページで扱うメールアドレスがPCサイト用のものになっている。
  • メルマガ登録・解除の確認メールが文字化けする場合がある。
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2/*
3 * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8//---¤³¤Î¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤ò»ØÄê
9$INC_PATH = realpath( dirname( __FILE__) );
10require_once( $INC_PATH ."/../conf/conf.php" );
11require_once( $INC_PATH ."/../class/SC_DbConn.php" );
12require_once( $INC_PATH ."/../class/SC_Query.php" );
13require_once( $INC_PATH ."/../include/session.inc" );
14
15// Á´¥Ú¡¼¥¸¶¦ÄÌ¥¨¥é¡¼
16$GLOBAL_ERR = "";
17
18// ¥¤¥ó¥¹¥È¡¼¥ë½é´ü½èÍý
19sfInitInstall();
20
21/* ¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥Ð¡¼¥¸¥ç¥ó½êÆÀ */
22function sfGetDBVersion($dsn = "") {
23    if($dsn == "") {
24        if(defined('DEFAULT_DSN')) {
25            $dsn = DEFAULT_DSN;
26        } else {
27            return;
28        }
29    }
30   
31    $objQuery = new SC_Query($dsn, true, true);
32    list($db_type) = split(":", $dsn);
33    if($db_type == 'mysql') {
34        $val = $objQuery->getOne("select version()");
35        $version = "MySQL " . $val;
36    }   
37    if($db_type == 'pgsql') {
38        $val = $objQuery->getOne("select version()");
39        $arrLine = split(" " , $val);
40        $version = $arrLine[0] . " " . $arrLine[1];
41    }
42    return $version;
43}
44
45/* ¥Æ¡¼¥Ö¥ë¤Î¸ºß¥Á¥§¥Ã¥¯ */
46function sfTabaleExists($table_name, $dsn = "") {
47    if($dsn == "") {
48        if(defined('DEFAULT_DSN')) {
49            $dsn = DEFAULT_DSN;
50        } else {
51            return;
52        }
53    }
54   
55    $objQuery = new SC_Query($dsn, true, true);
56    // Àµ¾ï¤ËÀܳ¤µ¤ì¤Æ¤¤¤ë¾ì¹ç
57    if(!$objQuery->isError()) {
58        list($db_type) = split(":", $dsn);
59        // postgresql¤Èmysql¤È¤Ç½èÍý¤òʬ¤±¤ë
60        if ($db_type == "pgsql") {
61            $sql = "SELECT
62                        relname
63                    FROM
64                        pg_class
65                    WHERE
66                        (relkind = 'r' OR relkind = 'v') AND
67                        relname = ?
68                    GROUP BY
69                        relname";
70            $arrRet = $objQuery->getAll($sql, array($table_name));
71            if(count($arrRet) > 0) {
72                return true;
73            }
74        }else if ($db_type == "mysql") {
75            $sql = "SHOW TABLE STATUS LIKE ?";
76            $arrRet = $objQuery->getAll($sql, array($table_name));
77            if(count($arrRet) > 0) {
78                return true;
79            }
80        }
81    }
82    return false;
83}
84
85// ¥«¥é¥à¤Î¸ºß¥Á¥§¥Ã¥¯
86function sfColumnExists($table_name, $col_name, $col_type = "", $dsn = "", $add = false) {
87    if($dsn == "") {
88        if(defined('DEFAULT_DSN')) {
89            $dsn = DEFAULT_DSN;
90        } else {
91            return;
92        }
93    }
94
95    // ¥Æ¡¼¥Ö¥ë¤¬Ìµ¤±¤ì¤Ð¥¨¥é¡¼
96    if(!sfTabaleExists($table_name, $dsn)) return false;
97   
98    $objQuery = new SC_Query($dsn, true, true);
99    // Àµ¾ï¤ËÀܳ¤µ¤ì¤Æ¤¤¤ë¾ì¹ç
100    if(!$objQuery->isError()) {
101        list($db_type) = split(":", $dsn);
102       
103        // ¥«¥é¥à¥ê¥¹¥È¤ò¼èÆÀ
104        $arrRet = sfGetColumnList($table_name, $objQuery, $db_type);
105        if(count($arrRet) > 0) {
106            if(in_array($col_name, $arrRet)){
107                return true;
108            }
109        }
110    }
111   
112    // ¥«¥é¥à¤òÄɲ乤ë
113    if($add){
114        $objQuery->query("ALTER TABLE $table_name ADD $col_name $col_type ");
115        return true;
116    }
117   
118    return false;
119}
120
121// ¥Æ¡¼¥Ö¥ë¤Î¥«¥é¥à°ìÍ÷¤ò¼èÆÀ¤¹¤ë
122function sfGetColumnList($table_name, $objQuery = "", $db_type = DB_TYPE){
123    if($objQuery == "") $objQuery = new SC_Query();
124    $arrRet = array();
125   
126    // postgresql¤Èmysql¤È¤Ç½èÍý¤òʬ¤±¤ë
127    if ($db_type == "pgsql") {
128        $sql = "SELECT a.attname FROM pg_class c, pg_attribute a WHERE c.relname=? AND c.oid=a.attrelid AND a.attnum > 0 ORDER BY a.attnum";
129        $arrColList = $objQuery->getAll($sql, array($table_name));
130        $arrColList = sfswaparray($arrColList);
131        $arrRet = $arrColList["attname"];
132    }else if ($db_type == "mysql") {
133        $sql = "SHOW COLUMNS FROM $table_name";
134        $arrColList = $objQuery->getAll($sql);
135        $arrColList = sfswaparray($arrColList);
136        $arrRet = $arrColList["Field"];
137    }
138    return $arrRet;
139}
140
141// ¥¤¥ó¥¹¥È¡¼¥ë½é´ü½èÍý
142function sfInitInstall() {
143    // ¥¤¥ó¥¹¥È¡¼¥ëºÑ¤ß¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¡£
144    if(!defined('ECCUBE_INSTALL')) {
145        if(!ereg("/install/", $_SERVER['PHP_SELF'])) {
146            header("Location: ./install/");
147        }
148    } else {
149        $path = HTML_PATH . "install/index.php";
150        if(file_exists($path)) {
151            sfErrorHeader(">> /install/index.php¤Ï¡¢¥¤¥ó¥¹¥È¡¼¥ë´°Î»¸å¤Ë¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Æ¤¯¤À¤µ¤¤¡£");
152        }
153       
154        // µì¥Ð¡¼¥¸¥ç¥ó¤Îinstall.inc¤Î¥Á¥§¥Ã¥¯
155        $path = HTML_PATH . "install.inc";
156        if(file_exists($path)) {
157            sfErrorHeader(">> /install.inc¤Ï¥»¥­¥å¥ê¥Æ¥£¡¼¥Û¡¼¥ë¤È¤Ê¤ê¤Þ¤¹¡£ºï½ü¤·¤Æ¤¯¤À¤µ¤¤¡£");
158        }       
159    }
160}
161
162// ¥¢¥Ã¥×¥Ç¡¼¥È¤ÇÀ¸À®¤µ¤ì¤¿PHP¤òÆÉ¤ß½Ð¤·
163function sfLoadUpdateModule() {
164    // URLÀßÄê¥Ç¥£¥ì¥¯¥È¥ê¤òºï½ü
165    $main_php = ereg_replace(URL_DIR, "", $_SERVER['PHP_SELF']);
166    $extern_php = UPDATE_PATH . $main_php;
167    if(file_exists($extern_php)) {
168        require_once($extern_php);
169    }
170}
171
172function sf_getBasisData() {
173    //DB¤«¤éÀßÄê¾ðÊó¤ò¼èÆÀ
174    $objConn = new SC_DbConn(DEFAULT_DSN);
175    $result = $objConn->getAll("SELECT * FROM dtb_baseinfo");
176    if(is_array($result[0])) {
177        foreach ( $result[0] as $key=>$value ){
178            $CONF["$key"] = $value;
179        }
180    }
181    return $CONF;
182}
183
184// Áõ¾þÉÕ¤­¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤Îɽ¼¨
185function sfErrorHeader($mess, $print = false) {
186    global $GLOBAL_ERR;
187    if($GLOBAL_ERR == "") {
188        $GLOBAL_ERR = "<meta http-equiv='Content-Type' content='text/html; charset=" . CHAR_CODE . "'>\n";
189    }
190    $GLOBAL_ERR.= "<table width='100%' border='0' cellspacing='0' cellpadding='0' summary=' '>\n";
191    $GLOBAL_ERR.= "<tr>\n";
192    $GLOBAL_ERR.= "<td bgcolor='#ffeebb' height='25' colspan='2' align='center'>\n";
193    $GLOBAL_ERR.= "<SPAN style='color:red; font-size:12px'><strong>" . $mess . "</strong></span>\n";
194    $GLOBAL_ERR.= "</td>\n";
195    $GLOBAL_ERR.= " </tr>\n";
196    $GLOBAL_ERR.= "</table>\n";
197   
198    if($print) {
199        print($GLOBAL_ERR);
200    }
201}
202
203/* ¥¨¥é¡¼¥Ú¡¼¥¸¤Îɽ¼¨ */
204function sfDispError($type) {
205   
206    class LC_ErrorPage {
207        function LC_ErrorPage() {
208            $this->tpl_mainpage = 'login_error.tpl';
209            $this->tpl_title = '¥¨¥é¡¼';
210        }
211    }
212
213    $objPage = new LC_ErrorPage();
214    $objView = new SC_AdminView();
215   
216    switch ($type) {
217        case LOGIN_ERROR:
218            $objPage->tpl_error="£É£Ä¤Þ¤¿¤Ï¥Ñ¥¹¥ï¡¼¥É¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó¡£<br />¤â¤¦°ìÅÙ¤´³Îǧ¤Î¤¦¤¨¡¢ºÆÅÙÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£";
219            break;
220        case ACCESS_ERROR:
221            $objPage->tpl_error="¥í¥°¥¤¥óǧ¾Ú¤ÎÍ­¸ú´ü¸ÂÀÚ¤ì¤Î²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£<br />¤â¤¦°ìÅÙ¤´³Îǧ¤Î¤¦¤¨¡¢ºÆÅÙ¥í¥°¥¤¥ó¤·¤Æ¤¯¤À¤µ¤¤¡£";
222            break;
223        case AUTH_ERROR:
224            $objPage->tpl_error="¤³¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ï¥¢¥¯¥»¥¹¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó¡£<br />¤â¤¦°ìÅÙ¤´³Îǧ¤Î¤¦¤¨¡¢ºÆÅÙ¥í¥°¥¤¥ó¤·¤Æ¤¯¤À¤µ¤¤¡£";
225            break;
226        case PAGE_ERROR:
227            $objPage->tpl_error="ÉÔÀµ¤Ê¥Ú¡¼¥¸°Üư¤Ç¤¹¡£<br />¤â¤¦°ìÅÙ¤´³Îǧ¤Î¤¦¤¨¡¢ºÆÅÙÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£";
228            break;
229        default:
230            $objPage->tpl_error="¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¡£<br />¤â¤¦°ìÅÙ¤´³Îǧ¤Î¤¦¤¨¡¢ºÆÅÙ¥í¥°¥¤¥ó¤·¤Æ¤¯¤À¤µ¤¤¡£";
231            break;
232    }
233   
234    $objView->assignobj($objPage);
235    $objView->display(LOGIN_FRAME);
236   
237    exit;
238}
239
240/* ¥µ¥¤¥È¥¨¥é¡¼¥Ú¡¼¥¸¤Îɽ¼¨ */
241function sfDispSiteError($type, $objSiteSess = "", $return_top = false, $err_msg = "") {
242   
243    if ($objSiteSess != "") {
244        $objSiteSess->setNowPage('error');
245    }
246   
247    class LC_ErrorPage {
248        function LC_ErrorPage() {
249            $this->tpl_mainpage = 'error.tpl';
250            $this->tpl_css = URL_DIR.'css/layout/error.css';
251            $this->tpl_title = '¥¨¥é¡¼';
252        }
253    }
254   
255    $objPage = new LC_ErrorPage();
256    $objView = new SC_SiteView();
257   
258    switch ($type) {
259        case PRODUCT_NOT_FOUND:
260            $objPage->tpl_error="¤´»ØÄê¤Î¥Ú¡¼¥¸¤Ï¤´¤¶¤¤¤Þ¤»¤ó¡£";
261            break;
262        case PAGE_ERROR:
263            $objPage->tpl_error="ÉÔÀµ¤Ê¥Ú¡¼¥¸°Üư¤Ç¤¹¡£";
264            break;
265        case CART_EMPTY:
266            $objPage->tpl_error="¥«¡¼¥È¤Ë¾¦Éʤ¬¤¬¤¢¤ê¤Þ¤»¤ó¡£";
267            break;
268        case CART_ADD_ERROR:
269            $objPage->tpl_error="¹ØÆþ½èÍýÃæ¤Ï¡¢¥«¡¼¥È¤Ë¾¦ÉʤòÄɲ乤뤳¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£";
270            break;
271        case CANCEL_PURCHASE:
272            $objPage->tpl_error="¤³¤Î¼ê³¤­¤Ï̵¸ú¤È¤Ê¤ê¤Þ¤·¤¿¡£°Ê²¼¤ÎÍ×°ø¤¬¹Í¤¨¤é¤ì¤Þ¤¹¡£<br />¡¦¥»¥Ã¥·¥ç¥ó¾ðÊó¤ÎÍ­¸ú´ü¸Â¤¬ÀÚ¤ì¤Æ¤ë¾ì¹ç<br />¡¦¹ØÆþ¼ê³¤­Ãæ¤Ë¿·¤·¤¤¹ØÆþ¼ê³¤­¤ò¼Â¹Ô¤·¤¿¾ì¹ç<br />¡¦¤¹¤Ç¤Ë¹ØÆþ¼ê³¤­¤ò´°Î»¤·¤Æ¤¤¤ë¾ì¹ç";
273            break;
274        case CATEGORY_NOT_FOUND:
275            $objPage->tpl_error="¤´»ØÄê¤Î¥«¥Æ¥´¥ê¤Ï¸ºß¤·¤Þ¤»¤ó¡£";
276            break;
277        case SITE_LOGIN_ERROR:
278            $objPage->tpl_error="¥á¡¼¥ë¥¢¥É¥ì¥¹¤â¤·¤¯¤Ï¥Ñ¥¹¥ï¡¼¥É¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó¡£";
279            break;
280        case TEMP_LOGIN_ERROR:
281            $objPage->tpl_error="¥á¡¼¥ë¥¢¥É¥ì¥¹¤â¤·¤¯¤Ï¥Ñ¥¹¥ï¡¼¥É¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó¡£<br />ËÜÅÐÏ¿¤¬¤ªºÑ¤ß¤Ç¤Ê¤¤¾ì¹ç¤Ï¡¢²¾ÅÐÏ¿¥á¡¼¥ë¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë<br />URL¤è¤êËÜÅÐÏ¿¤ò¹Ô¤Ã¤Æ¤¯¤À¤µ¤¤¡£";
282            break;
283        case CUSTOMER_ERROR:
284            $objPage->tpl_error="ÉÔÀµ¤Ê¥¢¥¯¥»¥¹¤Ç¤¹¡£";
285            break;
286        case SOLD_OUT:
287            $objPage->tpl_error="¿½¤·Ìõ¤´¤¶¤¤¤Þ¤»¤ó¤¬¡¢¤´¹ØÆþ¤ÎľÁ°¤ÇÇä¤êÀڤ줿¾¦Éʤ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¼ê³¤­¤Ï̵¸ú¤È¤Ê¤ê¤Þ¤·¤¿¡£";
288            break;
289        case CART_NOT_FOUND:
290            $objPage->tpl_error="¿½¤·Ìõ¤´¤¶¤¤¤Þ¤»¤ó¤¬¡¢¥«¡¼¥ÈÆâ¤Î¾¦ÉʾðÊó¤Î¼èÆÀ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¤³¤Î¼ê³¤­¤Ï̵¸ú¤È¤Ê¤ê¤Þ¤·¤¿¡£";
291            break;
292        case LACK_POINT:
293            $objPage->tpl_error="¿½¤·Ìõ¤´¤¶¤¤¤Þ¤»¤ó¤¬¡¢¥Ý¥¤¥ó¥È¤¬ÉÔ­¤·¤Æ¤ª¤ê¤Þ¤¹¡£¤³¤Î¼ê³¤­¤Ï̵¸ú¤È¤Ê¤ê¤Þ¤·¤¿¡£";
294            break;
295        case FAVORITE_ERROR:
296            $objPage->tpl_error="´û¤Ë¤ªµ¤¤ËÆþ¤ê¤ËÄɲäµ¤ì¤Æ¤¤¤ë¾¦ÉʤǤ¹¡£";
297            break;
298        case EXTRACT_ERROR:
299            $objPage->tpl_error="¥Õ¥¡¥¤¥ë¤Î²òÅà¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£\n»ØÄê¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë½ñ¤­¹þ¤ß¸¢¸Â¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Ê¤¤²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£";
300            break;
301        case FTP_DOWNLOAD_ERROR:
302            $objPage->tpl_error="¥Õ¥¡¥¤¥ë¤ÎFTP¥À¥¦¥ó¥í¡¼¥É¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£";
303            break;
304        case FTP_LOGIN_ERROR:
305            $objPage->tpl_error="FTP¥í¥°¥¤¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£";
306            break;
307        case FTP_CONNECT_ERROR:
308            $objPage->tpl_error="FTP¥í¥°¥¤¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£";
309            break;
310        case CREATE_DB_ERROR:
311            $objPage->tpl_error="DB¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£\n»ØÄê¤Î¥æ¡¼¥¶¡¼¤Ë¤Ï¡¢DBºîÀ®¤Î¸¢¸Â¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Ê¤¤²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£";
312            break;
313        case DB_IMPORT_ERROR:
314            $objPage->tpl_error="¥Ç¡¼¥¿¥Ù¡¼¥¹¹½Â¤¤Î¥¤¥ó¥Ý¡¼¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£\nsql¥Õ¥¡¥¤¥ë¤¬²õ¤ì¤Æ¤¤¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£";
315            break;
316        case FILE_NOT_FOUND:
317            $objPage->tpl_error="»ØÄê¤Î¥Ñ¥¹¤Ë¡¢ÀßÄê¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤»¤ó¡£";
318            break;
319        case WRITE_FILE_ERROR:
320            $objPage->tpl_error="ÀßÄê¥Õ¥¡¥¤¥ë¤Ë½ñ¤­¹þ¤á¤Þ¤»¤ó¡£\nÀßÄê¥Õ¥¡¥¤¥ë¤Ë½ñ¤­¹þ¤ß¸¢¸Â¤òÍ¿¤¨¤Æ¤¯¤À¤µ¤¤¡£";
321            break;
322        case FREE_ERROR_MSG:
323            $objPage->tpl_error=$err_msg;
324            break;
325        default:
326            $objPage->tpl_error="¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¡£";
327            break;
328    }
329   
330    $objPage->return_top = $return_top;
331   
332    $objView->assignobj($objPage);
333    $objView->display(SITE_FRAME);
334    exit;
335}
336
337/* ǧ¾Ú¤Î²ÄÈÝȽÄê */
338function sfIsSuccess($objSess, $disp_error = true) {
339    $ret = $objSess->IsSuccess();
340    if($ret != SUCCESS) {
341        if($disp_error) {
342            // ¥¨¥é¡¼¥Ú¡¼¥¸¤Îɽ¼¨
343            sfDispError($ret);
344        }
345        return false;
346    }
347    return true;       
348}
349
350/* Á°¤Î¥Ú¡¼¥¸¤ÇÀµ¤·¤¯ÅÐÏ¿¤¬¹Ô¤ï¤ì¤¿¤«È½Äê */
351function sfIsPrePage($objSiteSess) {
352    $ret = $objSiteSess->isPrePage();
353    if($ret != true) {
354        // ¥¨¥é¡¼¥Ú¡¼¥¸¤Îɽ¼¨
355        sfDispSiteError(PAGE_ERROR, $objSiteSess);
356    }
357}
358
359function sfCheckNormalAccess($objSiteSess, $objCartSess) {
360    // ¥æ¡¼¥¶¥æ¥Ë¡¼¥¯ID¤Î¼èÆÀ
361    $uniqid = $objSiteSess->getUniqId();
362    // ¹ØÆþ¥Ü¥¿¥ó¤ò²¡¤·¤¿»þ¤Î¥«¡¼¥ÈÆâÍÆ¤¬¥³¥Ô¡¼¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Î¤ß¥³¥Ô¡¼¤¹¤ë¡£
363    $objCartSess->saveCurrentCart($uniqid);
364    // POST¤Î¥æ¥Ë¡¼¥¯ID¤È¥»¥Ã¥·¥ç¥ó¤Î¥æ¥Ë¡¼¥¯ID¤òÈæ³Ó(¥æ¥Ë¡¼¥¯ID¤¬POST¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¥¹¥ë¡¼)
365    $ret = $objSiteSess->checkUniqId();
366    if($ret != true) {
367        // ¥¨¥é¡¼¥Ú¡¼¥¸¤Îɽ¼¨
368        sfDispSiteError(CANCEL_PURCHASE, $objSiteSess);
369    }
370   
371    // ¥«¡¼¥ÈÆâ¤¬¶õ¤Ç¤Ê¤¤¤« || ¹ØÆþ¥Ü¥¿¥ó¤ò²¡¤·¤Æ¤«¤éÊѲ½¤¬¤Ê¤¤¤«
372    $quantity = $objCartSess->getTotalQuantity();
373    $ret = $objCartSess->checkChangeCart();
374    if($ret == true || !($quantity > 0)) {
375        // ¥«¡¼¥È¾ðÊóɽ¼¨¤Ë¶¯À©°Üư¤¹¤ë
376        header("Location: ".URL_CART_TOP);
377        exit;
378    }
379    return $uniqid;
380}
381
382/* DBÍÑÆüÉÕʸ»úÎó¼èÆÀ */
383function sfGetTimestamp($year, $month, $day, $last = false) {
384    if($year != "" && $month != "" && $day != "") {
385        if($last) {
386            $time = "23:59:59";
387        } else {
388            $time = "00:00:00";
389        }
390        $date = $year."-".$month."-".$day." ".$time;
391    } else {
392        $date = "";
393    }
394    return  $date;
395}
396
397// INT·¿¤Î¿ôÃÍ¥Á¥§¥Ã¥¯
398function sfIsInt($value) {
399    if($value != "" && strlen($value) <= INT_LEN && is_numeric($value)) {
400        return true;
401    }
402    return false;
403}
404
405function sfCSVDownload($data, $prefix = ""){
406   
407    if($prefix == "") {
408        $dir_name = sfUpDirName();
409        $file_name = $dir_name . date("ymdHis") .".csv";
410    } else {
411        $file_name = $prefix . date("ymdHis") .".csv";
412    }
413   
414    /* HTTP¥Ø¥Ã¥À¤Î½ÐÎÏ */
415    Header("Content-disposition: attachment; filename=${file_name}");
416    Header("Content-type: application/octet-stream; name=${file_name}");
417    Header("Cache-Control: ");
418    Header("Pragma: ");
419   
420    /* i18n¢· ¤À¤ÈÀµ¾ï¤Ëưºî¤·¤Ê¤¤¤¿¤á¡¢mb¢· ¤ËÊѹ¹
421    if (i18n_discover_encoding($data) == CHAR_CODE){
422        $data = i18n_convert($data,'SJIS',CHAR_CODE);
423    }
424    */
425    if (mb_internal_encoding() == CHAR_CODE){
426        $data = mb_convert_encoding($data,'SJIS',CHAR_CODE);
427    }
428   
429    /* ¥Ç¡¼¥¿¤ò½ÐÎÏ */
430    echo $data;
431}
432
433/* 1³¬Áؾå¤Î¥Ç¥£¥ì¥¯¥È¥ê̾¤ò¼èÆÀ¤¹¤ë */
434function sfUpDirName() {
435    $path = $_SERVER['PHP_SELF'];
436    $arrVal = split("/", $path);
437    $cnt = count($arrVal);
438    return $arrVal[($cnt - 2)];
439}
440
441// ¸½ºß¤Î¥µ¥¤¥È¤ò¹¹¿·¡Ê¤¿¤À¤·¥Ý¥¹¥È¤Ï¹Ô¤ï¤Ê¤¤¡Ë
442function sfReload($get = "") {
443    if ($_SERVER["SERVER_PORT"] == "443" ){
444        $protocol = "https";
445    } else {
446        $protocol = "http";
447    }
448       
449    if($get != "") {
450        header("Location: ".$protocol."://" .$_SERVER["SERVER_NAME"] . $_SERVER['PHP_SELF'] . "?" . $get);
451    } else {
452        header("Location: ".$protocol."://" .$_SERVER["SERVER_NAME"] . $_SERVER['PHP_SELF']);
453    }
454    exit;
455}
456
457// ¥é¥ó¥­¥ó¥°¤ò¾å¤²¤ë¡£
458function sfRankUp($table, $colname, $id, $andwhere = "") {
459    $objQuery = new SC_Query();
460    $objQuery->begin();
461    $where = "$colname = ?";
462    if($andwhere != "") {
463        $where.= " AND $andwhere";
464    }
465    // ÂоݹàÌܤΥé¥ó¥¯¤ò¼èÆÀ
466    $rank = $objQuery->get($table, "rank", $where, array($id));
467    // ¥é¥ó¥¯¤ÎºÇÂçÃͤò¼èÆÀ
468    $maxrank = $objQuery->max($table, "rank", $andwhere);
469    // ¥é¥ó¥¯¤¬ºÇÂçÃͤè¤ê¤â¾®¤µ¤¤¾ì¹ç¤Ë¼Â¹Ô¤¹¤ë¡£
470    if($rank < $maxrank) {
471        // ¥é¥ó¥¯¤¬°ì¤Ä¾å¤ÎID¤ò¼èÆÀ¤¹¤ë¡£
472        $where = "rank = ?";
473        if($andwhere != "") {
474            $where.= " AND $andwhere";
475        }
476        $uprank = $rank + 1;
477        $up_id = $objQuery->get($table, $colname, $where, array($uprank));
478        // ¥é¥ó¥¯Æþ¤ìÂØ¤¨¤Î¼Â¹Ô
479        $sqlup = "UPDATE $table SET rank = ?, update_date = Now() WHERE $colname = ?";
480        $objQuery->exec($sqlup, array($rank + 1, $id));
481        $objQuery->exec($sqlup, array($rank, $up_id));
482    }
483    $objQuery->commit();
484}
485
486// ¥é¥ó¥­¥ó¥°¤ò²¼¤²¤ë¡£
487function sfRankDown($table, $colname, $id, $andwhere = "") {
488    $objQuery = new SC_Query();
489    $objQuery->begin();
490    $where = "$colname = ?";
491    if($andwhere != "") {
492        $where.= " AND $andwhere";
493    }
494    // ÂоݹàÌܤΥé¥ó¥¯¤ò¼èÆÀ
495    $rank = $objQuery->get($table, "rank", $where, array($id));
496       
497    // ¥é¥ó¥¯¤¬1(ºÇ¾®ÃÍ)¤è¤ê¤âÂ礭¤¤¾ì¹ç¤Ë¼Â¹Ô¤¹¤ë¡£
498    if($rank > 1) {
499        // ¥é¥ó¥¯¤¬°ì¤Ä²¼¤ÎID¤ò¼èÆÀ¤¹¤ë¡£
500        $where = "rank = ?";
501        if($andwhere != "") {
502            $where.= " AND $andwhere";
503        }
504        $downrank = $rank - 1;
505        $down_id = $objQuery->get($table, $colname, $where, array($downrank));
506        // ¥é¥ó¥¯Æþ¤ìÂØ¤¨¤Î¼Â¹Ô
507        $sqlup = "UPDATE $table SET rank = ?, update_date = Now() WHERE $colname = ?";
508        $objQuery->exec($sqlup, array($rank - 1, $id));
509        $objQuery->exec($sqlup, array($rank, $down_id));
510    }
511    $objQuery->commit();
512}
513
514//----¡¡»ØÄê½ç°Ì¤Ø°Üư
515function sfMoveRank($tableName, $keyIdColumn, $keyId, $pos, $where = "") {
516    $objQuery = new SC_Query();
517    $objQuery->begin();
518       
519    // ¼«¿È¤Î¥é¥ó¥¯¤ò¼èÆÀ¤¹¤ë
520    $rank = $objQuery->get($tableName, "rank", "$keyIdColumn = ?", array($keyId)); 
521    $max = $objQuery->max($tableName, "rank", $where);
522       
523    // ÃͤÎÄ´À°¡ÊµÕ½ç¡Ë
524    if($pos > $max) {
525        $position = 1;
526    } else if($pos < 1) {
527        $position = $max;
528    } else {
529        $position = $max - $pos + 1;
530    }
531   
532    if( $position > $rank ) $term = "rank - 1"; //Æþ¤ìÂØ¤¨Àè¤Î½ç°Ì¤¬Æþ¤ì´¹¤¨¸µ¤Î½ç°Ì¤è¤êÂ礭¤¤¾ì¹ç
533    if( $position < $rank ) $term = "rank + 1"; //Æþ¤ìÂØ¤¨Àè¤Î½ç°Ì¤¬Æþ¤ì´¹¤¨¸µ¤Î½ç°Ì¤è¤ê¾®¤µ¤¤¾ì¹ç
534
535    //--¡¡»ØÄꤷ¤¿½ç°Ì¤Î¾¦Éʤ«¤é°Üư¤µ¤»¤ë¾¦ÉʤޤǤÎrank¤ò£±¤Ä¤º¤é¤¹
536    $sql = "UPDATE $tableName SET rank = $term, update_date = NOW() WHERE rank BETWEEN ? AND ? AND del_flg = 0";
537    if($where != "") {
538        $sql.= " AND $where";
539    }
540   
541    if( $position > $rank ) $objQuery->exec( $sql, array( $rank + 1, $position ));
542    if( $position < $rank ) $objQuery->exec( $sql, array( $position, $rank - 1 ));
543
544    //-- »ØÄꤷ¤¿½ç°Ì¤Ørank¤ò½ñ¤­´¹¤¨¤ë¡£
545    $sql  = "UPDATE $tableName SET rank = ?, update_date = NOW() WHERE $keyIdColumn = ? AND del_flg = 0 ";
546    if($where != "") {
547        $sql.= " AND $where";
548    }
549   
550    $objQuery->exec( $sql, array( $position, $keyId ) );
551    $objQuery->commit();
552}
553
554// ¥é¥ó¥¯¤ò´Þ¤à¥ì¥³¡¼¥É¤Îºï½ü
555// ¥ì¥³¡¼¥É¤´¤Èºï½ü¤¹¤ë¾ì¹ç¤Ï¡¢$delete¤òtrue¤Ë¤¹¤ë¡£
556function sfDeleteRankRecord($table, $colname, $id, $andwhere = "", $delete = false) {
557    $objQuery = new SC_Query();
558    $objQuery->begin();
559    // ºï½ü¥ì¥³¡¼¥É¤Î¥é¥ó¥¯¤ò¼èÆÀ¤¹¤ë¡£     
560    $where = "$colname = ?";
561    if($andwhere != "") {
562        $where.= " AND $andwhere";
563    }
564    $rank = $objQuery->get($table, "rank", $where, array($id));
565
566    if(!$delete) {
567        // ¥é¥ó¥¯¤òºÇ²¼°Ì¤Ë¤¹¤ë¡¢DEL¥Õ¥é¥°ON
568        $sqlup = "UPDATE $table SET rank = 0, del_flg = 1, update_date = Now() ";
569        $sqlup.= "WHERE $colname = ?";
570        // UPDATE¤Î¼Â¹Ô
571        $objQuery->exec($sqlup, array($id));
572    } else {
573        $objQuery->delete($table, "$colname = ?", array($id));
574    }
575   
576    // Äɲå쥳¡¼¥É¤Î¥é¥ó¥¯¤è¤ê¾å¤Î¥ì¥³¡¼¥É¤ò°ì¤Ä¤º¤é¤¹¡£
577    $where = "rank > ?";
578    if($andwhere != "") {
579        $where.= " AND $andwhere";
580    }
581    $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where";
582    $objQuery->exec($sqlup, array($rank));
583    $objQuery->commit();
584}
585
586// ¥ì¥³¡¼¥É¤Î¸ºß¥Á¥§¥Ã¥¯
587function sfIsRecord($table, $col, $arrval, $addwhere = "") {
588    $objQuery = new SC_Query();
589    $arrCol = split("[, ]", $col);
590       
591    $where = "del_flg = 0";
592   
593    if($addwhere != "") {
594        $where.= " AND $addwhere";
595    }
596       
597    foreach($arrCol as $val) {
598        if($val != "") {
599            if($where == "") {
600                $where = "$val = ?";
601            } else {
602                $where.= " AND $val = ?";
603            }
604        }
605    }
606    $ret = $objQuery->get($table, $col, $where, $arrval);
607   
608    if($ret != "") {
609        return true;
610    }
611    return false;
612}
613
614// ¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹¤ÎÃͤò¥Þ¡¼¥¸
615function sfMergeCBValue($keyname, $max) {
616    $conv = "";
617    $cnt = 1;
618    for($cnt = 1; $cnt <= $max; $cnt++) {
619        if ($_POST[$keyname . $cnt] == "1") {
620            $conv.= "1";
621        } else {
622            $conv.= "0";
623        }
624    }
625    return $conv;
626}
627
628// html_checkboxes¤ÎÃͤò¥Þ¡¼¥¸¤·¤Æ2¿Ê¿ô·Á¼°¤ËÊѹ¹¤¹¤ë¡£
629function sfMergeCheckBoxes($array, $max) {
630    $ret = "";
631    if(is_array($array)) { 
632        foreach($array as $val) {
633            $arrTmp[$val] = "1";
634        }
635    }
636    for($i = 1; $i <= $max; $i++) {
637        if($arrTmp[$i] == "1") {
638            $ret.= "1";
639        } else {
640            $ret.= "0";
641        }
642    }
643    return $ret;
644}
645
646
647// html_checkboxes¤ÎÃͤò¥Þ¡¼¥¸¤·¤Æ¡Ö-¡×¤Ç¤Ä¤Ê¤²¤ë¡£
648function sfMergeParamCheckBoxes($array) {
649    if(is_array($array)) {
650        foreach($array as $val) {
651            if($ret != "") {
652                $ret.= "-$val";
653            } else {
654                $ret = $val;           
655            }
656        }
657    } else {
658        $ret = $array;
659    }
660    return $ret;
661}
662
663// html_checkboxes¤ÎÃͤò¥Þ¡¼¥¸¤·¤ÆSQL¸¡º÷ÍѤËÊѹ¹¤¹¤ë¡£
664function sfSearchCheckBoxes($array) {
665    $max = 0;
666    $ret = "";
667    foreach($array as $val) {
668        $arrTmp[$val] = "1";
669        if($val > $max) {
670            $max = $val;
671        }
672    }
673    for($i = 1; $i <= $max; $i++) {
674        if($arrTmp[$i] == "1") {
675            $ret.= "1";
676        } else {
677            $ret.= "_";
678        }
679    }
680   
681    if($ret != "") {   
682        $ret.= "%";
683    }
684    return $ret;
685}
686
687// 2¿Ê¿ô·Á¼°¤ÎÃͤòhtml_checkboxesÂбþ¤ÎÃͤËÀÚ¤êÂØ¤¨¤ë
688function sfSplitCheckBoxes($val) {
689    $len = strlen($val);
690    for($i = 0; $i < $len; $i++) {
691        if(substr($val, $i, 1) == "1") {
692            $arrRet[] = ($i + 1);
693        }
694    }
695    return $arrRet;
696}
697
698// ¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹¤ÎÃͤò¥Þ¡¼¥¸
699function sfMergeCBSearchValue($keyname, $max) {
700    $conv = "";
701    $cnt = 1;
702    for($cnt = 1; $cnt <= $max; $cnt++) {
703        if ($_POST[$keyname . $cnt] == "1") {
704            $conv.= "1";
705        } else {
706            $conv.= "_";
707        }
708    }
709    return $conv;
710}
711
712// ¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹¤ÎÃͤòʬ²ò
713function sfSplitCBValue($val, $keyname = "") {
714    $len = strlen($val);
715    $no = 1;
716    for ($cnt = 0; $cnt < $len; $cnt++) {
717        if($keyname != "") {
718            $arr[$keyname . $no] = substr($val, $cnt, 1);
719        } else {
720            $arr[] = substr($val, $cnt, 1);
721        }
722        $no++;
723    }
724    return $arr;
725}
726
727// ¥­¡¼¤ÈÃͤò¥»¥Ã¥È¤·¤¿ÇÛÎó¤ò¼èÆÀ
728function sfArrKeyValue($arrList, $keyname, $valname, $len_max = "", $keysize = "") {
729   
730    $max = count($arrList);
731   
732    if($len_max != "" && $max > $len_max) {
733        $max = $len_max;
734    }
735   
736    for($cnt = 0; $cnt < $max; $cnt++) {
737        if($keysize != "") {
738            $key = sfCutString($arrList[$cnt][$keyname], $keysize);
739        } else {
740            $key = $arrList[$cnt][$keyname];
741        }
742        $val = $arrList[$cnt][$valname];
743       
744        if(!isset($arrRet[$key])) {
745            $arrRet[$key] = $val;
746        }
747       
748    }
749    return $arrRet;
750}
751
752// ¥­¡¼¤ÈÃͤò¥»¥Ã¥È¤·¤¿ÇÛÎó¤ò¼èÆÀ(Ãͤ¬Ê£¿ô¤Î¾ì¹ç)
753function sfArrKeyValues($arrList, $keyname, $valname, $len_max = "", $keysize = "", $connect = "") {
754   
755    $max = count($arrList);
756   
757    if($len_max != "" && $max > $len_max) {
758        $max = $len_max;
759    }
760   
761    for($cnt = 0; $cnt < $max; $cnt++) {
762        if($keysize != "") {
763            $key = sfCutString($arrList[$cnt][$keyname], $keysize);
764        } else {
765            $key = $arrList[$cnt][$keyname];
766        }
767        $val = $arrList[$cnt][$valname];
768       
769        if($connect != "") {
770            $arrRet[$key].= "$val".$connect;
771        } else {
772            $arrRet[$key][] = $val;     
773        }
774    }
775    return $arrRet;
776}
777
778// ÇÛÎó¤ÎÃͤò¥«¥ó¥Þ¶èÀÚ¤ê¤ÇÊÖ¤¹¡£
779function sfGetCommaList($array, $space=true) {
780    if (count($array) > 0) {
781        foreach($array as $val) {
782            if ($space) {
783                $line .= $val . ", ";
784            }else{
785                $line .= $val . ",";
786            }
787        }
788        if ($space) {
789            $line = ereg_replace(", $", "", $line);
790        }else{
791            $line = ereg_replace(",$", "", $line);
792        }
793        return $line;
794    }else{
795        return false;
796    }
797   
798}
799
800/* ÇÛÎó¤ÎÍ×ÁǤòCSV¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç½ÐÎϤ¹¤ë¡£*/
801function sfGetCSVList($array) {
802    if (count($array) > 0) {
803        foreach($array as $key => $val) {
804            $val = mb_convert_encoding($val, CHAR_CODE, CHAR_CODE);
805            $line .= "\"".$val."\",";
806        }
807        $line = ereg_replace(",$", "\n", $line);
808    }else{
809        return false;
810    }
811    return $line;
812}
813
814/* ÇÛÎó¤ÎÍ×ÁǤòPDF¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç½ÐÎϤ¹¤ë¡£*/
815function sfGetPDFList($array) {
816    foreach($array as $key => $val) {
817        $line .= "\t".$val;
818    }
819    $line.="\n";
820    return $line;
821}
822
823
824
825/*-----------------------------------------------------------------*/
826/*  check_set_term
827/*  ǯ·îÆü¤ËÊ̤줿2¤Ä¤Î´ü´Ö¤ÎÂÅÅöÀ­¤ò¥Á¥§¥Ã¥¯¤·¡¢À°¹çÀ­¤È´ü´Ö¤òÊÖ¤¹
828/*¡¡°ú¿ô (³«»Ïǯ,³«»Ï·î,³«»ÏÆü,½ªÎ»Ç¯,½ªÎ»·î,½ªÎ»Æü)
829/*¡¡ÌáÃÍ array(£±¡¤£²¡¤£³¡Ë
830/*          £±¡¥³«»Ïǯ·îÆü (YYYY/MM/DD 000000)
831/*          £²¡¥½ªÎ»Ç¯·îÆü (YYYY/MM/DD 235959)
832/*          £³¡¥¥¨¥é¡¼ ( 0 = OK, 1 = NG )
833/*-----------------------------------------------------------------*/
834function sfCheckSetTerm ( $start_year, $start_month, $start_day, $end_year, $end_month, $end_day ) {
835
836    // ´ü´Ö»ØÄê
837    $error = 0;
838    if ( $start_month || $start_day || $start_year){
839        if ( ! checkdate($start_month, $start_day , $start_year) ) $error = 1;
840    } else {
841        $error = 1;
842    }
843    if ( $end_month || $end_day || $end_year){
844        if ( ! checkdate($end_month ,$end_day ,$end_year) ) $error = 2;
845    }
846    if ( ! $error ){
847        $date1 = $start_year ."/".sprintf("%02d",$start_month) ."/".sprintf("%02d",$start_day) ." 000000";
848        $date2 = $end_year   ."/".sprintf("%02d",$end_month)   ."/".sprintf("%02d",$end_day)   ." 235959";
849        if ($date1 > $date2) $error = 3;
850    } else {
851        $error = 1;
852    }
853    return array($date1, $date2, $error);
854}
855
856// ¥¨¥é¡¼²Õ½ê¤ÎÇØ·Ê¿§¤òÊѹ¹¤¹¤ë¤¿¤á¤Îfunction SC_View¤ÇÆÉ¤ß¹þ¤à
857function sfSetErrorStyle(){
858    return 'style="background-color:'.ERR_COLOR.'"';
859}
860
861/* DB¤ËÅϤ¹¿ôÃͤΥÁ¥§¥Ã¥¯
862 * 10·å°Ê¾å¤Ï¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¥¨¥é¡¼¤òµ¯¤³¤¹¤Î¤Ç¡£
863 */
864function sfCheckNumLength( $value ){
865    if ( ! is_numeric($value)  ){
866        return false;
867    }
868   
869    if ( strlen($value) > 9 ) {
870        return false;
871    }
872   
873    return true;
874}
875
876// °ìÃפ·¤¿ÃͤΥ­¡¼Ì¾¤ò¼èÆÀ
877function sfSearchKey($array, $word, $default) {
878    foreach($array as $key => $val) {
879        if($val == $word) {
880            return $key;
881        }
882    }
883    return $default;
884}
885
886// ¥«¥Æ¥´¥ê¥Ä¥ê¡¼¤Î¼èÆÀ($products_check:true¾¦ÉÊÅÐÏ¿ºÑ¤ß¤Î¤â¤Î¤À¤±¼èÆÀ)
887function sfGetCategoryList($addwhere = "", $products_check = false, $head = CATEGORY_HEAD) {
888    $objQuery = new SC_Query();
889    $where = "del_flg = 0";
890   
891    if($addwhere != "") {
892        $where.= " AND $addwhere";
893    }
894       
895    $objQuery->setoption("ORDER BY rank DESC");
896   
897    if($products_check) {
898        $col = "T1.category_id, category_name, level";
899        $from = "dtb_category AS T1 LEFT JOIN dtb_category_total_count AS T2 ON T1.category_id = T2.category_id";
900        $where .= " AND product_count > 0";
901    } else {
902        $col = "category_id, category_name, level";
903        $from = "dtb_category";
904    }
905   
906    $arrRet = $objQuery->select($col, $from, $where);
907           
908    $max = count($arrRet);
909    for($cnt = 0; $cnt < $max; $cnt++) {
910        $id = $arrRet[$cnt]['category_id'];
911        $name = $arrRet[$cnt]['category_name'];
912        $arrList[$id] = "";
913        /*
914        for($n = 1; $n < $arrRet[$cnt]['level']; $n++) {
915            $arrList[$id].= "¡¡";
916        }
917        */
918        for($cat_cnt = 0; $cat_cnt < $arrRet[$cnt]['level']; $cat_cnt++) {
919            $arrList[$id].= $head;
920        }
921        $arrList[$id].= $name;
922    }
923    return $arrList;
924}
925
926// ¥«¥Æ¥´¥ê¥Ä¥ê¡¼¤Î¼èÆÀ¡Ê¿Æ¥«¥Æ¥´¥ê¤ÎValue:0)
927function sfGetLevelCatList($parent_zero = true) {
928    $objQuery = new SC_Query();
929    $col = "category_id, category_name, level";
930    $where = "del_flg = 0";
931    $objQuery->setoption("ORDER BY rank DESC");
932    $arrRet = $objQuery->select($col, "dtb_category", $where);
933    $max = count($arrRet);
934   
935    for($cnt = 0; $cnt < $max; $cnt++) {
936        if($parent_zero) {
937            if($arrRet[$cnt]['level'] == LEVEL_MAX) {
938                $arrValue[$cnt] = $arrRet[$cnt]['category_id'];
939            } else {
940                $arrValue[$cnt] = "";
941            }
942        } else {
943            $arrValue[$cnt] = $arrRet[$cnt]['category_id'];
944        }
945       
946        $arrOutput[$cnt] = "";
947        /*         
948        for($n = 1; $n < $arrRet[$cnt]['level']; $n++) {
949            $arrOutput[$cnt].= "¡¡";
950        }
951        */
952        for($cat_cnt = 0; $cat_cnt < $arrRet[$cnt]['level']; $cat_cnt++) {
953            $arrOutput[$cnt].= CATEGORY_HEAD;
954        }
955        $arrOutput[$cnt].= $arrRet[$cnt]['category_name'];
956    }
957    return array($arrValue, $arrOutput);
958}
959
960function sfGetErrorColor($val) {
961    if($val != "") {
962        return "background-color:" . ERR_COLOR;
963    }
964    return "";
965}
966
967
968function sfGetEnabled($val) {
969    if( ! $val ) {
970        return " disabled=\"disabled\"";
971    }
972    return "";
973}
974
975function sfGetChecked($param, $value) {
976    if($param == $value) {
977        return "checked=\"checked\"";
978    }
979    return "";
980}
981
982// SELECT¥Ü¥Ã¥¯¥¹Íѥꥹ¥È¤ÎºîÀ®
983function sfGetIDValueList($table, $keyname, $valname) {
984    $objQuery = new SC_Query();
985    $col = "$keyname, $valname";
986    $objQuery->setwhere("del_flg = 0");
987    $objQuery->setorder("rank DESC");
988    $arrList = $objQuery->select($col, $table);
989    $count = count($arrList);
990    for($cnt = 0; $cnt < $count; $cnt++) {
991        $key = $arrList[$cnt][$keyname];
992        $val = $arrList[$cnt][$valname];
993        $arrRet[$key] = $val;
994    }
995    return $arrRet;
996}
997
998function sfTrim($str) {
999    $ret = ereg_replace("^[¡¡ \n\r]*", "", $str);
1000    $ret = ereg_replace("[¡¡ \n\r]*$", "", $ret);
1001    return $ret;
1002}
1003
1004/* ½ê°¤¹¤ë¤¹¤Ù¤Æ¤Î³¬ÁؤοÆID¤òÇÛÎó¤ÇÊÖ¤¹ */
1005function sfGetParents($objQuery, $table, $pid_name, $id_name, $id) {
1006    $arrRet = sfGetParentsArray($table, $pid_name, $id_name, $id);
1007    // ÇÛÎó¤ÎÀèÆ¬1¤Ä¤òºï½ü¤¹¤ë¡£
1008    array_shift($arrRet);
1009    return $arrRet;
1010}
1011
1012
1013/* ¿ÆID¤ÎÇÛÎó¤ò¸µ¤ËÆÃÄê¤Î¥«¥é¥à¤ò¼èÆÀ¤¹¤ë¡£*/
1014function sfGetParentsCol($objQuery, $table, $id_name, $col_name, $arrId ) {
1015    $col = $col_name;
1016    $len = count($arrId);
1017    $where = "";
1018   
1019    for($cnt = 0; $cnt < $len; $cnt++) {
1020        if($where == "") {
1021            $where = "$id_name = ?";
1022        } else {
1023            $where.= " OR $id_name = ?";
1024        }
1025    }
1026   
1027    $objQuery->setorder("level");
1028    $arrRet = $objQuery->select($col, $table, $where, $arrId);
1029    return $arrRet;
1030}
1031
1032/* »ÒID¤ÎÇÛÎó¤òÊÖ¤¹ */
1033function sfGetChildsID($table, $pid_name, $id_name, $id) {
1034    $arrRet = sfGetChildrenArray($table, $pid_name, $id_name, $id);
1035    return $arrRet;
1036}
1037
1038/* ¥«¥Æ¥´¥êÊѹ¹»þ¤Î°Üư½èÍý */
1039function sfMoveCatRank($objQuery, $table, $id_name, $cat_name, $old_catid, $new_catid, $id) {
1040    if ($old_catid == $new_catid) {
1041        return;
1042    }
1043    // µì¥«¥Æ¥´¥ê¤Ç¤Î¥é¥ó¥¯ºï½ü½èÍý
1044    // °Üư¥ì¥³¡¼¥É¤Î¥é¥ó¥¯¤ò¼èÆÀ¤¹¤ë¡£     
1045    $where = "$id_name = ?";
1046    $rank = $objQuery->get($table, "rank", $where, array($id));
1047    // ºï½ü¥ì¥³¡¼¥É¤Î¥é¥ó¥¯¤è¤ê¾å¤Î¥ì¥³¡¼¥É¤ò°ì¤Ä²¼¤Ë¤º¤é¤¹¡£
1048    $where = "rank > ? AND $cat_name = ?";
1049    $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where";
1050    $objQuery->exec($sqlup, array($rank, $old_catid));
1051    // ¿·¥«¥Æ¥´¥ê¤Ç¤ÎÅÐÏ¿½èÍý
1052    // ¿·¥«¥Æ¥´¥ê¤ÎºÇÂç¥é¥ó¥¯¤ò¼èÆÀ¤¹¤ë¡£
1053    $max_rank = $objQuery->max($table, "rank", "$cat_name = ?", array($new_catid)) + 1;
1054    $where = "$id_name = ?";
1055    $sqlup = "UPDATE $table SET rank = ? WHERE $where";
1056    $objQuery->exec($sqlup, array($max_rank, $id));
1057}
1058
1059/* ÀǶâ·×»» */
1060function sfTax($price, $tax, $tax_rule) {
1061    $real_tax = $tax / 100;
1062    $ret = $price * $real_tax;
1063    switch($tax_rule) {
1064    // »Í¼Î¸ÞÆþ
1065    case 1:
1066        $ret = round($ret);
1067        break;
1068    // ÀÚ¤ê¼Î¤Æ
1069    case 2:
1070        $ret = floor($ret);
1071        break;
1072    // ÀÚ¤ê¾å¤²
1073    case 3:
1074        $ret = ceil($ret);
1075        break;
1076    // ¥Ç¥Õ¥©¥ë¥È:ÀÚ¤ê¾å¤²
1077    default:
1078        $ret = ceil($ret);
1079        break;
1080    }
1081    return $ret;
1082}
1083
1084/* ÀǶâÉÕÍ¿ */
1085function sfPreTax($price, $tax, $tax_rule) {
1086    $real_tax = $tax / 100;
1087    $ret = $price * (1 + $real_tax);
1088   
1089    switch($tax_rule) {
1090    // »Í¼Î¸ÞÆþ
1091    case 1:
1092        $ret = round($ret);
1093        break;
1094    // ÀÚ¤ê¼Î¤Æ
1095    case 2:
1096        $ret = floor($ret);
1097        break;
1098    // ÀÚ¤ê¾å¤²
1099    case 3:
1100        $ret = ceil($ret);
1101        break;
1102    // ¥Ç¥Õ¥©¥ë¥È:ÀÚ¤ê¾å¤²
1103    default:
1104        $ret = ceil($ret);
1105        break;
1106    }
1107    return $ret;
1108}
1109
1110// ·å¿ô¤ò»ØÄꤷ¤Æ»Í¼Î¸ÞÆþ
1111function sfRound($value, $pow = 0){
1112    $adjust = pow(10 ,$pow-1);
1113
1114    // À°¿ô³î¤Ä0½Ð¤Ê¤±¤ì¤Ð·å¿ô»ØÄê¤ò¹Ô¤¦
1115    if(sfIsInt($adjust) and $pow > 1){
1116        $ret = (round($value * $adjust)/$adjust);
1117    }
1118   
1119    $ret = round($ret);
1120
1121    return $ret;
1122}
1123
1124/* ¥Ý¥¤¥ó¥ÈÉÕÍ¿ */
1125function sfPrePoint($price, $point_rate, $rule = POINT_RULE, $product_id = "") {
1126    if(sfIsInt($product_id)) {
1127        $objQuery = new SC_Query();
1128        $where = "now() >= cast(start_date as date) AND ";
1129        $where .= "now() < cast(end_date as date) AND ";
1130       
1131        $where .= "del_flg = 0 AND campaign_id IN (SELECT campaign_id FROM dtb_campaign_detail where product_id = ? )";
1132        //ÅÐÏ¿(¹¹¿·)ÆüÉÕ½ç
1133        $objQuery->setorder('update_date DESC');
1134        //¥­¥ã¥ó¥Ú¡¼¥ó¥Ý¥¤¥ó¥È¤Î¼èÆÀ
1135        $arrRet = $objQuery->select("campaign_name, campaign_point_rate", "dtb_campaign", $where, array($product_id));
1136    }
1137    //Ê£¿ô¤Î¥­¥ã¥ó¥Ú¡¼¥ó¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë¾¦Éʤϡ¢ºÇ¿·¤Î¥­¥ã¥ó¥Ú¡¼¥ó¤«¤é¥Ý¥¤¥ó¥È¤ò¼èÆÀ
1138    if($arrRet[0]['campaign_point_rate'] != "") {
1139        $campaign_point_rate = $arrRet[0]['campaign_point_rate'];
1140        $real_point = $campaign_point_rate / 100;
1141    } else {
1142        $real_point = $point_rate / 100;
1143    }
1144    $ret = $price * $real_point;
1145    switch($rule) {
1146    // »Í¼Î¸ÞÆþ
1147    case 1:
1148        $ret = round($ret);
1149        break;
1150    // ÀÚ¤ê¼Î¤Æ
1151    case 2:
1152        $ret = floor($ret);
1153        break;
1154    // ÀÚ¤ê¾å¤²
1155    case 3:
1156        $ret = ceil($ret);
1157        break;
1158    // ¥Ç¥Õ¥©¥ë¥È:ÀÚ¤ê¾å¤²
1159    default:
1160        $ret = ceil($ret);
1161        break;
1162    }
1163    //¥­¥ã¥ó¥Ú¡¼¥ó¾¦Éʤξì¹ç
1164    if($campaign_point_rate != "") {
1165        $ret = "(".$arrRet[0]['campaign_name']."¥Ý¥¤¥ó¥ÈΨ".$campaign_point_rate."%)".$ret;
1166    }
1167    return $ret;
1168}
1169
1170/* µ¬³ÊʬÎà¤Î·ï¿ô¼èÆÀ */
1171function sfGetClassCatCount() {
1172    $sql = "select count(dtb_class.class_id) as count, dtb_class.class_id ";
1173    $sql.= "from dtb_class inner join dtb_classcategory on dtb_class.class_id = dtb_classcategory.class_id ";
1174    $sql.= "where dtb_class.del_flg = 0 AND dtb_classcategory.del_flg = 0 ";
1175    $sql.= "group by dtb_class.class_id, dtb_class.name";
1176    $objQuery = new SC_Query();
1177    $arrList = $objQuery->getall($sql);
1178    // ¥­¡¼¤ÈÃͤò¥»¥Ã¥È¤·¤¿ÇÛÎó¤ò¼èÆÀ
1179    $arrRet = sfArrKeyValue($arrList, 'class_id', 'count');
1180   
1181    return $arrRet;
1182}
1183
1184/* µ¬³Ê¤ÎÅÐÏ¿ */
1185function sfInsertProductClass($objQuery, $arrList, $product_id) {
1186    // ¤¹¤Ç¤Ëµ¬³ÊÅÐÏ¿¤¬¤¢¤ë¤«¤É¤¦¤«¤ò¥Á¥§¥Ã¥¯¤¹¤ë¡£
1187    $where = "product_id = ? AND classcategory_id1 <> 0 AND classcategory_id1 <> 0";
1188    $count = $objQuery->count("dtb_products_class", $where,  array($product_id));
1189   
1190    // ¤¹¤Ç¤Ëµ¬³ÊÅÐÏ¿¤¬¤Ê¤¤¾ì¹ç
1191    if($count == 0) {
1192        // ´û¸µ¬³Ê¤Îºï½ü
1193        $where = "product_id = ?";
1194        $objQuery->delete("dtb_products_class", $where, array($product_id));
1195        $sqlval['product_id'] = $product_id;
1196        $sqlval['classcategory_id1'] = '0';
1197        $sqlval['classcategory_id2'] = '0';
1198        $sqlval['product_code'] = $arrList["product_code"];
1199        $sqlval['stock'] = $arrList["stock"];
1200        $sqlval['stock_unlimited'] = $arrList["stock_unlimited"];
1201        $sqlval['price01'] = $arrList['price01'];
1202        $sqlval['price02'] = $arrList['price02'];
1203        $sqlval['creator_id'] = $_SESSION['member_id'];
1204        $sqlval['create_date'] = "now()";
1205       
1206        if($_SESSION['member_id'] == "") {
1207            $sqlval['creator_id'] = '0';
1208        }
1209       
1210        // INSERT¤Î¼Â¹Ô
1211        $objQuery->insert("dtb_products_class", $sqlval);
1212    }
1213}
1214
1215function sfGetProductClassId($product_id, $classcategory_id1, $classcategory_id2) {
1216    $where = "product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?";
1217    $objQuery = new SC_Query();
1218    $ret = $objQuery->get("dtb_products_class", "product_class_id", $where, Array($product_id, $classcategory_id1, $classcategory_id2));
1219    return $ret;
1220}
1221
1222/* ʸËö¤Î¡Ö/¡×¤ò¤Ê¤¯¤¹ */
1223function sfTrimURL($url) {
1224    $ret = ereg_replace("[/]+$", "", $url);
1225    return $ret;
1226}
1227
1228/* ¾¦Éʵ¬³Ê¾ðÊó¤Î¼èÆÀ */
1229function sfGetProductsClass($arrID) {
1230    list($product_id, $classcategory_id1, $classcategory_id2) = $arrID;
1231   
1232    if($classcategory_id1 == "") {
1233        $classcategory_id1 = '0';
1234    }
1235    if($classcategory_id2 == "") {
1236        $classcategory_id2 = '0';
1237    }
1238       
1239    // ¾¦Éʵ¬³Ê¼èÆÀ
1240    $objQuery = new SC_Query();
1241    $col = "product_id, deliv_fee, name, product_code, main_list_image, main_image, price01, price02, point_rate, product_class_id, classcategory_id1, classcategory_id2, class_id1, class_id2, stock, stock_unlimited, sale_limit, sale_unlimited";
1242    $table = "vw_product_class AS prdcls";
1243    $where = "product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?";
1244    $objQuery->setorder("rank1 DESC, rank2 DESC");
1245    $arrRet = $objQuery->select($col, $table, $where, array($product_id, $classcategory_id1, $classcategory_id2));
1246    return $arrRet[0];
1247}
1248
1249/* ½¸·×¾ðÊó¤ò¸µ¤ËºÇ½ª·×»» */
1250function sfTotalConfirm($arrData, $objPage, $objCartSess, $arrInfo, $objCustomer = "") {
1251    // ¾¦Éʤιç·×¸Ä¿ô
1252    $total_quantity = $objCartSess->getTotalQuantity(true);
1253   
1254    // ÀǶâ¤Î¼èÆÀ
1255    $arrData['tax'] = $objPage->tpl_total_tax;
1256    // ¾®·×¤Î¼èÆÀ
1257    $arrData['subtotal'] = $objPage->tpl_total_pretax; 
1258   
1259    // ¹ç·×Á÷ÎÁ¤Î¼èÆÀ
1260    $arrData['deliv_fee'] = 0;
1261       
1262    // ¾¦Éʤ´¤È¤ÎÁ÷ÎÁ¤¬Í­¸ú¤Î¾ì¹ç
1263    if (OPTION_PRODUCT_DELIV_FEE == 1) {
1264        $arrData['deliv_fee']+= $objCartSess->getAllProductsDelivFee();
1265    }
1266   
1267    // ÇÛÁ÷¶È¼Ô¤ÎÁ÷ÎÁ¤¬Í­¸ú¤Î¾ì¹ç
1268    if (OPTION_DELIV_FEE == 1) {
1269        // Á÷ÎÁ¤Î¹ç·×¤ò·×»»¤¹¤ë
1270        $arrData['deliv_fee']+= sfGetDelivFee($arrData['deliv_pref'], $arrData['payment_id']);
1271    }
1272   
1273    // Á÷ÎÁ̵ÎÁ¤Î¹ØÆþ¿ô¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç
1274    if(DELIV_FREE_AMOUNT > 0) {
1275        if($total_quantity >= DELIV_FREE_AMOUNT) {
1276            $arrData['deliv_fee'] = 0;
1277        }   
1278    }
1279       
1280    // Á÷ÎÁ̵ÎÁ¾ò·ï¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç
1281    if($arrInfo['free_rule'] > 0) {
1282        // ¾®·×¤¬ÌµÎÁ¾ò·ï¤òͤ¨¤Æ¤¤¤ë¾ì¹ç
1283        if($arrData['subtotal'] >= $arrInfo['free_rule']) {
1284            $arrData['deliv_fee'] = 0;
1285        }
1286    }
1287
1288    // ¹ç·×¤Î·×»»
1289    $arrData['total'] = $objPage->tpl_total_pretax; // ¾¦Éʹç·×
1290    $arrData['total']+= $arrData['deliv_fee'];      // Á÷ÎÁ
1291    $arrData['total']+= $arrData['charge'];         // ¼ê¿ôÎÁ
1292    // ¤ª»Ùʧ¤¤¹ç·×
1293    $arrData['payment_total'] = $arrData['total'] - ($arrData['use_point'] * POINT_VALUE);
1294    // ²Ã»»¥Ý¥¤¥ó¥È¤Î·×»»
1295    $arrData['add_point'] = sfGetAddPoint($objPage->tpl_total_point, $arrData['use_point'], $arrInfo);
1296   
1297    if($objCustomer != "") {
1298        // ÃÂÀ¸Æü·î¤Ç¤¢¤Ã¤¿¾ì¹ç
1299        if($objCustomer->isBirthMonth()) {
1300            $arrData['birth_point'] = BIRTH_MONTH_POINT;
1301            $arrData['add_point'] += $arrData['birth_point'];
1302        }
1303    }
1304   
1305    if($arrData['add_point'] < 0) {
1306        $arrData['add_point'] = 0;
1307    }
1308   
1309    return $arrData;
1310}
1311
1312/* ¥«¡¼¥ÈÆâ¾¦Éʤν¸·×½èÍý */
1313function sfTotalCart($objPage, $objCartSess, $arrInfo) {
1314    // µ¬³Ê̾°ìÍ÷
1315    $arrClassName = sfGetIDValueList("dtb_class", "class_id", "name");
1316    // µ¬³ÊʬÎà̾°ìÍ÷
1317    $arrClassCatName = sfGetIDValueList("dtb_classcategory", "classcategory_id", "name");
1318   
1319    $objPage->tpl_total_pretax = 0;     // ÈñÍѹç·×(Àǹþ¤ß)
1320    $objPage->tpl_total_tax = 0;        // ¾ÃÈñÀǹç·×
1321    $objPage->tpl_total_point = 0;      // ¥Ý¥¤¥ó¥È¹ç·×
1322   
1323    // ¥«¡¼¥ÈÆâ¾ðÊó¤Î¼èÆÀ
1324    $arrCart = $objCartSess->getCartList();
1325    $max = count($arrCart);
1326    $cnt = 0;
1327
1328    for ($i = 0; $i < $max; $i++) {
1329        // ¾¦Éʵ¬³Ê¾ðÊó¤Î¼èÆÀ   
1330        $arrData = sfGetProductsClass($arrCart[$i]['id']);
1331        $limit = "";
1332        // DB¤Ë¸ºß¤¹¤ë¾¦ÉÊ
1333        if (count($arrData) > 0) {
1334           
1335            // ¹ØÆþÀ©¸Â¿ô¤òµá¤á¤ë¡£         
1336            if ($arrData['stock_unlimited'] != '1' && $arrData['sale_unlimited'] != '1') {
1337                if($arrData['sale_limit'] < $arrData['stock']) {
1338                    $limit = $arrData['sale_limit'];
1339                } else {
1340                    $limit = $arrData['stock'];
1341                }
1342            } else {
1343                if ($arrData['sale_unlimited'] != '1') {
1344                    $limit = $arrData['sale_limit'];
1345                }
1346                if ($arrData['stock_unlimited'] != '1') {
1347                    $limit = $arrData['stock'];
1348                }
1349            }
1350                       
1351            if($limit != "" && $limit < $arrCart[$i]['quantity']) {
1352                // ¥«¡¼¥ÈÆâ¾¦ÉÊ¿ô¤òÀ©¸Â¤Ë¹ç¤ï¤»¤ë
1353                $objCartSess->setProductValue($arrCart[$i]['id'], 'quantity', $limit);
1354                $quantity = $limit;
1355                $objPage->tpl_message = "¢¨¡Ö" . $arrData['name'] . "¡×¤ÏÈÎÇäÀ©¸Â¤·¤Æ¤ª¤ê¤Þ¤¹¡¢°ìÅ٤ˤ³¤ì°Ê¾å¤Î¹ØÆþ¤Ï¤Ç¤­¤Þ¤»¤ó¡£";
1356            } else {
1357                $quantity = $arrCart[$i]['quantity'];
1358            }
1359           
1360            $objPage->arrProductsClass[$cnt] = $arrData;
1361            $objPage->arrProductsClass[$cnt]['quantity'] = $quantity;
1362            $objPage->arrProductsClass[$cnt]['cart_no'] = $arrCart[$i]['cart_no'];
1363            $objPage->arrProductsClass[$cnt]['class_name1'] = $arrClassName[$arrData['class_id1']];
1364            $objPage->arrProductsClass[$cnt]['class_name2'] = $arrClassName[$arrData['class_id2']];
1365            $objPage->arrProductsClass[$cnt]['classcategory_name1'] = $arrClassCatName[$arrData['classcategory_id1']];
1366            $objPage->arrProductsClass[$cnt]['classcategory_name2'] = $arrClassCatName[$arrData['classcategory_id2']];
1367           
1368            // ²èÁü¥µ¥¤¥º
1369            list($image_width, $image_height) = getimagesize(IMAGE_SAVE_DIR . basename($objPage->arrProductsClass[$cnt]["main_image"]));
1370            $objPage->arrProductsClass[$cnt]["tpl_image_width"] = $image_width + 60;
1371            $objPage->arrProductsClass[$cnt]["tpl_image_height"] = $image_height + 80;
1372           
1373            // ²Á³Ê¤ÎÅÐÏ¿
1374            if ($arrData['price02'] != "") {
1375                $objCartSess->setProductValue($arrCart[$i]['id'], 'price', $arrData['price02']);
1376                $objPage->arrProductsClass[$cnt]['uniq_price'] = $arrData['price02'];
1377            } else {
1378                $objCartSess->setProductValue($arrCart[$i]['id'], 'price', $arrData['price01']);
1379                $objPage->arrProductsClass[$cnt]['uniq_price'] = $arrData['price01'];
1380            }
1381            // ¥Ý¥¤¥ó¥ÈÉÕͿΨ¤ÎÅÐÏ¿
1382            $objCartSess->setProductValue($arrCart[$i]['id'], 'point_rate', $arrData['point_rate']);
1383            // ¾¦Éʤ´¤È¤Î¹ç·×¶â³Û
1384            $objPage->arrProductsClass[$cnt]['total_pretax'] = $objCartSess->getProductTotal($arrInfo, $arrCart[$i]['id']);
1385            // Á÷ÎÁ¤Î¹ç·×¤ò·×»»¤¹¤ë
1386            $objPage->tpl_total_deliv_fee+= ($arrData['deliv_fee'] * $arrCart[$i]['quantity']);
1387            $cnt++;
1388        } else {
1389            // DB¤Ë¾¦Éʤ¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤Ï¥«¡¼¥È¾¦Éʤκï½ü
1390            $objCartSess->delProductKey('id', $arrCart[$i]['id']);
1391        }
1392    }
1393   
1394    // Á´¾¦Éʹç·×¶â³Û(Àǹþ¤ß)
1395    $objPage->tpl_total_pretax = $objCartSess->getAllProductsTotal($arrInfo);
1396    // Á´¾¦Éʹç·×¾ÃÈñÀÇ
1397    $objPage->tpl_total_tax = $objCartSess->getAllProductsTax($arrInfo);
1398    // Á´¾¦Éʹç·×¥Ý¥¤¥ó¥È
1399    $objPage->tpl_total_point = $objCartSess->getAllProductsPoint();
1400   
1401    return $objPage;   
1402}
1403
1404/* DB¤«¤é¼è¤ê½Ð¤·¤¿ÆüÉÕ¤Îʸ»úÎó¤òÄ´À°¤¹¤ë¡£*/
1405function sfDispDBDate($dbdate, $time = true) {
1406    list($y, $m, $d, $H, $M) = split("[- :]", $dbdate);
1407
1408    if(strlen($y) > 0 && strlen($m) > 0 && strlen($d) > 0) {
1409        if ($time) {
1410            $str = sprintf("%04d/%02d/%02d %02d:%02d", $y, $m, $d, $H, $M);
1411        } else {
1412            $str = sprintf("%04d/%02d/%02d", $y, $m, $d, $H, $M);                       
1413        }
1414    } else {
1415        $str = "";
1416    }
1417    return $str;
1418}
1419
1420function sfGetDelivTime($payment_id = "") {
1421    $objQuery = new SC_Query();
1422   
1423    $deliv_id = "";
1424   
1425    if($payment_id != "") {
1426        $where = "del_flg = 0 AND payment_id = ?";
1427        $arrRet = $objQuery->select("deliv_id", "dtb_payment", $where, array($payment_id));
1428        $deliv_id = $arrRet[0]['deliv_id'];
1429    }
1430   
1431    if($deliv_id != "") {
1432        $objQuery->setorder("time_id");
1433        $where = "deliv_id = ?";
1434        $arrRet= $objQuery->select("time_id, deliv_time", "dtb_delivtime", $where, array($deliv_id));
1435    }
1436   
1437    return $arrRet;
1438}
1439
1440
1441// ÅÔÆ»Éܸ©¡¢»Ùʧ¤¤ÊýË¡¤«¤éÇÛÁ÷ÎÁ¶â¤ò¼èÆÀ¤¹¤ë
1442function sfGetDelivFee($pref, $payment_id = "") {
1443    $objQuery = new SC_Query();
1444   
1445    $deliv_id = "";
1446   
1447    // »Ùʧ¤¤ÊýË¡¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢Âбþ¤·¤¿ÇÛÁ÷¶È¼Ô¤ò¼èÆÀ¤¹¤ë
1448    if($payment_id != "") {
1449        $where = "del_flg = 0 AND payment_id = ?";
1450        $arrRet = $objQuery->select("deliv_id", "dtb_payment", $where, array($payment_id));
1451        $deliv_id = $arrRet[0]['deliv_id'];
1452    // »Ùʧ¤¤ÊýË¡¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢ÀèÆ¬¤ÎÇÛÁ÷¶È¼Ô¤ò¼èÆÀ¤¹¤ë
1453    } else {
1454        $where = "del_flg = 0";
1455        $objQuery->setOrder("rank DESC");
1456        $objQuery->setLimitOffset(1);
1457        $arrRet = $objQuery->select("deliv_id", "dtb_deliv", $where);
1458        $deliv_id = $arrRet[0]['deliv_id'];
1459    }
1460   
1461    // ÇÛÁ÷¶È¼Ô¤«¤éÇÛÁ÷ÎÁ¤ò¼èÆÀ
1462    if($deliv_id != "") {
1463       
1464        // ÅÔÆ»Éܸ©¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢ÅìµþÅÔ¤ÎÈÖ¹æ¤ò»ØÄꤷ¤Æ¤ª¤¯
1465        if($pref == "") {
1466            $pref = 13;
1467        }
1468       
1469        $objQuery = new SC_Query();
1470        $where = "deliv_id = ? AND pref = ?";
1471        $arrRet= $objQuery->select("fee", "dtb_delivfee", $where, array($deliv_id, $pref));
1472    }   
1473    return $arrRet[0]['fee'];   
1474}
1475
1476/* »Ùʧ¤¤ÊýË¡¤Î¼èÆÀ */
1477function sfGetPayment() {
1478    $objQuery = new SC_Query();
1479    // ¹ØÆþ¶â³Û¤¬¾ò·ï³Û°Ê²¼¤Î¹àÌܤò¼èÆÀ
1480    $where = "del_flg = 0";
1481    $objQuery->setorder("fix, rank DESC");
1482    $arrRet = $objQuery->select("payment_id, payment_method, rule", "dtb_payment", $where);
1483    return $arrRet;
1484}
1485
1486/* ÇÛÎó¤ò¥­¡¼Ì¾¤´¤È¤ÎÇÛÎó¤ËÊѹ¹¤¹¤ë */
1487function sfSwapArray($array) {
1488    $max = count($array);
1489    for($i = 0; $i < $max; $i++) {
1490        foreach($array[$i] as $key => $val) {
1491            $arrRet[$key][] = $val;
1492        }
1493    }
1494    return $arrRet;
1495}
1496
1497/* ¤«¤±»»¤ò¤¹¤ë¡ÊSmartyÍÑ) */
1498function sfMultiply($num1, $num2) {
1499    return ($num1 * $num2);
1500}
1501
1502/* DB¤ËÅÐÏ¿¤µ¤ì¤¿¥Æ¥ó¥×¥ì¡¼¥È¥á¡¼¥ë¤ÎÁ÷¿® */
1503function sfSendTemplateMail($to, $to_name, $template_id, $objPage) {
1504    global $arrMAILTPLPATH;
1505    $objQuery = new SC_Query();
1506    // ¥á¡¼¥ë¥Æ¥ó¥×¥ì¡¼¥È¾ðÊó¤Î¼èÆÀ
1507    $where = "template_id = ?";
1508    $arrRet = $objQuery->select("subject, header, footer", "dtb_mailtemplate", $where, array($template_id));
1509    $objPage->tpl_header = $arrRet[0]['header'];
1510    $objPage->tpl_footer = $arrRet[0]['footer'];
1511    $tmp_subject = $arrRet[0]['subject'];
1512   
1513    $objSiteInfo = new SC_SiteInfo();
1514    $arrInfo = $objSiteInfo->data;
1515   
1516    $objMailView = new SC_SiteView();
1517    // ¥á¡¼¥ëËÜʸ¤Î¼èÆÀ
1518    $objMailView->assignobj($objPage);
1519    $body = $objMailView->fetch($arrMAILTPLPATH[$template_id]);
1520   
1521    // ¥á¡¼¥ëÁ÷¿®½èÍý
1522    $objSendMail = new GC_SendMail();
1523    $from = $arrInfo['email03'];
1524    $error = $arrInfo['email04'];
1525    $tosubject = $tmp_subject;
1526    $objSendMail->setItem('', $tosubject, $body, $from, $arrInfo['shop_name'], $from, $error, $error);
1527    $objSendMail->setTo($to, $to_name);
1528    $objSendMail->sendMail();   // ¥á¡¼¥ëÁ÷¿®
1529}
1530
1531/* ¼õÃí´°Î»¥á¡¼¥ëÁ÷¿® */
1532function sfSendOrderMail($order_id, $template_id, $subject = "", $header = "", $footer = "", $send = true) {
1533    global $arrMAILTPLPATH;
1534   
1535    $objPage = new LC_Page();
1536    $objSiteInfo = new SC_SiteInfo();
1537    $arrInfo = $objSiteInfo->data;
1538    $objPage->arrInfo = $arrInfo;
1539   
1540    $objQuery = new SC_Query();
1541       
1542    if($subject == "" && $header == "" && $footer == "") {
1543        // ¥á¡¼¥ë¥Æ¥ó¥×¥ì¡¼¥È¾ðÊó¤Î¼èÆÀ
1544        $where = "template_id = ?";
1545        $arrRet = $objQuery->select("subject, header, footer", "dtb_mailtemplate", $where, array('1'));
1546        $objPage->tpl_header = $arrRet[0]['header'];
1547        $objPage->tpl_footer = $arrRet[0]['footer'];
1548        $tmp_subject = $arrRet[0]['subject'];
1549    } else {
1550        $objPage->tpl_header = $header;
1551        $objPage->tpl_footer = $footer;
1552        $tmp_subject = $subject;
1553    }
1554   
1555    // ¼õÃí¾ðÊó¤Î¼èÆÀ
1556    $where = "order_id = ?";
1557    $arrRet = $objQuery->select("*", "dtb_order", $where, array($order_id));
1558    $arrOrder = $arrRet[0];
1559    $arrOrderDetail = $objQuery->select("*", "dtb_order_detail", $where, array($order_id));
1560   
1561    $objPage->Message_tmp = $arrOrder['message'];
1562       
1563    // ¸ÜµÒ¾ðÊó¤Î¼èÆÀ
1564    $customer_id = $arrOrder['customer_id'];
1565    $arrRet = $objQuery->select("point", "dtb_customer", "customer_id = ?", array($customer_id));
1566    $arrCustomer = $arrRet[0];
1567
1568    $objPage->arrCustomer = $arrCustomer;
1569    $objPage->arrOrder = $arrOrder;
1570
1571    //¤½¤Î¾·èºÑ¾ðÊó
1572    if($arrOrder['memo02'] != "") {
1573        $arrOther = unserialize($arrOrder['memo02']);
1574       
1575        foreach($arrOther as $other_key => $other_val){
1576            if(sfTrim($other_val["value"]) == ""){
1577                $arrOther[$other_key]["value"] = "";
1578            }
1579        }
1580       
1581        $objPage->arrOther = $arrOther;
1582    }
1583
1584    // ÅÔÆ»Éܸ©ÊÑ´¹
1585    global $arrPref;
1586    $objPage->arrOrder['deliv_pref'] = $arrPref[$objPage->arrOrder['deliv_pref']];
1587   
1588    $objPage->arrOrderDetail = $arrOrderDetail;
1589   
1590    $objCustomer = new SC_Customer();
1591    $objPage->tpl_user_point = $objCustomer->getValue('point');
1592   
1593    $objMailView = new SC_SiteView();
1594    // ¥á¡¼¥ëËÜʸ¤Î¼èÆÀ
1595    $objMailView->assignobj($objPage);
1596    $body = $objMailView->fetch($arrMAILTPLPATH[$template_id]);
1597   
1598    // ¥á¡¼¥ëÁ÷¿®½èÍý
1599    $objSendMail = new GC_SendMail();
1600    $bcc = $arrInfo['email01'];
1601    $from = $arrInfo['email03'];
1602    $error = $arrInfo['email04'];
1603   
1604    $tosubject = sfMakeSubject($tmp_subject);
1605   
1606    $objSendMail->setItem('', $tosubject, $body, $from, $arrInfo['shop_name'], $from, $error, $error, $bcc);
1607    $objSendMail->setTo($arrOrder["order_email"], $arrOrder["order_name01"] . " ". $arrOrder["order_name02"] ." ÍÍ");
1608
1609
1610    // Á÷¿®¥Õ¥é¥°:true¤Î¾ì¹ç¤Ï¡¢Á÷¿®¤¹¤ë¡£
1611    if($send) {
1612        if ($objSendMail->sendMail()) {
1613            sfSaveMailHistory($order_id, $template_id, $tosubject, $body);
1614        }
1615    }
1616
1617    return $objSendMail;
1618}
1619
1620// ¥Æ¥ó¥×¥ì¡¼¥È¤ò»ÈÍѤ·¤¿¥á¡¼¥ë¤ÎÁ÷¿®
1621function sfSendTplMail($to, $subject, $tplpath, $objPage) {
1622    $objMailView = new SC_SiteView();
1623    $objSiteInfo = new SC_SiteInfo();
1624    $arrInfo = $objSiteInfo->data;
1625    // ¥á¡¼¥ëËÜʸ¤Î¼èÆÀ
1626    $objPage->tpl_shopname=$arrInfo['shop_name'];
1627    $objPage->tpl_infoemail = $arrInfo['email02'];
1628    $objMailView->assignobj($objPage);
1629    $body = $objMailView->fetch($tplpath);
1630    // ¥á¡¼¥ëÁ÷¿®½èÍý
1631    $objSendMail = new GC_SendMail();
1632    $to = mb_encode_mimeheader($to);
1633    $bcc = $arrInfo['email01'];
1634    $from = $arrInfo['email03'];
1635    $error = $arrInfo['email04'];
1636    $objSendMail->setItem($to, $subject, $body, $from, $arrInfo['shop_name'], $from, $error, $error, $bcc);
1637    $objSendMail->sendMail();   
1638}
1639
1640// Ä̾ï¤Î¥á¡¼¥ëÁ÷¿®
1641function sfSendMail($to, $subject, $body) {
1642    $objSiteInfo = new SC_SiteInfo();
1643    $arrInfo = $objSiteInfo->data;
1644    // ¥á¡¼¥ëÁ÷¿®½èÍý
1645    $objSendMail = new GC_SendMail();
1646    $bcc = $arrInfo['email01'];
1647    $from = $arrInfo['email03'];
1648    $error = $arrInfo['email04'];
1649    $objSendMail->setItem($to, $subject, $body, $from, $arrInfo['shop_name'], $from, $error, $error, $bcc);
1650    $objSendMail->sendMail();
1651}
1652
1653//·ï̾¤Ë¥Æ¥ó¥×¥ì¡¼¥È¤òÍѤ¤¤ë
1654function sfMakeSubject($subject){
1655   
1656    $objQuery = new SC_Query();
1657    $objMailView = new SC_SiteView();
1658    $objPage = new LC_Page();
1659   
1660    $arrInfo = $objQuery->select("*","dtb_baseinfo");
1661    $arrInfo = $arrInfo[0];
1662    $objPage->tpl_shopname=$arrInfo['shop_name'];
1663    $objPage->tpl_infoemail=$subject;
1664    $objMailView->assignobj($objPage);
1665    $mailtitle = $objMailView->fetch('mail_templates/mail_title.tpl');
1666    $ret = $mailtitle.$subject;
1667    return $ret;
1668}
1669
1670// ¥á¡¼¥ëÇÛ¿®ÍúÎò¤Ø¤ÎÅÐÏ¿
1671function sfSaveMailHistory($order_id, $template_id, $subject, $body) {
1672    $sqlval['subject'] = $subject;
1673    $sqlval['order_id'] = $order_id;
1674    $sqlval['template_id'] = $template_id;
1675    $sqlval['send_date'] = "Now()";
1676    if($_SESSION['member_id'] != "") {
1677        $sqlval['creator_id'] = $_SESSION['member_id'];
1678    } else {
1679        $sqlval['creator_id'] = '0';
1680    }
1681    $sqlval['mail_body'] = $body;
1682   
1683    $objQuery = new SC_Query();
1684    $objQuery->insert("dtb_mail_history", $sqlval);
1685}
1686
1687/* ²ñ°÷¾ðÊó¤ò°ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤Ø */
1688function sfGetCustomerSqlVal($uniqid, $sqlval) {
1689    $objCustomer = new SC_Customer();
1690    // ²ñ°÷¾ðÊóÅÐÏ¿½èÍý
1691    if ($objCustomer->isLoginSuccess()) {
1692        // ÅÐÏ¿¥Ç¡¼¥¿¤ÎºîÀ®
1693        $sqlval['order_temp_id'] = $uniqid;
1694        $sqlval['update_date'] = 'Now()';
1695        $sqlval['customer_id'] = $objCustomer->getValue('customer_id');
1696        $sqlval['order_name01'] = $objCustomer->getValue('name01');
1697        $sqlval['order_name02'] = $objCustomer->getValue('name02');
1698        $sqlval['order_kana01'] = $objCustomer->getValue('kana01');
1699        $sqlval['order_kana02'] = $objCustomer->getValue('kana02');
1700        $sqlval['order_sex'] = $objCustomer->getValue('sex');
1701        $sqlval['order_zip01'] = $objCustomer->getValue('zip01');
1702        $sqlval['order_zip02'] = $objCustomer->getValue('zip02');
1703        $sqlval['order_pref'] = $objCustomer->getValue('pref');
1704        $sqlval['order_addr01'] = $objCustomer->getValue('addr01');
1705        $sqlval['order_addr02'] = $objCustomer->getValue('addr02');
1706        $sqlval['order_tel01'] = $objCustomer->getValue('tel01');
1707        $sqlval['order_tel02'] = $objCustomer->getValue('tel02');
1708        $sqlval['order_tel03'] = $objCustomer->getValue('tel03');
1709        if (defined('MOBILE_SITE')) {
1710            $sqlval['order_email'] = $objCustomer->getValue('email_mobile');
1711        } else {
1712            $sqlval['order_email'] = $objCustomer->getValue('email');
1713        }
1714        $sqlval['order_job'] = $objCustomer->getValue('job');
1715        $sqlval['order_birth'] = $objCustomer->getValue('birth');
1716    }
1717    return $sqlval;
1718}
1719
1720// ¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤Ø¤Î½ñ¤­¹þ¤ß½èÍý
1721function sfRegistTempOrder($uniqid, $sqlval) {
1722    if($uniqid != "") {
1723        // ´û¸¥Ç¡¼¥¿¤Î¥Á¥§¥Ã¥¯
1724        $objQuery = new SC_Query();
1725        $where = "order_temp_id = ?";
1726        $cnt = $objQuery->count("dtb_order_temp", $where, array($uniqid));
1727        // ´û¸¥Ç¡¼¥¿¤¬¤Ê¤¤¾ì¹ç
1728        if ($cnt == 0) {
1729            // ½é²ó½ñ¤­¹þ¤ß»þ¤Ë²ñ°÷¤ÎÅÐÏ¿ºÑ¤ß¾ðÊó¤ò¼è¤ê¹þ¤à
1730            $sqlval = sfGetCustomerSqlVal($uniqid, $sqlval);
1731            $sqlval['create_date'] = "now()";
1732            $objQuery->insert("dtb_order_temp", $sqlval);
1733        } else {
1734            $objQuery->update("dtb_order_temp", $sqlval, $where, array($uniqid));
1735        }
1736    }
1737}
1738
1739/* ²ñ°÷¤Î¥á¥ë¥Þ¥¬ÅÐÏ¿¤¬¤¢¤ë¤«¤É¤¦¤«¤Î¥Á¥§¥Ã¥¯(²¾²ñ°÷¤ò´Þ¤Þ¤Ê¤¤) */
1740function sfCheckCustomerMailMaga($email) {
1741    $col = "T1.email, T1.mail_flag, T2.customer_id";
1742    $from = "dtb_customer_mail AS T1 LEFT JOIN dtb_customer AS T2 ON T1.email = T2.email";
1743    $where = "T1.email = ? AND T2.status = 2";
1744    $objQuery = new SC_Query();
1745    $arrRet = $objQuery->select($col, $from, $where, array($email));
1746    // ²ñ°÷¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤¬ÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë
1747    if($arrRet[0]['customer_id'] != "") {
1748        return true;
1749    }
1750    return false;
1751}
1752
1753// ¥«¡¼¥É¤Î½èÍý·ë²Ì¤òÊÖ¤¹
1754function sfGetAuthonlyResult($dir, $file_name, $name01, $name02, $card_no, $card_exp, $amount, $order_id, $jpo_info = "10"){
1755
1756    $path = $dir .$file_name;       // cgi¥Õ¥¡¥¤¥ë¤Î¥Õ¥ë¥Ñ¥¹À¸À®
1757    $now_dir = getcwd();            // require¤¬¤¦¤Þ¤¯¤¤¤«¤Ê¤¤¤Î¤Ç¡¢cgi¼Â¹Ô¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Üư¤¹¤ë
1758    chdir($dir);
1759   
1760    // ¥Ñ¥¤¥×ÅϤ·¤Ç¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤écgiµ¯Æ°
1761    $cmd = "$path card_no=$card_no name01=$name01 name02=$name02 card_exp=$card_exp amount=$amount order_id=$order_id jpo_info=$jpo_info";
1762
1763    $tmpResult = popen($cmd, "r");
1764   
1765    // ·ë²Ì¼èÆÀ
1766    while( ! FEOF ( $tmpResult ) ) {
1767        $result .= FGETS($tmpResult);
1768    }
1769    pclose($tmpResult);             //  ¥Ñ¥¤¥×¤òÊĤ¸¤ë
1770    chdir($now_dir);                //¡¡¸µ¤Ë¤¤¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Ëµ¢¤ë
1771   
1772    // ·ë²Ì¤òÏ¢ÁÛÇÛÎ󤨳ÊǼ
1773    $result = ereg_replace("&$", "", $result);
1774    foreach (explode("&",$result) as $data) {
1775        list($key, $val) = explode("=", $data, 2);
1776        $return[$key] = $val;
1777    }
1778   
1779    return $return;
1780}
1781
1782// ¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤«¤é¾ðÊó¤ò¼èÆÀ¤¹¤ë
1783function sfGetOrderTemp($order_temp_id) {
1784    $objQuery = new SC_Query();
1785    $where = "order_temp_id = ?";
1786    $arrRet = $objQuery->select("*", "dtb_order_temp", $where, array($order_temp_id));
1787    return $arrRet[0];
1788}
1789
1790// ¥«¥Æ¥´¥êID¼èÆÀȽÄêÍѤΥ°¥í¡¼¥Ð¥ëÊÑ¿ô(°ìÅÙ¼èÆÀ¤µ¤ì¤Æ¤¤¤¿¤éºÆ¼èÆÀ¤·¤Ê¤¤¤è¤¦¤Ë¤¹¤ë)
1791$g_category_on = false;
1792$g_category_id = "";
1793
1794/* ÁªÂòÃæ¤Î¥«¥Æ¥´¥ê¤ò¼èÆÀ¤¹¤ë */
1795function sfGetCategoryId($product_id, $category_id) {
1796    global $g_category_on;
1797    global $g_category_id;
1798    if(!$g_category_on) {
1799        $g_category_on = true;
1800        if(sfIsInt($category_id) && sfIsRecord("dtb_category","category_id", $category_id)) {
1801            $g_category_id = $category_id;
1802        } else if (sfIsInt($product_id) && sfIsRecord("dtb_products","product_id", $product_id, "status = 1")) {
1803            $objQuery = new SC_Query();
1804            $where = "product_id = ?";
1805            $category_id = $objQuery->get("dtb_products", "category_id", $where, array($product_id));
1806            $g_category_id = $category_id;
1807        } else {
1808            // ÉÔÀµ¤Ê¾ì¹ç¤Ï¡¢0¤òÊÖ¤¹¡£
1809            $g_category_id = 0;
1810        }
1811    }
1812    return $g_category_id;
1813}
1814
1815// ROOTID¼èÆÀȽÄêÍѤΥ°¥í¡¼¥Ð¥ëÊÑ¿ô(°ìÅÙ¼èÆÀ¤µ¤ì¤Æ¤¤¤¿¤éºÆ¼èÆÀ¤·¤Ê¤¤¤è¤¦¤Ë¤¹¤ë)
1816$g_root_on = false;
1817$g_root_id = "";
1818
1819/* ÁªÂòÃæ¤Î¥¢¥¤¥Æ¥à¤Î¥ë¡¼¥È¥«¥Æ¥´¥êID¤ò¼èÆÀ¤¹¤ë */
1820function sfGetRootId() {
1821    global $g_root_on;
1822    global $g_root_id;
1823    if(!$g_root_on) {
1824        $g_root_on = true;
1825        $objQuery = new SC_Query();
1826        if($_GET['product_id'] != "" || $_GET['category_id'] != "") {
1827            // ÁªÂòÃæ¤Î¥«¥Æ¥´¥êID¤òȽÄꤹ¤ë
1828            $category_id = sfGetCategoryId($_GET['product_id'], $_GET['category_id']);
1829            // ROOT¥«¥Æ¥´¥êID¤Î¼èÆÀ
1830             $arrRet = sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $category_id);
1831             $root_id = $arrRet[0];
1832        } else {
1833            // ROOT¥«¥Æ¥´¥êID¤ò¤Ê¤·¤ËÀßÄꤹ¤ë
1834            $root_id = "";
1835        }
1836        $g_root_id = $root_id;
1837    }
1838    return $g_root_id;
1839}
1840
1841/* ¥«¥Æ¥´¥ê¤«¤é¾¦Éʤò¸¡º÷¤¹¤ë¾ì¹ç¤ÎWHEREʸ¤ÈÃͤòÊÖ¤¹ */
1842function sfGetCatWhere($category_id) {
1843    // »Ò¥«¥Æ¥´¥êID¤Î¼èÆÀ
1844    $arrRet = sfGetChildsID("dtb_category", "parent_category_id", "category_id", $category_id);
1845    $tmp_where = "";
1846    foreach ($arrRet as $val) {
1847        if($tmp_where == "") {
1848            $tmp_where.= " category_id IN ( ?";
1849        } else {
1850            $tmp_where.= ",? ";
1851        }
1852        $arrval[] = $val;
1853    }
1854    $tmp_where.= " ) ";
1855    return array($tmp_where, $arrval);
1856}
1857
1858/* ²Ã»»¥Ý¥¤¥ó¥È¤Î·×»»¼° */
1859function sfGetAddPoint($totalpoint, $use_point, $arrInfo) {
1860    // ¹ØÆþ¾¦Éʤιç·×¥Ý¥¤¥ó¥È¤«¤éÍøÍѤ·¤¿¥Ý¥¤¥ó¥È¤Î¥Ý¥¤¥ó¥È´¹»»²ÁÃͤò°ú¤¯Êý¼°
1861    $add_point = $totalpoint - intval($use_point * ($arrInfo['point_rate'] / 100));
1862   
1863    if($add_point < 0) {
1864        $add_point = '0';
1865    }
1866    return $add_point;
1867}
1868
1869/* °ì°Õ¤«¤Äͽ¬¤µ¤ì¤Ë¤¯¤¤ID */
1870function sfGetUniqRandomId($head = "") {
1871    // ͽ¬¤µ¤ì¤Ê¤¤¤è¤¦¤Ë¥é¥ó¥À¥àʸ»úÎó¤òÉÕÍ¿¤¹¤ë¡£
1872    $random = gfMakePassword(8);
1873    // Ʊ°ì¥Û¥¹¥ÈÆâ¤Ç°ì°Õ¤ÊID¤òÀ¸À®
1874    $id = uniqid($head);
1875    return ($id . $random);
1876}
1877
1878// ¥«¥Æ¥´¥êÊÌ¥ª¥¹¥¹¥áÉʤμèÆÀ
1879function sfGetBestProducts( $conn, $category_id = 0){
1880    // ´û¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤ëÆâÍÆ¤ò¼èÆÀ¤¹¤ë
1881    $sql = "SELECT name, main_image, main_list_image, price01_min, price01_max, price02_min, price02_max, point_rate,
1882             A.product_id, A.comment FROM dtb_best_products as A LEFT JOIN vw_products_allclass AS allcls
1883            USING (product_id) WHERE A.category_id = ? AND A.del_flg = 0 AND status = 1 ORDER BY A.rank";
1884    $arrItems = $conn->getAll($sql, array($category_id));
1885
1886    return $arrItems;
1887}
1888
1889// ÆÃ¼ìÀ©¸æÊ¸»ú¤Î¼êư¥¨¥¹¥±¡¼¥×
1890function sfManualEscape($data) {
1891    // ÇÛÎó¤Ç¤Ê¤¤¾ì¹ç
1892    if(!is_array($data)) {
1893        if (DB_TYPE == "pgsql") {
1894            $ret = pg_escape_string($data);
1895        }else if(DB_TYPE == "mysql"){
1896            $ret = mysql_real_escape_string($data);
1897        }
1898        $ret = ereg_replace("%", "\\%", $ret);
1899        $ret = ereg_replace("_", "\\_", $ret);
1900        return $ret;
1901    }
1902   
1903    // ÇÛÎó¤Î¾ì¹ç
1904    foreach($data as $val) {
1905        if (DB_TYPE == "pgsql") {
1906            $ret = pg_escape_string($val);
1907        }else if(DB_TYPE == "mysql"){
1908            $ret = mysql_real_escape_string($val);
1909        }
1910
1911        $ret = ereg_replace("%", "\\%", $ret);
1912        $ret = ereg_replace("_", "\\_", $ret);
1913        $arrRet[] = $ret;
1914    }
1915
1916    return $arrRet;
1917}
1918
1919// ¼õÃíÈÖ¹æ¡¢ÍøÍѥݥ¤¥ó¥È¡¢²Ã»»¥Ý¥¤¥ó¥È¤«¤éºÇ½ª¥Ý¥¤¥ó¥È¤ò¼èÆÀ
1920function sfGetCustomerPoint($order_id, $use_point, $add_point) {
1921    $objQuery = new SC_Query();
1922    $arrRet = $objQuery->select("customer_id", "dtb_order", "order_id = ?", array($order_id));
1923    $customer_id = $arrRet[0]['customer_id'];
1924    if($customer_id != "" && $customer_id >= 1) {
1925        $arrRet = $objQuery->select("point", "dtb_customer", "customer_id = ?", array($customer_id));
1926        $point = $arrRet[0]['point'];
1927        $total_point = $arrRet[0]['point'] - $use_point + $add_point;
1928    } else {
1929        $total_point = "";
1930        $point = "";
1931    }
1932    return array($point, $total_point);
1933}
1934
1935/* ¥É¥á¥¤¥ó´Ö¤ÇÍ­¸ú¤Ê¥»¥Ã¥·¥ç¥ó¤Î¥¹¥¿¡¼¥È */
1936function sfDomainSessionStart() {
1937    $ret = session_id();
1938/*
1939    ¥Ø¥Ã¥À¡¼¤òÁ÷¿®¤·¤Æ¤¤¤Æ¤âsession_start()¤¬É¬Íפʥڡ¼¥¸¤¬¤¢¤ë¤Î¤Ç
1940    ¥³¥á¥ó¥È¥¢¥¦¥È¤·¤Æ¤ª¤¯
1941    if($ret == "" && !headers_sent()) {
1942*/
1943    if($ret == "") {
1944        /* ¥»¥Ã¥·¥ç¥ó¥Ñ¥é¥á¡¼¥¿¤Î»ØÄê
1945         ¡¦¥Ö¥é¥¦¥¶¤òÊĤ¸¤ë¤Þ¤ÇÍ­¸ú
1946         ¡¦¤¹¤Ù¤Æ¤Î¥Ñ¥¹¤ÇÍ­¸ú
1947         ¡¦Æ±¤¸¥É¥á¥¤¥ó´Ö¤Ç¶¦Í­ */
1948        session_set_cookie_params (0, "/", DOMAIN_NAME);
1949
1950        if(!ini_get("session.auto_start")){
1951            // ¥»¥Ã¥·¥ç¥ó³«»Ï
1952            session_start();
1953        }
1954    }
1955}
1956
1957/* ʸ»úÎó¤Ë¶¯À©Åª¤Ë²þ¹Ô¤òÆþ¤ì¤ë */
1958function sfPutBR($str, $size) {
1959    $i = 0;
1960    $cnt = 0;
1961    $line = array();
1962    $ret = "";
1963   
1964    while($str[$i] != "") {
1965        $line[$cnt].=$str[$i];
1966        $i++;
1967        if(strlen($line[$cnt]) > $size) {
1968            $line[$cnt].="<br />";
1969            $cnt++;
1970        }
1971    }
1972   
1973    foreach($line as $val) {
1974        $ret.=$val;
1975    }
1976    return $ret;
1977}
1978
1979// Æó²ó°Ê¾å·«¤êÊÖ¤µ¤ì¤Æ¤¤¤ë¥¹¥é¥Ã¥·¥å[/]¤ò°ì¤Ä¤ËÊÑ´¹¤¹¤ë¡£
1980function sfRmDupSlash($istr){
1981    if(ereg("^http://", $istr)) {
1982        $str = substr($istr, 7);
1983        $head = "http://";
1984    } else if(ereg("^https://", $istr)) {
1985        $str = substr($istr, 8);
1986        $head = "https://";
1987    } else {
1988        $str = $istr;
1989    }
1990    $str = ereg_replace("[/]+", "/", $str);
1991    $ret = $head . $str;
1992    return $ret;   
1993}
1994
1995function sfEncodeFile($filepath, $enc_type, $out_dir) {
1996    $ifp = fopen($filepath, "r");
1997   
1998    $basename = basename($filepath);
1999    $outpath = $out_dir . "enc_" . $basename;
2000   
2001    $ofp = fopen($outpath, "w+");
2002   
2003    while(!feof($ifp)) {
2004        $line = fgets($ifp);
2005        $line = mb_convert_encoding($line, $enc_type, "auto");
2006        fwrite($ofp,  $line);
2007    }
2008   
2009    fclose($ofp);
2010    fclose($ifp);
2011   
2012    return  $outpath;
2013}
2014
2015function sfCutString($str, $len, $byte = true, $commadisp = true) {
2016    if($byte) {
2017        if(strlen($str) > ($len + 2)) {
2018            $ret =substr($str, 0, $len);
2019            $cut = substr($str, $len);
2020        } else {
2021            $ret = $str;
2022            $commadisp = false;
2023        }
2024    } else {
2025        if(mb_strlen($str) > ($len + 1)) {
2026            $ret = mb_substr($str, 0, $len);
2027            $cut = mb_substr($str, $len);
2028        } else {
2029            $ret = $str;
2030            $commadisp = false;
2031        }
2032    }
2033
2034    // ³¨Ê¸»ú¥¿¥°¤ÎÅÓÃæ¤ÇʬÃǤµ¤ì¤Ê¤¤¤è¤¦¤Ë¤¹¤ë¡£
2035    if (isset($cut)) {
2036        // ʬ³ä°ÌÃÖ¤è¤êÁ°¤ÎºÇ¸å¤Î [ °Ê¹ß¤ò¼èÆÀ¤¹¤ë¡£
2037        $head = strrchr($ret, '[');
2038
2039        // ʬ³ä°ÌÃÖ¤è¤ê¸å¤ÎºÇ½é¤Î ] °ÊÁ°¤ò¼èÆÀ¤¹¤ë¡£
2040        $tail_pos = strpos($cut, ']');
2041        if ($tail_pos !== false) {
2042            $tail = substr($cut, 0, $tail_pos + 1);
2043        }
2044
2045        // ʬ³ä°ÌÃÖ¤è¤êÁ°¤Ë [¡¢¸å¤Ë ] ¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¤Ï¡¢[ ¤«¤é ] ¤Þ¤Ç¤ò
2046        // Àܳ¤·¤Æ³¨Ê¸»ú¥¿¥°1¸Äʬ¤Ë¤Ê¤ë¤«¤É¤¦¤«¤ò¥Á¥§¥Ã¥¯¤¹¤ë¡£
2047        if ($head !== false && $tail_pos !== false) {
2048            $subject = $head . $tail;
2049            if (preg_match('/^\[emoji:e?\d+\]$/', $subject)) {
2050                // ³¨Ê¸»ú¥¿¥°¤¬¸«¤Ä¤«¤Ã¤¿¤Î¤Çºï½ü¤¹¤ë¡£
2051                $ret = substr($ret, 0, -strlen($head));
2052            }
2053        }
2054    }
2055
2056    if($commadisp){
2057        $ret = $ret . "...";
2058    }
2059    return $ret;
2060}
2061
2062// ǯ¡¢·î¡¢Äù¤áÆü¤«¤é¡¢Àè·î¤ÎÄù¤áÆü+1¡¢º£·î¤ÎÄù¤áÆü¤òµá¤á¤ë¡£
2063function sfTermMonth($year, $month, $close_day) {
2064    $end_year = $year;
2065    $end_month = $month;
2066   
2067    // ³«»Ï·î¤¬½ªÎ»·î¤ÈƱ¤¸¤«Èݤ«
2068    $same_month = false;
2069   
2070    // ³ºÅö·î¤ÎËöÆü¤òµá¤á¤ë¡£
2071    $end_last_day = date("d", mktime(0, 0, 0, $month + 1, 0, $year));
2072   
2073    // ·î¤ÎËöÆü¤¬Äù¤áÆü¤è¤ê¾¯¤Ê¤¤¾ì¹ç
2074    if($end_last_day < $close_day) {
2075        // Äù¤áÆü¤ò·îËöÆü¤Ë¹ç¤ï¤»¤ë
2076        $end_day = $end_last_day;
2077    } else {
2078        $end_day = $close_day;
2079    }
2080   
2081    // Á°·î¤Î¼èÆÀ
2082    $tmp_year = date("Y", mktime(0, 0, 0, $month, 0, $year));
2083    $tmp_month = date("m", mktime(0, 0, 0, $month, 0, $year));
2084    // Á°·î¤ÎËöÆü¤òµá¤á¤ë¡£
2085    $start_last_day = date("d", mktime(0, 0, 0, $month, 0, $year));
2086   
2087    // Á°·î¤ÎËöÆü¤¬Äù¤áÆü¤è¤ê¾¯¤Ê¤¤¾ì¹ç
2088    if ($start_last_day < $close_day) {
2089        // ·îËöÆü¤Ë¹ç¤ï¤»¤ë
2090        $tmp_day = $start_last_day;
2091    } else {
2092        $tmp_day = $close_day;
2093    }
2094   
2095    // Àè·î¤ÎËöÆü¤ÎÍâÆü¤ò¼èÆÀ¤¹¤ë
2096    $start_year = date("Y", mktime(0, 0, 0, $tmp_month, $tmp_day + 1, $tmp_year));
2097    $start_month = date("m", mktime(0, 0, 0, $tmp_month, $tmp_day + 1, $tmp_year));
2098    $start_day = date("d", mktime(0, 0, 0, $tmp_month, $tmp_day + 1, $tmp_year));
2099   
2100    // ÆüÉդκîÀ®
2101    $start_date = sprintf("%d/%d/%d 00:00:00", $start_year, $start_month, $start_day);
2102    $end_date = sprintf("%d/%d/%d 23:59:59", $end_year, $end_month, $end_day);
2103   
2104    return array($start_date, $end_date);
2105}
2106
2107// PDFÍѤÎRGB¥«¥é¡¼¤òÊÖ¤¹
2108function sfGetPdfRgb($hexrgb) {
2109    $hex = substr($hexrgb, 0, 2);
2110    $r = hexdec($hex) / 255;
2111   
2112    $hex = substr($hexrgb, 2, 2);
2113    $g = hexdec($hex) / 255;
2114   
2115    $hex = substr($hexrgb, 4, 2);
2116    $b = hexdec($hex) / 255;
2117   
2118    return array($r, $g, $b);   
2119}
2120
2121//¥á¥ë¥Þ¥¬²¾ÅÐÏ¿¤È¥á¡¼¥ëÇÛ¿®
2122function sfRegistTmpMailData($mail_flag, $email){
2123    $objQuery = new SC_Query();
2124    $objConn = new SC_DBConn();
2125    $objPage = new LC_Page();
2126   
2127    $random_id = sfGetUniqRandomId();
2128    $arrRegistMailMagazine["mail_flag"] = $mail_flag;
2129    $arrRegistMailMagazine["email"] = $email;
2130    $arrRegistMailMagazine["temp_id"] =$random_id;
2131    $arrRegistMailMagazine["end_flag"]='0';
2132    $arrRegistMailMagazine["update_date"] = 'now()';
2133   
2134    //¥á¥ë¥Þ¥¬²¾ÅÐÏ¿Íѥե饰
2135    $flag = $objQuery->count("dtb_customer_mail_temp", "email=?", array($email));
2136    $objConn->query("BEGIN");
2137    switch ($flag){
2138        case '0':
2139        $objConn->autoExecute("dtb_customer_mail_temp",$arrRegistMailMagazine);
2140        break;
2141   
2142        case '1':
2143        $objConn->autoExecute("dtb_customer_mail_temp",$arrRegistMailMagazine, "email = '" .addslashes($email). "'");
2144        break;
2145    }
2146    $objConn->query("COMMIT");
2147    $subject = sfMakeSubject('¥á¥ë¥Þ¥¬²¾ÅÐÏ¿¤¬´°Î»¤·¤Þ¤·¤¿¡£');
2148    $objPage->tpl_url = SSL_URL."mailmagazine/regist.php?temp_id=".$arrRegistMailMagazine['temp_id'];
2149    switch ($mail_flag){
2150        case '1':
2151        $objPage->tpl_name = "ÅÐÏ¿";
2152        $objPage->tpl_kindname = "HTML";
2153        break;
2154       
2155        case '2':
2156        $objPage->tpl_name = "ÅÐÏ¿";
2157        $objPage->tpl_kindname = "¥Æ¥­¥¹¥È";
2158        break;
2159       
2160        case '3':
2161        $objPage->tpl_name = "²ò½ü";
2162        break;
2163    }
2164        $objPage->tpl_email = $email;
2165    sfSendTplMail($email, $subject, 'mail_templates/mailmagazine_temp.tpl', $objPage);
2166}
2167
2168// ºÆµ¢Åª¤Ë¿ÃÊÇÛÎó¤ò¸¡º÷¤·¤Æ°ì¼¡¸µÇÛÎó(Hidden°úÅϤ·ÍÑÇÛÎó)¤ËÊÑ´¹¤¹¤ë¡£
2169function sfMakeHiddenArray($arrSrc, $arrDst = array(), $parent_key = "") {
2170    if(is_array($arrSrc)) {
2171        foreach($arrSrc as $key => $val) {
2172            if($parent_key != "") {
2173                $keyname = $parent_key . "[". $key . "]";
2174            } else {
2175                $keyname = $key;
2176            }
2177            if(is_array($val)) {
2178                $arrDst = sfMakeHiddenArray($val, $arrDst, $keyname);
2179            } else {
2180                $arrDst[$keyname] = $val;
2181            }
2182        }
2183    }
2184    return $arrDst;
2185}
2186
2187// DB¼èÆÀÆü»þ¤ò¥¿¥¤¥à¤ËÊÑ´¹
2188function sfDBDatetoTime($db_date) {
2189    $date = ereg_replace("\..*$","",$db_date);
2190    $time = strtotime($date);
2191    return $time;
2192}
2193
2194// ½ÐÎϤκݤ˥ƥó¥×¥ì¡¼¥È¤òÀÚ¤êÂØ¤¨¤é¤ì¤ë
2195/*
2196    index.php?tpl=test.tpl
2197*/
2198function sfCustomDisplay($objPage) {
2199    $basename = basename($_SERVER["REQUEST_URI"]);
2200
2201    if($basename == "") {
2202        $path = $_SERVER["REQUEST_URI"] . "index.php";
2203    } else {
2204        $path = $_SERVER["REQUEST_URI"];
2205    }   
2206
2207    if($_GET['tpl'] != "") {
2208        $tpl_name = $_GET['tpl'];
2209    } else {
2210        $tpl_name = ereg_replace("^/", "", $path);
2211        $tpl_name = ereg_replace("/", "_", $tpl_name);
2212        $tpl_name = ereg_replace("(\.php$|\.html$)", ".tpl", $tpl_name);
2213    }
2214
2215    $template_path = TEMPLATE_FTP_DIR . $tpl_name;
2216
2217    if(file_exists($template_path)) {
2218        $objView = new SC_UserView(TEMPLATE_FTP_DIR, COMPILE_FTP_DIR);
2219        $objView->assignobj($objPage);
2220        $objView->display($tpl_name);
2221    } else {
2222        $objView = new SC_SiteView();
2223        $objView->assignobj($objPage);
2224        $objView->display(SITE_FRAME);
2225    }
2226}
2227
2228//²ñ°÷ÊÔ½¸ÅÐÏ¿½èÍý
2229function sfEditCustomerData($array, $arrRegistColumn) {
2230    $objQuery = new SC_Query();
2231   
2232    foreach ($arrRegistColumn as $data) {
2233        if ($data["column"] != "password") {
2234            if($array[ $data['column'] ] != "") {
2235                $arrRegist[ $data["column"] ] = $array[ $data["column"] ];
2236            } else {
2237                $arrRegist[ $data['column'] ] = NULL;
2238            }
2239        }
2240    }
2241    if (strlen($array["year"]) > 0 && strlen($array["month"]) > 0 && strlen($array["day"]) > 0) {
2242        $arrRegist["birth"] = $array["year"] ."/". $array["month"] ."/". $array["day"] ." 00:00:00";
2243    } else {
2244        $arrRegist["birth"] = NULL;
2245    }
2246
2247    //-- ¥Ñ¥¹¥ï¡¼¥É¤Î¹¹¿·¤¬¤¢¤ë¾ì¹ç¤Ï°Å¹æ²½¡£¡Ê¹¹¿·¤¬¤Ê¤¤¾ì¹ç¤ÏUPDATEʸ¤ò¹½À®¤·¤Ê¤¤¡Ë
2248    if ($array["password"] != DEFAULT_PASSWORD) $arrRegist["password"] = sha1($array["password"] . ":" . AUTH_MAGIC);
2249    $arrRegist["update_date"] = "NOW()";
2250   
2251    $sqlval["create_date"] = "NOW()";
2252    $sqlval["update_date"] = "NOW()";
2253    $sqlval['email'] = $array['email'];
2254    $sqlval['mail_flag'] = $array['mail_flag'];
2255    //-- ÊÔ½¸ÅÐÏ¿¼Â¹Ô
2256    if (defined('MOBILE_SITE')) {
2257        $arrRegist['email_mobile'] = $arrRegist['email'];
2258        unset($arrRegist['email']);
2259    }
2260    $objQuery->begin();
2261    $objQuery->update("dtb_customer", $arrRegist, "customer_id = ? ", array($array['customer_id']));
2262    $objQuery->delete("dtb_customer_mail", "email = ?", array($array['email']));
2263    $objQuery->insert("dtb_customer_mail", $sqlval);
2264    $objQuery->commit();
2265}
2266
2267// PHP¤Îmb_convert_encoding´Ø¿ô¤òSmarty¤Ç¤â»È¤¨¤ë¤è¤¦¤Ë¤¹¤ë
2268function sf_mb_convert_encoding($str, $encode = 'CHAR_CODE') {
2269    return  mb_convert_encoding($str, $encode);
2270}   
2271
2272// PHP¤Îmktime´Ø¿ô¤òSmarty¤Ç¤â»È¤¨¤ë¤è¤¦¤Ë¤¹¤ë
2273function sf_mktime($format, $hour=0, $minute=0, $second=0, $month=1, $day=1, $year=1999) {
2274    return  date($format,mktime($hour, $minute, $second, $month, $day, $year));
2275}   
2276
2277// PHP¤Îdate´Ø¿ô¤òSmarty¤Ç¤â»È¤¨¤ë¤è¤¦¤Ë¤¹¤ë
2278function sf_date($format, $timestamp = '') {
2279    return  date( $format, $timestamp);
2280}
2281
2282// ¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹¤Î·¿¤òÊÑ´¹¤¹¤ë
2283function sfChangeCheckBox($data , $tpl = false){
2284    if ($tpl) {
2285        if ($data == 1){
2286            return 'checked';
2287        }else{
2288            return "";
2289        }
2290    }else{
2291        if ($data == "on"){
2292            return 1;
2293        }else{
2294            return 2;
2295        }
2296    }
2297}
2298
2299function sfCategory_Count($objQuery){
2300    $sql = "";
2301   
2302    //¥Æ¡¼¥Ö¥ëÆâÍÆ¤Îºï½ü
2303    $objQuery->query("DELETE FROM dtb_category_count");
2304    $objQuery->query("DELETE FROM dtb_category_total_count");
2305   
2306    //³Æ¥«¥Æ¥´¥êÆâ¤Î¾¦ÉÊ¿ô¤ò¿ô¤¨¤Æ³ÊǼ
2307    $sql = " INSERT INTO dtb_category_count(category_id, product_count, create_date) ";
2308    $sql .= " SELECT T1.category_id, count(T2.category_id), now() FROM dtb_category AS T1 LEFT JOIN dtb_products AS T2 ";
2309    $sql .= " ON T1.category_id = T2.category_id  ";
2310    $sql .= " WHERE T2.del_flg = 0 AND T2.status = 1 ";
2311    $sql .= " GROUP BY T1.category_id, T2.category_id ";
2312    $objQuery->query($sql);
2313   
2314    //»Ò¥«¥Æ¥´¥êÆâ¤Î¾¦ÉÊ¿ô¤ò½¸·×¤¹¤ë
2315    $arrCat = $objQuery->getAll("SELECT * FROM dtb_category");
2316   
2317    $sql = "";
2318    foreach($arrCat as $key => $val){
2319       
2320        // »ÒID°ìÍ÷¤ò¼èÆÀ
2321        $arrRet = sfGetChildrenArray('dtb_category', 'parent_category_id', 'category_id', $val['category_id']);
2322        $line = sfGetCommaList($arrRet);
2323       
2324        $sql = " INSERT INTO dtb_category_total_count(category_id, product_count, create_date) ";
2325        $sql .= " SELECT ?, SUM(product_count), now() FROM dtb_category_count ";
2326        $sql .= " WHERE category_id IN (" . $line . ")";
2327               
2328        $objQuery->query($sql, array($val['category_id']));
2329    }
2330}
2331
2332// 2¤Ä¤ÎÇÛÎó¤òÍѤ¤¤ÆÏ¢ÁÛÇÛÎó¤òºîÀ®¤¹¤ë
2333function sfarrCombine($arrKeys, $arrValues) {
2334
2335    if(count($arrKeys) <= 0 and count($arrValues) <= 0) return array();
2336   
2337    $keys = array_values($arrKeys);
2338    $vals = array_values($arrValues);
2339   
2340    $max = max( count( $keys ), count( $vals ) );
2341    $combine_ary = array();
2342    for($i=0; $i<$max; $i++) {
2343        $combine_ary[$keys[$i]] = $vals[$i];
2344    }
2345    if(is_array($combine_ary)) return $combine_ary;
2346   
2347    return false;
2348}
2349
2350/* ³¬Áع½Â¤¤Î¥Æ¡¼¥Ö¥ë¤«¤é»ÒIDÇÛÎó¤ò¼èÆÀ¤¹¤ë */
2351function sfGetChildrenArray($table, $pid_name, $id_name, $id) {
2352    $objQuery = new SC_Query();
2353    $col = $pid_name . "," . $id_name;
2354    $arrData = $objQuery->select($col, $table);
2355   
2356    $arrPID = array();
2357    $arrPID[] = $id;
2358    $arrChildren = array();
2359    $arrChildren[] = $id;
2360   
2361    $arrRet = sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID);
2362   
2363    while(count($arrRet) > 0) {
2364        $arrChildren = array_merge($arrChildren, $arrRet);
2365        $arrRet = sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrRet);
2366    }
2367   
2368    return $arrChildren;
2369}
2370
2371/* ¿ÆIDľ²¼¤Î»ÒID¤ò¤¹¤Ù¤Æ¼èÆÀ¤¹¤ë */
2372function sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID) {
2373    $arrChildren = array();
2374    $max = count($arrData);
2375   
2376    for($i = 0; $i < $max; $i++) {
2377        foreach($arrPID as $val) {
2378            if($arrData[$i][$pid_name] == $val) {
2379                $arrChildren[] = $arrData[$i][$id_name];
2380            }
2381        }
2382    }   
2383    return $arrChildren;
2384}
2385
2386
2387/* ³¬Áع½Â¤¤Î¥Æ¡¼¥Ö¥ë¤«¤é¿ÆIDÇÛÎó¤ò¼èÆÀ¤¹¤ë */
2388function sfGetParentsArray($table, $pid_name, $id_name, $id) {
2389    $objQuery = new SC_Query();
2390    $col = $pid_name . "," . $id_name;
2391    $arrData = $objQuery->select($col, $table);
2392   
2393    $arrParents = array();
2394    $arrParents[] = $id;
2395    $child = $id;
2396   
2397    $ret = sfGetParentsArraySub($arrData, $pid_name, $id_name, $child);
2398
2399    while($ret != "") {
2400        $arrParents[] = $ret;
2401        $ret = sfGetParentsArraySub($arrData, $pid_name, $id_name, $ret);
2402    }
2403   
2404    $arrParents = array_reverse($arrParents);
2405   
2406    return $arrParents;
2407}
2408
2409/* »ÒID½ê°¤¹¤ë¿ÆID¤ò¼èÆÀ¤¹¤ë */
2410function sfGetParentsArraySub($arrData, $pid_name, $id_name, $child) {
2411    $max = count($arrData);
2412    $parent = "";
2413    for($i = 0; $i < $max; $i++) {
2414        if($arrData[$i][$id_name] == $child) {
2415            $parent = $arrData[$i][$pid_name];
2416            break;
2417        }
2418    }
2419    return $parent;
2420}
2421
2422/* ³¬Áع½Â¤¤Î¥Æ¡¼¥Ö¥ë¤«¤éÍ¿¤¨¤é¤ì¤¿ID¤Î·»Äï¤ò¼èÆÀ¤¹¤ë */
2423function sfGetBrothersArray($arrData, $pid_name, $id_name, $arrPID) {
2424    $max = count($arrData);
2425   
2426    $arrBrothers = array();
2427    foreach($arrPID as $id) {
2428        // ¿ÆID¤ò¸¡º÷¤¹¤ë
2429        for($i = 0; $i < $max; $i++) {
2430            if($arrData[$i][$id_name] == $id) {
2431                $parent = $arrData[$i][$pid_name];
2432                break;
2433            }
2434        }
2435        // ·»ÄïID¤ò¸¡º÷¤¹¤ë
2436        for($i = 0; $i < $max; $i++) {
2437            if($arrData[$i][$pid_name] == $parent) {
2438                $arrBrothers[] = $arrData[$i][$id_name];
2439            }
2440        }                   
2441    }
2442    return $arrBrothers;
2443}
2444
2445/* ³¬Áع½Â¤¤Î¥Æ¡¼¥Ö¥ë¤«¤éÍ¿¤¨¤é¤ì¤¿ID¤Îľ°¤Î»Ò¤ò¼èÆÀ¤¹¤ë */
2446function sfGetUnderChildrenArray($arrData, $pid_name, $id_name, $parent) {
2447    $max = count($arrData);
2448   
2449    $arrChildren = array();
2450    // »ÒID¤ò¸¡º÷¤¹¤ë
2451    for($i = 0; $i < $max; $i++) {
2452        if($arrData[$i][$pid_name] == $parent) {
2453            $arrChildren[] = $arrData[$i][$id_name];
2454        }
2455    }                   
2456    return $arrChildren;
2457}
2458
2459
2460// ¥«¥Æ¥´¥ê¥Ä¥ê¡¼¤Î¼èÆÀ
2461function sfGetCatTree($parent_category_id, $count_check = false) {
2462    $objQuery = new SC_Query();
2463    $col = "";
2464    $col .= " cat.category_id,";
2465    $col .= " cat.category_name,";
2466    $col .= " cat.parent_category_id,";
2467    $col .= " cat.level,";
2468    $col .= " cat.rank,";
2469    $col .= " cat.creator_id,";
2470    $col .= " cat.create_date,";
2471    $col .= " cat.update_date,";
2472    $col .= " cat.del_flg, ";
2473    $col .= " ttl.product_count";   
2474    $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id";
2475    // ÅÐÏ¿¾¦ÉÊ¿ô¤Î¥Á¥§¥Ã¥¯
2476    if($count_check) {
2477        $where = "del_flg = 0 AND product_count > 0";
2478    } else {
2479        $where = "del_flg = 0";
2480    }
2481    $objQuery->setoption("ORDER BY rank DESC");
2482    $arrRet = $objQuery->select($col, $from, $where);
2483   
2484    $arrParentID = sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $parent_category_id);
2485   
2486    foreach($arrRet as $key => $array) {
2487        foreach($arrParentID as $val) {
2488            if($array['category_id'] == $val) {
2489                $arrRet[$key]['display'] = 1;
2490                break;
2491            }
2492        }
2493    }
2494
2495    return $arrRet;
2496}
2497
2498// ¿Æ¥«¥Æ¥´¥ê¡¼¤òÏ¢·ë¤·¤¿Ê¸»úÎó¤ò¼èÆÀ¤¹¤ë
2499function sfGetCatCombName($category_id){
2500    // ¾¦Éʤ¬Â°¤¹¤ë¥«¥Æ¥´¥êID¤ò½Ä¤Ë¼èÆÀ
2501    $objQuery = new SC_Query();
2502    $arrCatID = sfGetParents($objQuery, "dtb_category", "parent_category_id", "category_id", $category_id);
2503    $ConbName = "";
2504   
2505    // ¥«¥Æ¥´¥ê¡¼Ì¾¾Î¤ò¼èÆÀ¤¹¤ë
2506    foreach($arrCatID as $key => $val){
2507        $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?";
2508        $arrVal = array($val);
2509        $CatName = $objQuery->getOne($sql,$arrVal);
2510        $ConbName .= $CatName . ' | ';
2511    }
2512    // ºÇ¸å¤Î ¡Ã ¤ò¥«¥Ã¥È¤¹¤ë
2513    $ConbName = substr_replace($ConbName, "", strlen($ConbName) - 2, 2);
2514   
2515    return $ConbName;
2516}
2517
2518// »ØÄꤷ¤¿¥«¥Æ¥´¥ê¡¼ID¤ÎÂ祫¥Æ¥´¥ê¡¼¤ò¼èÆÀ¤¹¤ë
2519function GetFirstCat($category_id){
2520    // ¾¦Éʤ¬Â°¤¹¤ë¥«¥Æ¥´¥êID¤ò½Ä¤Ë¼èÆÀ
2521    $objQuery = new SC_Query();
2522    $arrRet = array();
2523    $arrCatID = sfGetParents($objQuery, "dtb_category", "parent_category_id", "category_id", $category_id);
2524    $arrRet['id'] = $arrCatID[0];
2525   
2526    // ¥«¥Æ¥´¥ê¡¼Ì¾¾Î¤ò¼èÆÀ¤¹¤ë
2527    $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?";
2528    $arrVal = array($arrRet['id']);
2529    $arrRet['name'] = $objQuery->getOne($sql,$arrVal);
2530   
2531    return $arrRet;
2532}
2533
2534//MySQLÍѤÎSQLʸ¤ËÊѹ¹¤¹¤ë
2535function sfChangeMySQL($sql){
2536    // ²þ¹Ô¡¢¥¿¥Ö¤ò1¥¹¥Ú¡¼¥¹¤ËÊÑ´¹
2537    $sql = preg_replace("/[\r\n\t]/"," ",$sql);
2538   
2539    $sql = sfChangeView($sql);      // viewɽ¤ò¥¤¥ó¥é¥¤¥ó¥Ó¥å¡¼¤ËÊÑ´¹¤¹¤ë
2540    $sql = sfChangeILIKE($sql);     // ILIKE¸¡º÷¤òLIKE¸¡º÷¤ËÊÑ´¹¤¹¤ë
2541    $sql = sfChangeRANDOM($sql);    // RANDOM()¤òRAND()¤ËÊÑ´¹¤¹¤ë
2542
2543    return $sql;
2544}
2545
2546// SQL¤ÎÃæ¤Ëview¤¬Â¸ºß¤·¤Æ¤¤¤ë¤«¥Á¥§¥Ã¥¯¤ò¹Ô¤¦¡£
2547function sfInArray($sql){
2548    global $arrView;
2549
2550    foreach($arrView as $key => $val){
2551        if (strcasecmp($sql, $val) == 0){
2552            $changesql = eregi_replace("($key)", "$val", $sql);
2553            sfInArray($changesql);
2554        }
2555    }
2556    return false;
2557}
2558
2559// SQL¥·¥ó¥°¥ë¥¯¥©¡¼¥ÈÂбþ
2560function sfQuoteSmart($in){
2561   
2562    if (is_int($in) || is_double($in)) {
2563        return $in;
2564    } elseif (is_bool($in)) {
2565        return $in ? 1 : 0;
2566    } elseif (is_null($in)) {
2567        return 'NULL';
2568    } else {
2569        return "'" . str_replace("'", "''", $in) . "'";
2570    }
2571}
2572   
2573// viewɽ¤ò¥¤¥ó¥é¥¤¥ó¥Ó¥å¡¼¤ËÊÑ´¹¤¹¤ë
2574function sfChangeView($sql){
2575    global $arrView;
2576    global $arrViewWhere;
2577   
2578    $arrViewTmp = $arrView;
2579
2580    // view¤Îwhere¤òÊÑ´¹
2581    foreach($arrViewTmp as $key => $val){
2582        $arrViewTmp[$key] = strtr($arrViewTmp[$key], $arrViewWhere);
2583    }
2584   
2585    // view¤òÊÑ´¹
2586    $changesql = strtr($sql, $arrViewTmp);
2587
2588    return $changesql;
2589}
2590
2591// ILIKE¸¡º÷¤òLIKE¸¡º÷¤ËÊÑ´¹¤¹¤ë
2592function sfChangeILIKE($sql){
2593    $changesql = eregi_replace("(ILIKE )", "LIKE BINARY ", $sql);
2594    return $changesql;
2595}
2596
2597// RANDOM()¤òRAND()¤ËÊÑ´¹¤¹¤ë
2598function sfChangeRANDOM($sql){
2599    $changesql = eregi_replace("( RANDOM)", " RAND", $sql);
2600    return $changesql;
2601}
2602
2603// view¤Îwhere¤òÃÖ´¹¤¹¤ë
2604function sfViewWhere($target, $where = "", $arrval = array(), $option = ""){
2605    global $arrViewWhere;
2606    $arrWhere = split("[?]", $where);
2607    $where_tmp = " WHERE " . $arrWhere[0];
2608    for($i = 1; $i < count($arrWhere); $i++){
2609        $where_tmp .= sfQuoteSmart($arrval[$i - 1]) . $arrWhere[$i];
2610    }
2611    $arrViewWhere[$target] = $where_tmp . " " . $option;
2612}
2613
2614// ¥Ç¥£¥ì¥¯¥È¥ê°Ê²¼¤Î¥Õ¥¡¥¤¥ë¤òºÆµ¢Åª¤Ë¥³¥Ô¡¼
2615function sfCopyDir($src, $des, $mess, $override = false){
2616    if(!is_dir($src)){
2617        return false;
2618    }
2619
2620    $oldmask = umask(0);
2621    $mod= stat($src);
2622   
2623    // ¥Ç¥£¥ì¥¯¥È¥ê¤¬¤Ê¤±¤ì¤ÐºîÀ®¤¹¤ë
2624    if(!file_exists($des)) {
2625        if(!mkdir($des, $mod[2])) {
2626            print("path:" . $des);
2627        }
2628    }
2629   
2630    $fileArray=glob( $src."*" );
2631    foreach( $fileArray as $key => $data_ ){
2632        // CVS´ÉÍý¥Õ¥¡¥¤¥ë¤Ï¥³¥Ô¡¼¤·¤Ê¤¤
2633        if(ereg("/CVS/Entries", $data_)) {
2634            break;
2635        }
2636        if(ereg("/CVS/Repository", $data_)) {
2637            break;
2638        }
2639        if(ereg("/CVS/Root", $data_)) {
2640            break;
2641        }
2642       
2643        mb_ereg("^(.*[\/])(.*)",$data_, $matches);
2644        $data=$matches[2];
2645        if( is_dir( $data_ ) ){
2646            $mess = sfCopyDir( $data_.'/', $des.$data.'/', $mess);
2647        }else{
2648            if(!$override && file_exists($des.$data)) {
2649                $mess.= $des.$data . "¡§¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹\n";
2650            } else {
2651                if(@copy( $data_, $des.$data)) {
2652                    $mess.= $des.$data . "¡§¥³¥Ô¡¼À®¸ù\n";
2653                } else {
2654                    $mess.= $des.$data . "¡§¥³¥Ô¡¼¼ºÇÔ\n";
2655                }
2656            }
2657            $mod=stat($data_ );
2658        }
2659    }
2660    umask($oldmask);
2661    return $mess;
2662}
2663
2664// »ØÄꤷ¤¿¥Õ¥©¥ë¥ÀÆâ¤Î¥Õ¥¡¥¤¥ë¤òÁ´¤Æºï½ü¤¹¤ë
2665function sfDelFile($dir){
2666    $dh = opendir($dir);
2667    // ¥Õ¥©¥ë¥ÀÆâ¤Î¥Õ¥¡¥¤¥ë¤òºï½ü
2668    while($file = readdir($dh)){
2669        if ($file == "." or $file == "..") continue;
2670        $del_file = $dir . "/" . $file;
2671        if(is_file($del_file)){
2672            $ret = unlink($dir . "/" . $file);
2673        }else if (is_dir($del_file)){
2674            $ret = sfDelFile($del_file);
2675        }
2676       
2677        if(!$ret){
2678            return $ret;
2679        }
2680    }
2681    // ¥Õ¥©¥ë¥À¤òºï½ü
2682    return rmdir($dir);
2683   
2684}
2685
2686function sfFlush($output = " ", $sleep = 0){
2687    // ¼Â¹Ô»þ´Ö¤òÀ©¸Â¤·¤Ê¤¤
2688    set_time_limit(0);
2689    // ½ÐÎϤò¥Ð¥Ã¥Õ¥¡¥ê¥ó¥°¤·¤Ê¤¤(==ÆüËܸ켫ưÊÑ´¹¤â¤·¤Ê¤¤)
2690    ob_end_clean();
2691   
2692    // IE¤Î¤¿¤á¤Ë256¥Ð¥¤¥È¶õʸ»ú½ÐÎÏ
2693    echo str_pad('',256);
2694   
2695    // ½ÐÎϤϥ֥é¥ó¥¯¤À¤±¤Ç¤â¤¤¤¤¤È»×¤¦
2696    echo $output;
2697    // ½ÐÎϤò¥Õ¥é¥Ã¥·¥å¤¹¤ë
2698    flush();
2699   
2700    ob_end_flush();
2701    ob_start();
2702   
2703    // »þ´Ö¤Î¤«¤«¤ë½èÍý
2704    sleep($sleep);
2705}
2706
2707// @version¤Îµ­ºÜ¤¬¤¢¤ë¥Õ¥¡¥¤¥ë¤«¤é¥Ð¡¼¥¸¥ç¥ó¤ò¼èÆÀ¤¹¤ë¡£
2708function sfGetFileVersion($path) {
2709    if(file_exists($path)) {
2710        $src_fp = fopen($path, "rb");
2711        if($src_fp) {
2712            while (!feof($src_fp)) {
2713                $line = fgets($src_fp);
2714                if(ereg("@version", $line)) {
2715                    $arrLine = split(" ", $line);
2716                    $version = $arrLine[5];
2717                }
2718            }
2719            fclose($src_fp);
2720        }
2721    }
2722    return $version;
2723}
2724
2725// »ØÄꤷ¤¿URL¤ËÂФ·¤ÆPOST¤Ç¥Ç¡¼¥¿¤òÁ÷¿®¤¹¤ë
2726function sfSendPostData($url, $arrData, $arrOkCode = array()){
2727    require_once(DATA_PATH . "module/Request.php");
2728   
2729    // Á÷¿®¥¤¥ó¥¹¥¿¥ó¥¹À¸À®
2730    $req = new HTTP_Request($url);
2731    $req->setMethod(HTTP_REQUEST_METHOD_POST);
2732   
2733    // POST¥Ç¡¼¥¿Á÷¿®
2734    $req->addPostDataArray($arrData);
2735   
2736    // ¥¨¥é¡¼¤¬Ìµ¤±¤ì¤Ð¡¢±þÅú¾ðÊó¤ò¼èÆÀ¤¹¤ë
2737    if (!PEAR::isError($req->sendRequest())) {
2738       
2739        // ¥ì¥¹¥Ý¥ó¥¹¥³¡¼¥É¤¬¥¨¥é¡¼È½Äê¤Ê¤é¡¢¶õ¤òÊÖ¤¹
2740        $res_code = $req->getResponseCode();
2741       
2742        if(!in_array($res_code, $arrOkCode)){
2743            $response = "";
2744        }else{
2745            $response = $req->getResponseBody();
2746        }
2747       
2748    } else {
2749        $response = "";
2750    }
2751   
2752    // POST¥Ç¡¼¥¿¥¯¥ê¥¢
2753    $req->clearPostData(); 
2754   
2755    return $response;
2756}
2757
2758/* ¥Ç¥Ð¥Ã¥°ÍÑ ------------------------------------------------------------------------------------------------*/
2759function sfPrintR($obj) {
2760    print("<div style='font-size: 12px;color: #00FF00;'>\n");
2761    print("<strong>**¥Ç¥Ð¥Ã¥°Ãæ**</strong><br />\n");
2762    print("<pre>\n");
2763    print_r($obj);
2764    print("</pre>\n");
2765    print("<strong>**¥Ç¥Ð¥Ã¥°Ãæ**</strong></div>\n");
2766}
2767
2768?>
Note: See TracBrowser for help on using the repository browser.