Added context to site and custom admin views to better target triggered events. Added the redering option in the admin edit view, so to expand forms via plugins. Improved the codename build in site and custom admin view.
This commit is contained in:
@ -283,6 +283,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_admin_view` (
|
||||
`add_php_view` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`ajax_input` TEXT NOT NULL,
|
||||
`codename` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`context` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`css` TEXT NOT NULL,
|
||||
`css_document` TEXT NOT NULL,
|
||||
`custom_button` TEXT NOT NULL,
|
||||
@ -326,10 +327,11 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_admin_view` (
|
||||
KEY `idx_state` (`published`),
|
||||
KEY `idx_name` (`name`),
|
||||
KEY `idx_main_get` (`main_get`),
|
||||
KEY `idx_add_css` (`add_css`),
|
||||
KEY `idx_add_javascript_file` (`add_javascript_file`),
|
||||
KEY `idx_add_css_document` (`add_css_document`),
|
||||
KEY `idx_add_css` (`add_css`),
|
||||
KEY `idx_add_js_document` (`add_js_document`),
|
||||
KEY `idx_add_javascript_file` (`add_javascript_file`),
|
||||
KEY `idx_context` (`context`),
|
||||
KEY `idx_codename` (`codename`),
|
||||
KEY `idx_add_php_ajax` (`add_php_ajax`),
|
||||
KEY `idx_dynamic_get` (`dynamic_get`),
|
||||
|
Reference in New Issue
Block a user