Changeset 18758 for trunk/data/class/pages/admin/mail
- Timestamp:
- 2010/07/20 13:25:33 (16 years ago)
- Location:
- trunk/data/class/pages/admin/mail
- Files:
-
- 6 edited
-
LC_Page_Admin_Mail.php (modified) (4 diffs)
-
LC_Page_Admin_Mail_History.php (modified) (2 diffs)
-
LC_Page_Admin_Mail_Preview.php (modified) (1 diff)
-
LC_Page_Admin_Mail_Sendmail.php (modified) (1 diff)
-
LC_Page_Admin_Mail_Template.php (modified) (2 diffs)
-
LC_Page_Admin_Mail_TemplateInput.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/class/pages/admin/mail/LC_Page_Admin_Mail.php
r18177 r18758 3 3 * This file is part of EC-CUBE 4 4 * 5 * Copyright(c) 2000-20 07LOCKON CO.,LTD. All Rights Reserved.5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 6 6 * 7 7 * http://www.lockon.co.jp/ … … 253 253 254 254 // 取得範囲の指定(開始行番号、行数のセット) 255 $objQuery->set limitoffset(SEARCH_PMAX, $startno);255 $objQuery->setLimitOffset(SEARCH_PMAX, $startno); 256 256 // 表示順序 257 $objQuery->set order("customer_id DESC");257 $objQuery->setOrder("customer_id DESC"); 258 258 259 259 // 検索結果の取得 … … 412 412 $arrVal[] = "%$val%"; 413 413 $objQuery = new SC_Query(); 414 $objQuery->set groupby("customer_id, order_id");414 $objQuery->setGroupBy("customer_id, order_id"); 415 415 $arrRet = $objQuery->select($col, $from, $where, $arrVal); 416 416 $arrCustomerOrderId = SC_Utils_Ex::sfArrKeyValues($arrRet, "customer_id", "order_id"); … … 510 510 $arrCampaign = null; 511 511 $sql = "SELECT campaign_id, campaign_name FROM dtb_campaign ORDER BY update_date DESC"; 512 $arrResult = $objQuery->get all($sql);512 $arrResult = $objQuery->getAll($sql); 513 513 514 514 foreach($arrResult as $arrVal) { -
trunk/data/class/pages/admin/mail/LC_Page_Admin_Mail_History.php
r16741 r18758 3 3 * This file is part of EC-CUBE 4 4 * 5 * Copyright(c) 2000-20 07LOCKON CO.,LTD. All Rights Reserved.5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 6 6 * 7 7 * http://www.lockon.co.jp/ … … 96 96 97 97 // 取得範囲の指定(開始行番号、行数のセット) 98 $objQuery->set limitoffset(SEARCH_PMAX, $startno);98 $objQuery->setLimitOffset(SEARCH_PMAX, $startno); 99 99 100 100 // 表示順序 101 101 $order = "start_date DESC, send_id DESC"; 102 $objQuery->set order($order);102 $objQuery->setOrder($order); 103 103 104 104 // 検索結果の取得 -
trunk/data/class/pages/admin/mail/LC_Page_Admin_Mail_Preview.php
r16741 r18758 3 3 * This file is part of EC-CUBE 4 4 * 5 * Copyright(c) 2000-20 07LOCKON CO.,LTD. All Rights Reserved.5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 6 6 * 7 7 * http://www.lockon.co.jp/ -
trunk/data/class/pages/admin/mail/LC_Page_Admin_Mail_Sendmail.php
r18562 r18758 3 3 * This file is part of EC-CUBE 4 4 * 5 * Copyright(c) 2000-20 07LOCKON CO.,LTD. All Rights Reserved.5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 6 6 * 7 7 * http://www.lockon.co.jp/ -
trunk/data/class/pages/admin/mail/LC_Page_Admin_Mail_Template.php
r17204 r18758 3 3 * This file is part of EC-CUBE 4 4 * 5 * Copyright(c) 2000-20 07LOCKON CO.,LTD. All Rights Reserved.5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 6 6 * 7 7 * http://www.lockon.co.jp/ … … 89 89 $sql = "SELECT *, create_date as disp_date FROM dtb_mailmaga_template WHERE del_flg = 0 ORDER BY create_date DESC"; 90 90 $this->list_data = $conn->getAll($sql); 91 $this->list_data['disp_date'] = substr($this->list_data['disp_date'], 0, 19);92 91 93 92 $objView->assignobj($this); -
trunk/data/class/pages/admin/mail/LC_Page_Admin_Mail_TemplateInput.php
r16741 r18758 3 3 * This file is part of EC-CUBE 4 4 * 5 * Copyright(c) 2000-20 07LOCKON CO.,LTD. All Rights Reserved.5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 6 6 * 7 7 * http://www.lockon.co.jp/
Note: See TracChangeset
for help on using the changeset viewer.
