added another field to the component view, to add helper methods to both admin and site area of the component

This commit is contained in:
2016-11-25 04:56:16 +02:00
parent 082196378b
commit 0cd5660141
382 changed files with 3714 additions and 3580 deletions

View File

@ -7,6 +7,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
`add_license` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_dashboard_methods` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_helper_admin` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_helper_both` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_helper_site` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_method_uninstall` TINYINT(1) NOT NULL DEFAULT '0',
`add_php_postflight_install` TINYINT(1) NOT NULL DEFAULT '0',
@ -50,6 +51,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
`php_admin_event` MEDIUMTEXT NOT NULL,
`php_dashboard_methods` MEDIUMTEXT NOT NULL,
`php_helper_admin` MEDIUMTEXT NOT NULL,
`php_helper_both` MEDIUMTEXT NOT NULL,
`php_helper_site` MEDIUMTEXT NOT NULL,
`php_method_uninstall` MEDIUMTEXT NOT NULL,
`php_postflight_install` MEDIUMTEXT NOT NULL,
@ -89,31 +91,32 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`),
KEY `idx_name_code` (`name_code`),
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
KEY `idx_add_css` (`add_css`),
KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_add_php_preflight_install` (`add_php_preflight_install`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_adduikit` (`adduikit`),
KEY `idx_add_email_helper` (`add_email_helper`),
KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_add_php_preflight_install` (`add_php_preflight_install`),
KEY `idx_add_css` (`add_css`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_name` (`name`),
KEY `idx_add_php_preflight_update` (`add_php_preflight_update`),
KEY `idx_add_php_postflight_update` (`add_php_postflight_update`),
KEY `idx_addreadme` (`addreadme`),
KEY `idx_add_sales_server` (`add_sales_server`),
KEY `idx_emptycontributors` (`emptycontributors`),
KEY `idx_add_license` (`add_license`),
KEY `idx_license_type` (`license_type`),
KEY `idx_creatuserhelper` (`creatuserhelper`),
KEY `idx_addfootable` (`addfootable`),
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_add_admin_event` (`add_admin_event`),
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
KEY `idx_add_site_event` (`add_site_event`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_add_php_dashboard_methods` (`add_php_dashboard_methods`)
KEY `idx_add_php_dashboard_methods` (`add_php_dashboard_methods`),
KEY `idx_emptycontributors` (`emptycontributors`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (