Ignore:
Timestamp:
2012/03/06 20:11:36 (12 years ago)
Author:
h_yoshimoto
Message:

#1687 プラグイン機能(フックポイント:フロント画面)を実装

File:
1 edited

Legend:

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

    r21526 r21594  
    7575     */ 
    7676    function action() { 
     77        // フックポイント. 
     78        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     79        $objPlugin->doAction('lc_page_entry_action_start', array($this)); 
     80         
    7781        $objFormParam = new SC_FormParam_Ex(); 
    7882 
     
    123127                        $objCustomer->setLogin($this->arrForm['email']); 
    124128                    } 
     129                    // フックポイント. 
     130                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     131                    $objPlugin->doAction('lc_page_entry_action_complete', array($this)); 
    125132 
    126133                    // 完了ページに移動させる。 
     
    134141                break; 
    135142        } 
     143        // フックポイント. 
     144        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     145        $objPlugin->doAction('lc_page_entry_action_end', array($this)); 
    136146    } 
    137147 
Note: See TracChangeset for help on using the changeset viewer.