Changeset 20535
- Timestamp:
- 2011/03/07 13:26:12 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/pages/admin/products/LC_Page_Admin_Products.php
r20534 r20535 56 56 $this->arrSTATUS = $masterData->getMasterData("mtb_status"); 57 57 $this->arrPRODUCTSTATUS_COLOR = $masterData->getMasterData("mtb_product_status_color"); 58 } 59 60 /** 61 * Page のプロセス. 62 * 63 * @return void 64 */ 65 function process() { 66 $this->action(); 67 $this->sendResponse(); 68 } 69 70 /** 71 * Page のアクション. 72 * 73 * @return void 74 */ 75 function action() { 76 $objDb = new SC_Helper_DB_Ex(); 77 $objDate = new SC_Date_Ex(); 78 $objFormParam = new SC_FormParam_Ex(); 79 $objProduct = new SC_Product_Ex(); 80 $objQuery =& SC_Query_Ex::getSingletonInstance(); 81 58 59 $objDate = new SC_Date(); 82 60 // 登録・更新検索開始年 83 61 $objDate->setStartYear(RELEASE_YEAR); … … 92 70 $this->arrEndMonth = $objDate->getMonth(); 93 71 $this->arrEndDay = $objDate->getDay(); 72 73 } 74 75 /** 76 * Page のプロセス. 77 * 78 * @return void 79 */ 80 function process() { 81 $this->action(); 82 $this->sendResponse(); 83 } 84 85 /** 86 * Page のアクション. 87 * 88 * @return void 89 */ 90 function action() { 91 $objDb = new SC_Helper_DB_Ex(); 92 $objFormParam = new SC_FormParam(); 93 $objProduct = new SC_Product(); 94 $objQuery =& SC_Query::getSingletonInstance(); 94 95 95 96 // パラメータ情報の初期化
Note: See TracChangeset
for help on using the changeset viewer.
