Bug fixes, error on compilation when using view date & version was fixed, headercheck file missing was fixed. Added swithces to controle custom import placeholders and if view version and date should be used

This commit is contained in:
2017-02-02 13:54:07 +02:00
parent 1a79b92b07
commit 655708cfa3
211 changed files with 1401 additions and 895 deletions

View File

@ -14,6 +14,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
`add_php_postflight_update` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_preflight_install` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_preflight_update` TINYINT(1) NOT NULL DEFAULT '0',
`add_placeholders` TINYINT(1) NOT NULL DEFAULT '0',
`add_sales_server` TINYINT(1) NOT NULL DEFAULT '0',
`add_site_event` TINYINT(1) NOT NULL DEFAULT '0',
`add_sql` TINYINT(1) NOT NULL DEFAULT '0',
@ -46,6 +47,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
`image` CHAR(64) NOT NULL DEFAULT '',
`license` VARCHAR(255) NOT NULL DEFAULT '',
`license_type` TINYINT(1) NOT NULL DEFAULT '0',
`mvc_versiondate` TINYINT(1) NOT NULL DEFAULT '0',
`name` CHAR(64) NOT NULL DEFAULT '',
`name_code` VARCHAR(255) NOT NULL DEFAULT '',
`not_required` INT(1) NOT NULL DEFAULT '0',
@ -93,19 +95,21 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`),
KEY `idx_name_code` (`name_code`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_creatuserhelper` (`creatuserhelper`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
KEY `idx_name` (`name`),
KEY `idx_creatuserhelper` (`creatuserhelper`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_add_placeholders` (`add_placeholders`),
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_addfootable` (`addfootable`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
KEY `idx_add_admin_event` (`add_admin_event`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_site_event` (`add_site_event`),
KEY `idx_add_php_dashboard_methods` (`add_php_dashboard_methods`),
KEY `idx_name` (`name`),
KEY `idx_add_license` (`add_license`),
KEY `idx_license_type` (`license_type`),
KEY `idx_adduikit` (`adduikit`),
@ -117,8 +121,8 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
KEY `idx_add_php_postflight_update` (`add_php_postflight_update`),
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_addreadme` (`addreadme`),
KEY `idx_emptycontributors` (`emptycontributors`),
KEY `idx_add_sales_server` (`add_sales_server`)
KEY `idx_add_sales_server` (`add_sales_server`),
KEY `idx_emptycontributors` (`emptycontributors`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (