Ignore:
Timestamp:
2012/03/29 21:57:07 (12 years ago)
Author:
h_yoshimoto
Message:

#1692 フックポイント名を変更

File:
1 edited

Legend:

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

    r21596 r21693  
    6767        // フックポイント. 
    6868        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    69         $objPlugin->doAction('lc_page_frontparts_logincheck_action_start', array($this)); 
     69        $objPlugin->doAction('LC_Page_FrontParts_LoginCheck_action_before', array($this)); 
    7070 
    7171        // 会員管理クラス 
     
    146146                                    // フックポイント. 
    147147                                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    148                                     $objPlugin->doAction('lc_page_frontparts_logincheck_action_login_mobile', array($this)); 
     148                                    $objPlugin->doAction('LC_Page_FrontParts_LoginCheck_action_login_mobile', array($this)); 
    149149 
    150150                                    SC_Response_Ex::sendRedirectFromUrlPath('entry/email_mobile.php'); 
     
    158158                            // フックポイント. 
    159159                            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    160                             $objPlugin->doAction('lc_page_frontparts_logincheck_action_login_smartphone', array($this)); 
     160                            $objPlugin->doAction('LC_Page_FrontParts_LoginCheck_action_login_smartphone', array($this)); 
    161161 
    162162                            echo SC_Utils_Ex::jsonEncode(array('success' => $_POST['url'])); 
     
    164164                            // フックポイント. 
    165165                            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    166                             $objPlugin->doAction('lc_page_frontparts_logincheck_action_login_pc', array($this)); 
     166                            $objPlugin->doAction('LC_Page_FrontParts_LoginCheck_action_login_pc', array($this)); 
    167167 
    168168                            SC_Response_Ex::sendRedirect($_POST['url']); 
     
    212212                    // フックポイント. 
    213213                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    214                     $objPlugin->doAction('lc_page_frontparts_logincheck_action_logout_mypage', array($this)); 
     214                    $objPlugin->doAction('LC_Page_FrontParts_LoginCheck_action_logout_mypage', array($this)); 
    215215 
    216216                    // マイページログイン中はログイン画面へ移行 
     
    219219                    // フックポイント. 
    220220                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    221                     $objPlugin->doAction('lc_page_frontparts_logincheck_action_logout_toppage', array($this)); 
     221                    $objPlugin->doAction('LC_Page_FrontParts_LoginCheck_action_logout_toppage', array($this)); 
    222222 
    223223                    // 上記以外の場合、トップへ遷移 
     
    232232        // フックポイント. 
    233233        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    234         $objPlugin->doAction('lc_page_frontparts_logincheck_action_end', array($this)); 
     234        $objPlugin->doAction('LC_Page_FrontParts_LoginCheck_action_after', array($this)); 
    235235    } 
    236236 
Note: See TracChangeset for help on using the changeset viewer.