HomeHelpTrac

Changeset 15905 for trunk/install


Ignore:
Timestamp:
01/22/12 23:18:49 (4 months ago)
Author:
Alexander Trofimov
Message:

Forms - hidden_for_levels renamed to visible_for_levels

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/sql/v70.sql

    r15903 r15905  
    40464046  `display_name` varchar(32) NOT NULL, 
    40474047  `input_name` varchar(32) NOT NULL, 
    4048   `hidden_for_levels` int(10) unsigned NOT NULL, 
     4048  `visible_for_levels` int(11) NOT NULL DEFAULT '2147483647', 
    40494049  `active` tinyint(4) NOT NULL DEFAULT '0', 
    40504050  `order` int(11) NOT NULL, 
     
    45644564  `onclick` varchar(255) NOT NULL, 
    45654565  `target` varchar(255) NOT NULL, 
    4566   `icon` varchar(255) NOT NULL,   
     4566  `icon` varchar(255) NOT NULL,     
    45674567  `visible_for_levels` int(11) NOT NULL DEFAULT '2147483647', 
    45684568  `active` tinyint(4) NOT NULL DEFAULT '1', 
     
    45714571) ENGINE=MyISAM  DEFAULT CHARSET=utf8; 
    45724572 
    4573 INSERT INTO `sys_menu` (`set_name`, `module`, `name`, `title`, `link`, `onclick`, `target`, `icon`, `hidden_for_levels`, `active`, `order`) VALUES 
    4574 ('sys_site', 'system', 'home', '_Home', 'index.php', '', '', '', 0, 1, 1), 
    4575 ('sys_site', 'system', 'tags', '_Tags', 'tags.php', '', '', '', 0, 1, 2), 
    4576 ('sys_site', 'system', 'categories', '_Categories', 'categories.php', '', '', '', 0, 1, 3), 
    4577 ('sys_site', 'system', 'join', '_Join', 'join.php', '', '', '', 4294967294, 1, 4), 
     4573INSERT INTO `sys_menu_items` (`set_name`, `module`, `name`, `title`, `link`, `onclick`, `target`, `icon`, `visible_for_levels`, `active`, `order`) VALUES 
     4574('sys_site', 'system', 'home', '_Home', 'index.php', '', '', '', 2147483647, 1, 1), 
     4575('sys_site', 'system', 'tags', '_Tags', 'tags.php', '', '', '', 2147483647, 1, 2), 
     4576('sys_site', 'system', 'categories', '_Categories', 'categories.php', '', '', '', 2147483647, 1, 3), 
     4577('sys_site', 'system', 'join', '_Join', 'join.php', '', '', '', 1, 1, 4), 
    45784578('sys_site', 'system', 'login', '_Login', 'member.php', '', '', '', 1, 1, 5), 
    4579 ('sys_site', 'system', 'about', '_About', 'about_us.php', '', '', '', 0, 1, 6), 
    4580 ('sys_site', 'system', 'help', '_help', 'help.php', '', '', '', 0, 1, 7), 
    4581 ('sys_site', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 0, 1, 8), 
    4582 ('sys_footer', 'system', 'about', '_About', 'about_us.php', '', '', '', 0, 1, 1), 
    4583 ('sys_footer', 'system', 'help', '_help', 'help.php', '', '', '', 0, 1, 2), 
    4584 ('sys_footer', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 0, 1, 3); 
     4579('sys_site', 'system', 'about', '_About', 'about_us.php', '', '', '', 2147483647, 1, 6), 
     4580('sys_site', 'system', 'help', '_help', 'help.php', '', '', '', 2147483647, 1, 7), 
     4581('sys_site', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 2147483647, 1, 8), 
     4582('sys_footer', 'system', 'about', '_About', 'about_us.php', '', '', '', 2147483647, 1, 1), 
     4583('sys_footer', 'system', 'help', '_help', 'help.php', '', '', '', 2147483647, 1, 2), 
     4584('sys_footer', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 2147483647, 1, 3); 
    45854585 
    45864586 
Note: See TracChangeset for help on using the changeset viewer.