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_Complete.php

    r21441 r21594  
    6464     */ 
    6565    function action() { 
     66        // フックポイント. 
     67        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     68        $objPlugin->doAction('lc_page_entry_complete_action_start', array($this)); 
     69         
    6670        // カートが空かどうかを確認する。 
    6771        $objCartSess            = new SC_CartSession_Ex(); 
     
    8387            $this->tpl_mainpage     = 'regist/complete.tpl'; 
    8488        } 
     89        // フックポイント. 
     90        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     91        $objPlugin->doAction('lc_page_entry_complete_action_end', array($this)); 
    8592    } 
    8693 
Note: See TracChangeset for help on using the changeset viewer.