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

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

File:
1 edited

Legend:

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

    r21592 r21594  
    7373     */ 
    7474    function action() { 
     75        // フックポイント. 
     76        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     77        $objPlugin->doAction('lc_page_error_systemerror_start', array($this)); 
     78         
    7579        $this->tpl_error = 'システムエラーが発生しました。<br />大変お手数ですが、サイト管理者までご連絡ください。'; 
    7680 
     
    8488            echo '</div>'; 
    8589        } 
     90         
     91        // フックポイント. 
     92        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     93        $objPlugin->doAction('lc_page_error_systemerror_end', array($this)); 
    8694    } 
    8795 
Note: See TracChangeset for help on using the changeset viewer.