- Timestamp:
- 04/06/09 04:21:27 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/boonex/map_profiles/install/sql/install.sql
r9969 r9972 114 114 INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map General', @iMaxOrder); 115 115 SET @iCategId = (SELECT LAST_INSERT_ID()); 116 INSERT INTO ` GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES116 INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 117 117 ('bx_map_key', '', @iCategId, 'Google Maps API key', 'digit', '', '', '0', ''), 118 118 ('bx_map_permalinks', 'on', @iCategId, 'Enable friendly permalinks', 'checkbox', '', '', '0', ''); … … 120 120 INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Homepage', @iMaxOrder); 121 121 SET @iCategId = (SELECT LAST_INSERT_ID()); 122 INSERT INTO ` GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES122 INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 123 123 ('bx_map_homepage_control_type', 'small', @iCategId, 'Map control type', 'combobox', '', '', '0', 'none,small,large'), 124 124 ('bx_map_homepage_is_type_control', 'on', @iCategId, 'Display map type controls', 'checkbox', '', '', '0', ''), … … 129 129 INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Separate', @iMaxOrder); 130 130 SET @iCategId = (SELECT LAST_INSERT_ID()); 131 INSERT INTO ` GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES131 INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 132 132 ('bx_map_separate_control_type', 'large', @iCategId, 'Map control type', 'combobox', '', '', '0', 'none,small,large'), 133 133 ('bx_map_separate_is_type_control', 'on', @iCategId, 'Display map type controls', 'checkbox', '', '', '0', ''), … … 138 138 INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Profile', @iMaxOrder); 139 139 SET @iCategId = (SELECT LAST_INSERT_ID()); 140 INSERT INTO ` GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES140 INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 141 141 ('bx_map_profile_control_type', 'small', @iCategId, 'Map control type', 'combobox', '', '', '0', 'none,small,large'), 142 142 ('bx_map_profile_is_type_control', 'on', @iCategId, 'Display map type controls', 'checkbox', '', '', '0', ''), … … 149 149 INSERT INTO `sys_options_cats` (`name`, `menu_order`) VALUES ('Profiles Map Hidden', @iMaxOrder); 150 150 SET @iCategId = (SELECT LAST_INSERT_ID()); 151 INSERT INTO ` GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES151 INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES 152 152 153 153 ('bx_map_homepage_lat', '20', @iCategId, 'Homepage map latitude', 'digit', '', '', '0', ''),
Note: See TracChangeset
for help on using the changeset viewer.