Added fade-in option for admin views, added pdf lib to custom folder for use in projects.

This commit is contained in:
2016-05-31 06:11:07 +01:00
parent d2aa1fce0b
commit 7f52decf16
574 changed files with 92240 additions and 895 deletions

View File

@ -103,6 +103,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
`add_css_view` TINYINT(1) NOT NULL DEFAULT '0',
`add_css_views` TINYINT(1) NOT NULL DEFAULT '0',
`add_custom_import` TINYINT(1) NOT NULL DEFAULT '0',
`add_fadein` TINYINT(1) NOT NULL DEFAULT '0',
`add_javascript_view_file` TINYINT(1) NOT NULL DEFAULT '0',
`add_javascript_view_footer` TINYINT(1) NOT NULL DEFAULT '0',
`add_javascript_views_file` TINYINT(1) NOT NULL DEFAULT '0',
@ -183,6 +184,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
KEY `idx_name_single` (`name_single`),
KEY `idx_name_list` (`name_list`),
KEY `idx_type` (`type`),
KEY `idx_add_fadein` (`add_fadein`),
KEY `idx_source` (`source`),
KEY `idx_add_php_getitems` (`add_php_getitems`),
KEY `idx_add_css_view` (`add_css_view`),

View File

@ -0,0 +1 @@
ALTER TABLE `#__componentbuilder_admin_view` ADD `add_fadein` TINYINT(1) NOT NULL DEFAULT '0' AFTER `add_custom_import`;