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

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

File:
1 edited

Legend:

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

    r21514 r21594  
    5555     */ 
    5656    function process() { 
     57        // フックポイント. 
     58        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     59        $objPlugin->doAction('lc_page_rss_action_start', array($this)); 
     60         
    5761        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    5862        $objView = new SC_SiteView_Ex(false); 
     
    7983        $objView->assignobj($this); 
    8084 
     85        // フックポイント. 
     86        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     87        $objPlugin->doAction('lc_page_rss_action_end', array($this)); 
     88         
    8189        //画面表示 
    8290        $objView->display($this->tpl_mainpage, true); 
Note: See TracChangeset for help on using the changeset viewer.