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

    r21514 r21594  
    6464     */ 
    6565    function action() { 
     66        // フックポイント. 
     67        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     68        $objPlugin->doAction('lc_page_entry_emailmobile_action_start', array($this)); 
     69         
    6670        $objCustomer    = new SC_Customer; 
    6771        $objFormParam   = new SC_FormParam_Ex(); 
     
    8589        $this->tpl_name = $objCustomer->getValue('name01'); 
    8690        $this->arrForm  = $objFormParam->getFormParamList(); 
     91         
     92        // フックポイント. 
     93        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     94        $objPlugin->doAction('lc_page_entry_emailmobile_action_end', array($this)); 
    8795    } 
    8896 
Note: See TracChangeset for help on using the changeset viewer.