Ignore:
Timestamp:
2012/03/27 19:23:27 (12 years ago)
Author:
h_yoshimoto
Message:

#1692 インスタンスを呼び出す処理を統一

File:
1 edited

Legend:

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

    r21614 r21689  
    6868    function action() { 
    6969        // フックポイント. 
    70         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     70        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    7171        $objPlugin->doAction('lc_page_admin_products_class_action_start', array($this)); 
    7272 
     
    9595                } 
    9696                // フックポイント. 
    97                 $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     97                $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    9898                $objPlugin->doAction('lc_page_admin_products_class_action_edit', array($this)); 
    9999 
     
    108108 
    109109            // フックポイント. 
    110             $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     110            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    111111            $objPlugin->doAction('lc_page_admin_products_class_action_delete', array($this)); 
    112112 
     
    125125 
    126126            // フックポイント. 
    127             $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     127            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    128128            $objPlugin->doAction('lc_page_admin_products_class_action_down', array($this)); 
    129129 
     
    135135 
    136136            // フックポイント. 
    137             $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     137            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    138138            $objPlugin->doAction('lc_page_admin_products_class_action_up', array($this)); 
    139139 
     
    151151 
    152152        // フックポイント. 
    153         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); 
     153        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    154154        $objPlugin->doAction('lc_page_admin_products_class_action_end', array($this)); 
    155155    } 
Note: See TracChangeset for help on using the changeset viewer.