Ignore:
Timestamp:
2012/03/05 19:52:39 (12 years ago)
Author:
h_yoshimoto
Message:

#1686 管理画面にフックポイントを配置

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Bloc.php

    r21527 r21591  
    7171     */ 
    7272    function action() { 
     73        // フックポイント. 
     74        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     75        $objPlugin->doAction('lc_page_admin_design_bloc_start', array($this)); 
     76         
    7377        $objFormParam = new SC_FormParam_Ex(); 
    7478        $this->lfInitParam($objFormParam); 
     
    96100                                'msg' => 'on', 
    97101                            ); 
     102                            // フックポイント. 
     103                            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     104                            $objPlugin->doAction('lc_page_admin_design_bloc_confirm', array($this)); 
     105                             
    98106                            SC_Response_Ex::reload($arrPram, true); 
    99107                            exit; 
     
    111119                            'msg' => 'on', 
    112120                        ); 
     121                        // フックポイント. 
     122                        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     123                        $objPlugin->doAction('lc_page_admin_design_bloc_delete', array($this)); 
     124 
    113125                        SC_Response_Ex::reload($arrPram, true); 
    114126                        exit; 
     
    139151        $this->tpl_subtitle = $this->arrDeviceType[$this->device_type_id] . '>' . $this->tpl_subtitle; 
    140152        $this->arrForm = $objFormParam->getFormParamList(); 
     153 
     154        // フックポイント. 
     155        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     156        $objPlugin->doAction('lc_page_admin_design_bloc_end', array($this)); 
    141157    } 
    142158 
Note: See TracChangeset for help on using the changeset viewer.