Added the option of placing tabs on the dashboard with custom scription options. All other changes are only random variable name and date changes (due to automation)
This commit is contained in:
@ -4,6 +4,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
|
||||
`add_admin_event` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`add_css` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`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_site` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`add_site_event` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
@ -26,6 +27,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
|
||||
`copyright` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`creatuserhelper` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`css` TEXT NOT NULL DEFAULT '',
|
||||
`dashboard_tab` TEXT NOT NULL DEFAULT '',
|
||||
`debug_linenr` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`description` TEXT NOT NULL DEFAULT '',
|
||||
`email` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
@ -38,6 +40,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
|
||||
`not_required` INT(1) NOT NULL DEFAULT '0',
|
||||
`number` INT(11) NOT NULL DEFAULT '0',
|
||||
`php_admin_event` MEDIUMTEXT NOT NULL DEFAULT '',
|
||||
`php_dashboard_methods` MEDIUMTEXT NOT NULL DEFAULT '',
|
||||
`php_helper_admin` MEDIUMTEXT NOT NULL DEFAULT '',
|
||||
`php_helper_site` MEDIUMTEXT NOT NULL DEFAULT '',
|
||||
`php_site_event` MEDIUMTEXT NOT NULL DEFAULT '',
|
||||
@ -70,20 +73,21 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component` (
|
||||
KEY `idx_state` (`published`),
|
||||
KEY `idx_name_code` (`name_code`),
|
||||
KEY `idx_debug_linenr` (`debug_linenr`),
|
||||
KEY `idx_add_css` (`add_css`),
|
||||
KEY `idx_add_admin_event` (`add_admin_event`),
|
||||
KEY `idx_add_site_event` (`add_site_event`),
|
||||
KEY `idx_addreadme` (`addreadme`),
|
||||
KEY `idx_adduikit` (`adduikit`),
|
||||
KEY `idx_addfootable` (`addfootable`),
|
||||
KEY `idx_name` (`name`),
|
||||
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
|
||||
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
|
||||
KEY `idx_add_sql` (`add_sql`),
|
||||
KEY `idx_add_license` (`add_license`),
|
||||
KEY `idx_license_type` (`license_type`),
|
||||
KEY `idx_emptycontributors` (`emptycontributors`),
|
||||
KEY `idx_creatuserhelper` (`creatuserhelper`),
|
||||
KEY `idx_addfootable` (`addfootable`)
|
||||
KEY `idx_addreadme` (`addreadme`),
|
||||
KEY `idx_add_license` (`add_license`),
|
||||
KEY `idx_license_type` (`license_type`),
|
||||
KEY `idx_adduikit` (`adduikit`),
|
||||
KEY `idx_add_css` (`add_css`),
|
||||
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`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
|
||||
|
Reference in New Issue
Block a user