Changeset 21559


Ignore:
Timestamp:
2012/02/28 11:52:55 (12 years ago)
Author:
h_yoshimoto
Message:

#1603 #1632 プラグイン仕様変更に伴う修正(コミット漏れ+LC_Pageで正常にプラグインが動かないバグを修正)

Location:
branches/version-2_12-dev
Files:
3 edited

Legend:

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

    r21555 r21559  
    9999        // プラグインを実行するかを判定します. 
    100100        // プラグイン管理ではプラグインが実行されません 
    101         if ($_SERVER['PHP_SELF'] !== ROOT_URLPATH . ADMIN_DIR . 'system/plugin.php') { 
     101        if ($_SERVER['PHP_SELF'] === ROOT_URLPATH . ADMIN_DIR . 'system/plugin.php') { 
    102102            $this->plugin_activate_flg = false; 
    103103        } 
     
    132132        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    133133        $objPlugin->setHeadNaviBlocs($this->arrPageLayout['HeadNavi']); 
    134  
     134         
    135135        // スーパーフックポイントを実行. 
    136136        $objPlugin->doAction('lc_page_process', array($this)); 
  • branches/version-2_12-dev/html/install/sql/create_table_mysql.sql

    r21553 r21559  
    750750    update_date timestamp NOT NULL, 
    751751    php_path text, 
     752    plugin_id int, 
    752753    deletable_flg smallint NOT NULL DEFAULT 1, 
    753754    PRIMARY KEY (device_type_id, bloc_id), 
     
    11211122    plugin_name text NOT NULL, 
    11221123    plugin_code text NOT NULL, 
     1124    class_name text NOT NULL, 
    11231125    author text, 
    11241126    author_site_url text, 
  • branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql

    r21553 r21559  
    751751    php_path text, 
    752752    deletable_flg smallint NOT NULL DEFAULT 1, 
     753    plugin_id int NOT NULL, 
    753754    PRIMARY KEY (device_type_id, bloc_id), 
    754755    UNIQUE (device_type_id, filename) 
     
    11211122    plugin_name text NOT NULL, 
    11221123    plugin_code text NOT NULL, 
     1124    class_name text NOT NULL, 
    11231125    author text, 
    11241126    author_site_url text, 
Note: See TracChangeset for help on using the changeset viewer.