Ignore:
Timestamp:
2012/02/08 13:55:06 (12 years ago)
Author:
h_yoshimoto
Message:

#1603 #1632 プラグインの管理画面を作成しました。それに伴うエンジン部分の修正。

Location:
branches/version-2_12-dev/html
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/html/install/sql/create_table_mysql.sql

    r21364 r21455  
    11391139    plugin_code varchar(255) NOT NULL, 
    11401140    author varchar(255), 
     1141    author_site_url varchar(255), 
    11411142    plugin_site_url varchar(255), 
    11421143    plugin_version varchar(255), 
     1144    compliant_version varchar(255), 
    11431145    plugin_description varchar(255), 
    1144     plugin_setting_path varchar(255), 
    1145     class_name varchar(255) NOT NULL, 
    11461146    rank int NOT NULL DEFAULT 0, 
    1147     status smallint NOT NULL DEFAULT 0, 
    11481147    enable smallint NOT NULL DEFAULT 0, 
    1149     del_flg smallint NOT NULL DEFAULT 0, 
    11501148    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
    11511149    update_date timestamp NOT NULL, 
    11521150    PRIMARY KEY (plugin_id) 
     1151) ENGINE=InnoDB; 
     1152 
     1153CREATE TABLE dtb_plugin_hookpoint ( 
     1154    plugin_id int NOT NULL, 
     1155    hook_point varchar(255) NOT NULL, 
     1156    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
     1157    update_date timestamp NOT NULL 
    11531158) ENGINE=InnoDB; 
    11541159 
  • branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql

    r21364 r21455  
    11391139    plugin_code text NOT NULL, 
    11401140    author text, 
     1141    author_site_url text, 
    11411142    plugin_site_url text, 
    11421143    plugin_version text, 
     1144    compliant_version text,     
    11431145    plugin_description text, 
    1144     plugin_setting_path text, 
    1145     class_name text NOT NULL, 
    11461146    rank int NOT NULL DEFAULT 0, 
    1147     status smallint NOT NULL DEFAULT 0, 
    11481147    enable smallint NOT NULL DEFAULT 0, 
    1149     del_flg smallint NOT NULL DEFAULT 0, 
    11501148    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
    11511149    update_date timestamp NOT NULL, 
    11521150    PRIMARY KEY (plugin_id) 
    11531151); 
     1152 
     1153CREATE TABLE dtb_plugin_hookpoint ( 
     1154    plugin_id int NOT NULL, 
     1155    hook_point text NOT NULL, 
     1156    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
     1157    update_date timestamp NOT NULL 
     1158); 
     1159 
    11541160 
    11551161CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id); 
  • branches/version-2_12-dev/html/install/sql/insert_data.sql

    r21454 r21455  
    12751275INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_TMPL_CACHE_REALDIR', 'PLUGIN_UPLOAD_REALDIR . "templates_cache/"', 606, 'プラグイン・テンプレートキャッシュ保存先'); 
    12761276INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_DIR_PERMISSION', '0777', 607, 'プラグイン・ディレクトリパーミッション'); 
     1277INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_TEMP_REALDIR', 'HTML_REALDIR . "upload/temp_plugin/"', 608, 'プラグインファイル一時保存先'); 
     1278INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('DOWNLOADS_TEMP_DIR', 'DATA_REALDIR . "downloads/tmp/"', 609, 'アップロード一時ディレクトリ'); 
     1279INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_HTML_URL', 'USER_URL . PLUGIN_DIR', 610, 'プラグイン 外部ファイルURL'); 
    12771280INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('DOWNLOAD_DAYS_LEN', '3', 700, '日数桁数'); 
    12781281INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('DOWNLOAD_EXTENSION', '"zip,lzh,jpg,jpeg,gif,png,mp3,pdf,csv"', 701, 'ダウンロードファイル登録可能拡張子(カンマ区切り)"'); 
  • branches/version-2_12-dev/html/user_data/packages/admin/css/admin_contents.css

    r21397 r21455  
    12131213} 
    12141214 
     1215/* システム設定 
     1216----------------------------------------------- */ 
     1217/* プラグイン管理 */ 
     1218td.plugin_img { 
     1219    border-width: 1px 0px 1px 1px; 
     1220     
     1221} 
     1222td.plugin_info { 
     1223    border-width: 1px 1px 1px 0px; 
     1224} 
     1225td.plugin_info p.description { 
     1226    margin: 8px 0 10px 5px; 
     1227} 
     1228 
     1229td.plugin_info span.ec_cube_version { 
     1230    font-style: italic; 
     1231    font-size: 80%; 
     1232} 
     1233 
     1234td.plugin_info span.plugin_name { 
     1235    font-weight: bold; 
     1236} 
     1237 
     1238td.attention_fookpoint { 
     1239    background-color: #FEB; 
     1240} 
    12151241 
    12161242/* フォーム 
Note: See TracChangeset for help on using the changeset viewer.