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/abouts/LC_Page_Abouts.php

    r21514 r21594  
    6767     */ 
    6868    function action() { 
     69        // フックポイント. 
     70        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     71        $objPlugin->doAction('lc_page_abouts_action_start', array($this)); 
     72         
    6973        $this->objSiteInfo->data = SC_Helper_DB_Ex::sfGetBasisData(); 
    7074        $this->objSiteInfo->data['pref'] = 
    7175            isset($this->arrPref[$this->objSiteInfo->data['pref']]) 
    7276            ? $this->arrPref[$this->objSiteInfo->data['pref']] : ''; 
     77         
     78        // フックポイント. 
     79        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     80        $objPlugin->doAction('lc_page_abouts_action_end', array($this)); 
    7381    } 
    7482 
Note: See TracChangeset for help on using the changeset viewer.