- Timestamp:
- 2013/06/08 16:35:27 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/pages/entry/LC_Page_Entry.php
r22591 r22856 22 22 */ 23 23 24 // {{{ requires25 24 require_once CLASS_EX_REALDIR . 'page_extends/LC_Page_Ex.php'; 26 25 … … 32 31 * @version $Id:LC_Page_Entry.php 15532 2007-08-31 14:39:46Z nanasess $ 33 32 */ 34 class LC_Page_Entry extends LC_Page_Ex 33 class LC_Page_Entry extends LC_Page_Ex 35 34 { 36 37 // {{{ properties38 39 // }}}40 // {{{ functions41 42 35 /** 43 36 * Page を初期化する. … … 79 72 function action() 80 73 { 81 82 74 $objFormParam = new SC_FormParam_Ex(); 83 75 … … 141 133 $this->arrForm = $objFormParam->getHashArray(); 142 134 if (empty($this->arrErr)) { 143 144 135 $uniqid = $this->lfRegistCustomerData($this->lfMakeSqlVal($objFormParam)); 145 136 … … 176 167 } 177 168 178 // }}}179 // {{{ protected functions180 169 /** 181 170 * 会員情報の登録 … … 187 176 { 188 177 SC_Helper_Customer_Ex::sfEditCustomerData($sqlval); 178 189 179 return $sqlval['secret_key']; 190 180 } … … 228 218 $arrResults['mobile_phone_id'] = SC_MobileUserAgent_Ex::getId(); 229 219 } 220 230 221 return $arrResults; 231 222 } … … 295 286 function lfCheckReferer(&$post, $referer) 296 287 { 297 298 288 if (SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE 299 289 && empty($post) … … 301 291 return false; 302 292 } 293 303 294 return true; 304 295 }
Note: See TracChangeset
for help on using the changeset viewer.
