Ignore:
Timestamp:
2012/03/30 16:22:10 (12 years ago)
Author:
h_yoshimoto
Message:

#1692 フックポイント名の変更に伴う修正

File:
1 edited

Legend:

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

    r21420 r21698  
    5858    } 
    5959 
    60     function action() {} 
     60    function action() { 
     61        // フックポイント. 
     62        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     63        $objPlugin->doAction('LC_Page_Unsupported_action_before', array($this)); 
     64         
     65        // フックポイント. 
     66        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     67        $objPlugin->doAction('LC_Page_Unsupported_action_after', array($this)); 
     68    } 
    6169 
    6270    /** 
Note: See TracChangeset for help on using the changeset viewer.