Added Dynamic Router Implementation to resolve gh-74
This commit is contained in:
@ -482,6 +482,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_dynamic_get` (
|
||||
`add_php_before_getitem` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_before_getitems` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_getlistquery` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_router_parse` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`addcalculation` CHAR NOT NULL DEFAULT '',
|
||||
`db_selection` TEXT NOT NULL,
|
||||
`db_table_main` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
@ -503,6 +504,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_dynamic_get` (
|
||||
`php_calculation` MEDIUMTEXT NOT NULL,
|
||||
`php_custom_get` MEDIUMTEXT NOT NULL,
|
||||
`php_getlistquery` MEDIUMTEXT NOT NULL,
|
||||
`php_router_parse` MEDIUMTEXT NOT NULL,
|
||||
`view_selection` TEXT NOT NULL,
|
||||
`view_table_main` INT(11) NOT NULL DEFAULT 0,
|
||||
`where` TEXT NOT NULL,
|
||||
@ -530,6 +532,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_dynamic_get` (
|
||||
KEY `idx_add_php_after_getitems` (`add_php_after_getitems`),
|
||||
KEY `idx_add_php_before_getitems` (`add_php_before_getitems`),
|
||||
KEY `idx_add_php_before_getitem` (`add_php_before_getitem`),
|
||||
KEY `idx_add_php_router_parse` (`add_php_router_parse`),
|
||||
KEY `idx_add_php_after_getitem` (`add_php_after_getitem`),
|
||||
KEY `idx_add_php_getlistquery` (`add_php_getlistquery`),
|
||||
KEY `idx_getcustom` (`getcustom`),
|
||||
|
3
admin/sql/updates/mysql/2.6.12.sql
Normal file
3
admin/sql/updates/mysql/2.6.12.sql
Normal file
@ -0,0 +1,3 @@
|
||||
ALTER TABLE `#__componentbuilder_dynamic_get` ADD `add_php_router_parse` TINYINT(1) NOT NULL DEFAULT 0 AFTER `add_php_getlistquery`;
|
||||
|
||||
ALTER TABLE `#__componentbuilder_dynamic_get` ADD `php_router_parse` MEDIUMTEXT NOT NULL AFTER `php_getlistquery`;
|
Reference in New Issue
Block a user