Resolves gh-71 bug, so that admin views that has no fields are still accessible. Fixed gh-72 to insure all components on Joomla version 3.7.0 works and looks correctly. Please just recompile your components for Joomla v3.7.0

This commit is contained in:
2017-04-26 09:55:02 +01:00
parent 498c75dfcf
commit ea1edebc05
265 changed files with 1080 additions and 961 deletions

View File

@ -44,7 +44,9 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
`description` TEXT NOT NULL,
`email` VARCHAR(255) NOT NULL DEFAULT '',
`emptycontributors` TINYINT(1) NOT NULL DEFAULT '0',
`export_buy_link` VARCHAR(255) NOT NULL DEFAULT '',
`export_key` TEXT NOT NULL,
`export_package_link` VARCHAR(255) NOT NULL DEFAULT '',
`image` CHAR(64) NOT NULL DEFAULT '',
`license` VARCHAR(255) NOT NULL DEFAULT '',
`license_type` TINYINT(1) NOT NULL DEFAULT '0',
@ -96,22 +98,22 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`),
KEY `idx_name_code` (`name_code`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_placeholders` (`add_placeholders`),
KEY `idx_add_site_event` (`add_site_event`),
KEY `idx_add_admin_event` (`add_admin_event`),
KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
KEY `idx_name` (`name`),
KEY `idx_add_site_event` (`add_site_event`),
KEY `idx_addfootable` (`addfootable`),
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_admin_event` (`add_admin_event`),
KEY `idx_creatuserhelper` (`creatuserhelper`),
KEY `idx_add_license` (`add_license`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_license_type` (`license_type`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
KEY `idx_add_php_dashboard_methods` (`add_php_dashboard_methods`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_name` (`name`),
KEY `idx_adduikit` (`adduikit`),
KEY `idx_add_css` (`add_css`),
KEY `idx_add_email_helper` (`add_email_helper`),
@ -119,8 +121,8 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
KEY `idx_add_php_preflight_update` (`add_php_preflight_update`),
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
KEY `idx_add_php_postflight_update` (`add_php_postflight_update`),
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_emptycontributors` (`emptycontributors`),
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_addreadme` (`addreadme`),
KEY `idx_add_sales_server` (`add_sales_server`)

View File

@ -0,0 +1,2 @@
ALTER TABLE `#__componentbuilder_joomla_component` ADD `export_buy_link` VARCHAR(255) NOT NULL DEFAULT '' AFTER `emptycontributors`;
ALTER TABLE `#__componentbuilder_joomla_component` ADD `export_package_link` VARCHAR(255) NOT NULL DEFAULT '' AFTER `export_buy_link`;