HomeHelpTrac

Ignore:
Timestamp:
04/06/09 04:21:27 (3 years ago)
Author:
Andrey Prikaznov
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/boonex/map_profiles/install/sql/install.sql

    r9969 r9972  
    114114INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map General', @iMaxOrder); 
    115115SET @iCategId = (SELECT LAST_INSERT_ID()); 
    116 INSERT INTO `GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
     116INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
    117117('bx_map_key', '', @iCategId, 'Google Maps API key', 'digit', '', '', '0', ''), 
    118118('bx_map_permalinks', 'on', @iCategId, 'Enable friendly permalinks', 'checkbox', '', '', '0', ''); 
     
    120120INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Homepage', @iMaxOrder); 
    121121SET @iCategId = (SELECT LAST_INSERT_ID()); 
    122 INSERT INTO `GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
     122INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
    123123('bx_map_homepage_control_type', 'small', @iCategId, 'Map control type', 'combobox', '', '', '0', 'none,small,large'), 
    124124('bx_map_homepage_is_type_control', 'on', @iCategId, 'Display map type controls', 'checkbox', '', '', '0', ''), 
     
    129129INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Separate', @iMaxOrder); 
    130130SET @iCategId = (SELECT LAST_INSERT_ID()); 
    131 INSERT INTO `GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
     131INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
    132132('bx_map_separate_control_type', 'large', @iCategId, 'Map control type', 'combobox', '', '', '0', 'none,small,large'), 
    133133('bx_map_separate_is_type_control', 'on', @iCategId, 'Display map type controls', 'checkbox', '', '', '0', ''), 
     
    138138INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Profile', @iMaxOrder); 
    139139SET @iCategId = (SELECT LAST_INSERT_ID()); 
    140 INSERT INTO `GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
     140INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
    141141('bx_map_profile_control_type', 'small', @iCategId, 'Map control type', 'combobox', '', '', '0', 'none,small,large'), 
    142142('bx_map_profile_is_type_control', 'on', @iCategId, 'Display map type controls', 'checkbox', '', '', '0', ''), 
     
    149149INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Hidden', @iMaxOrder); 
    150150SET @iCategId = (SELECT LAST_INSERT_ID()); 
    151 INSERT INTO `GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
     151INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 
    152152 
    153153('bx_map_homepage_lat', '20', @iCategId, 'Homepage map latitude', 'digit', '', '', '0', ''), 
Note: See TracChangeset for help on using the changeset viewer.