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/entry/LC_Page_Entry.php

    r21683 r21693  
    7777        // フックポイント. 
    7878        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    79         $objPlugin->doAction('lc_page_entry_action_start', array($this)); 
     79        $objPlugin->doAction('LC_Page_Entry_action_before', array($this)); 
    8080 
    8181        $objFormParam = new SC_FormParam_Ex(); 
     
    155155                    // フックポイント. 
    156156                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    157                     $objPlugin->doAction('lc_page_entry_action_complete', array($this)); 
     157                    $objPlugin->doAction('LC_Page_Entry_action_complete', array($this)); 
    158158 
    159159                    // 完了ページに移動させる。 
     
    169169        // フックポイント. 
    170170        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    171         $objPlugin->doAction('lc_page_entry_action_end', array($this)); 
     171        $objPlugin->doAction('LC_Page_Entry_action_after', array($this)); 
    172172    } 
    173173 
Note: See TracChangeset for help on using the changeset viewer.