- Timestamp:
- 2013/06/08 16:35:27 (13 years ago)
- Location:
- branches/version-2_13-dev/data/class/pages/admin/customer
- Files:
-
- 3 edited
-
LC_Page_Admin_Customer.php (modified) (5 diffs)
-
LC_Page_Admin_Customer_Edit.php (modified) (5 diffs)
-
LC_Page_Admin_Customer_SearchCustomer.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer.php
r22739 r22856 22 22 */ 23 23 24 // {{{ requires25 24 require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php'; 26 25 … … 32 31 * @version $Id$ 33 32 */ 34 class LC_Page_Admin_Customer extends LC_Page_Admin_Ex 33 class LC_Page_Admin_Customer extends LC_Page_Admin_Ex 35 34 { 36 37 // }}}38 // {{{ functions39 40 35 /** 41 36 * Page を初期化する. … … 101 96 function action() 102 97 { 103 104 98 // パラメーター管理クラス 105 99 $objFormParam = new SC_FormParam_Ex(); … … 207 201 $objHelperMail->setPage($this); 208 202 $objHelperMail->sfSendRegistMail($arrData['secret_key'], $customer_id); 203 209 204 return true; 210 205 } … … 235 230 236 231 list($where, $arrVal) = $objSelect->getWhere(); 232 237 233 return $objCSV->sfDownloadCsv('2', $where, $arrVal, $order, true); 238 234 } -
branches/version-2_13-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php
r22567 r22856 22 22 */ 23 23 24 // {{{ requires25 24 require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php'; 26 25 … … 32 31 * @version $Id$ 33 32 */ 34 class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex 33 class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex 35 34 { 36 37 // }}}38 // {{{ functions39 40 35 /** 41 36 * Page を初期化する. … … 89 84 function action() 90 85 { 91 92 86 // パラメーター管理クラス 93 87 $objFormParam = new SC_FormParam_Ex(); … … 283 277 } 284 278 } 279 285 280 return $arrErr; 286 281 } … … 313 308 } 314 309 } 310 315 311 return SC_Helper_Customer_Ex::sfEditCustomerData($arrData, $arrData['customer_id']); 316 312 } -
branches/version-2_13-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php
r22567 r22856 22 22 */ 23 23 24 // {{{ requires25 24 require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php'; 26 25 … … 32 31 * @version $Id$ 33 32 */ 34 class LC_Page_Admin_Customer_SearchCustomer extends LC_Page_Admin_Ex 33 class LC_Page_Admin_Customer_SearchCustomer extends LC_Page_Admin_Ex 35 34 { 36 37 // }}}38 // {{{ functions39 40 35 /** 41 36 * Page を初期化する. … … 69 64 function action() 70 65 { 71 72 66 // パラメーター管理クラス 73 67 $objFormParam = new SC_FormParam_Ex();
Note: See TracChangeset
for help on using the changeset viewer.
