Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/contact/LC_Page_Contact.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Contact extends LC_Page_Ex  
    35 { 
     34class LC_Page_Contact extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
     
    6866     * @return void 
    6967     */ 
    70     function process() 
    71     { 
     68    function process() { 
    7269        parent::process(); 
    7370        $this->action(); 
     
    8077     * @return void 
    8178     */ 
    82     function action() 
    83     { 
     79    function action() { 
    8480 
    8581        $objDb = new SC_Helper_DB_Ex(); 
     
    144140     * @return void 
    145141     */ 
    146     function destroy() 
    147     { 
     142    function destroy() { 
    148143        parent::destroy(); 
    149144    } 
     
    158153     * @return void 
    159154     */ 
    160     function lfInitParam(&$objFormParam) 
    161     { 
     155    function lfInitParam(&$objFormParam) { 
    162156 
    163157        $objFormParam->addParam('お名前(姓)', 'name01', STEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK')); 
     
    184178     * @return array 入力チェック結果の配列 
    185179     */ 
    186     function lfCheckError(&$objFormParam) 
    187     { 
     180    function lfCheckError(&$objFormParam) { 
    188181        // 入力データを渡す。 
    189182        $arrForm =  $objFormParam->getHashArray(); 
     
    199192     * @return void 
    200193     */ 
    201     function lfSendMail(&$objPage) 
    202     { 
     194    function lfSendMail(&$objPage) { 
    203195        $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 
    204196        $objPage->tpl_shopname = $CONF['shop_name']; 
Note: See TracChangeset for help on using the changeset viewer.