diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a242d842..13510025f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ -# v3.2.4-beta1 +# v3.2.4-beta2 + +- Fix the demo site view to also display files +- Fix the message of field type init +- Fix to ensure type-agnostic comparisons by casting to CHAR in joins in dynamic get +- Fix dynamic download for site area to have correct namespace + +# v3.2.4-beta - Fix zip missing working path diff --git a/README.md b/README.md index e1a83f845..b29f7148f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have! -You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.4-beta1) with **ALL** its features and **ALL** concepts totally open-source and free! +You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.4-beta2) with **ALL** its features and **ALL** concepts totally open-source and free! > Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45) @@ -144,13 +144,13 @@ TODO + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder) + *First Build*: 30th April, 2015 -+ *Last Build*: 18th September, 2024 -+ *Version*: 3.2.4-beta1 ++ *Last Build*: 19th September, 2024 ++ *Version*: 3.2.4-beta2 + *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved. + *License*: GNU General Public License version 2 or later; see LICENSE.txt -+ *Line count*: **849009** ++ *Line count*: **850926** + *Field count*: **2098** -+ *File count*: **5782** ++ *File count*: **5788** + *Folder count*: **505** > This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com). diff --git a/admin/README.txt b/admin/README.txt index e1a83f845..b29f7148f 100644 --- a/admin/README.txt +++ b/admin/README.txt @@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have! -You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.4-beta1) with **ALL** its features and **ALL** concepts totally open-source and free! +You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.4-beta2) with **ALL** its features and **ALL** concepts totally open-source and free! > Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45) @@ -144,13 +144,13 @@ TODO + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder) + *First Build*: 30th April, 2015 -+ *Last Build*: 18th September, 2024 -+ *Version*: 3.2.4-beta1 ++ *Last Build*: 19th September, 2024 ++ *Version*: 3.2.4-beta2 + *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved. + *License*: GNU General Public License version 2 or later; see LICENSE.txt -+ *Line count*: **849009** ++ *Line count*: **850926** + *Field count*: **2098** -+ *File count*: **5782** ++ *File count*: **5788** + *Folder count*: **505** > This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com). diff --git a/admin/controllers/fieldtypes.php b/admin/controllers/fieldtypes.php index 1e82c8809..df2271f6c 100644 --- a/admin/controllers/fieldtypes.php +++ b/admin/controllers/fieldtypes.php @@ -148,7 +148,7 @@ class ComponentbuilderControllerFieldtypes extends AdminController if (FieldtypeFactory::_('Joomla.Fieldtype.Remote.Get')->init()) { // set success message - $message = '

' . Text::_('COM_COMPONENTBUILDER_SUCCESSFULLY_INITIALIZED_ALL_REMOTE_JOOMLA_POWERS') . '

'; + $message = '

' . Text::_('COM_COMPONENTBUILDER_SUCCESSFULLY_INITIALIZED_ALL_REMOTE_JOOMLA_FIELD_TYPES') . '

'; $message .= '

' . Text::_('COM_COMPONENTBUILDER_THE_LOCAL_DATABASE_JOOMLA_FIELD_TYPES_HAS_SUCCESSFULLY_BEEN_SYNCED_WITH_THE_REMOTE_REPOSITORIES') . '

'; $status = 'success'; diff --git a/admin/controllers/powers.php b/admin/controllers/powers.php index f6b4081d1..aa66542bd 100644 --- a/admin/controllers/powers.php +++ b/admin/controllers/powers.php @@ -83,7 +83,7 @@ class ComponentbuilderControllerPowers extends AdminController if (PowerFactory::_('Power.Remote.Get')->init()) { // set success message - $message = '

' . Text::_('COM_COMPONENTBUILDER_SUCCESSFULLY_INITIALIZED_ALL_REMOTE_JOOMLA_POWERS') . '

'; + $message = '

' . Text::_('COM_COMPONENTBUILDER_SUCCESSFULLY_INITIALIZED_ALL_REMOTE_POWERS') . '

'; $message .= '

' . Text::_('COM_COMPONENTBUILDER_THE_LOCAL_DATABASE_POWERS_HAS_SUCCESSFULLY_BEEN_SYNCED_WITH_THE_REMOTE_REPOSITORIES') . '

'; $status = 'success'; diff --git a/admin/custom/DownloadControllerAdmin.php b/admin/custom/DownloadControllerAdmin.php new file mode 100644 index 000000000..ea98e4fba --- /dev/null +++ b/admin/custom/DownloadControllerAdmin.php @@ -0,0 +1,16 @@ + + * @copyright Copyright (C) 2014. All Rights Reserved + * @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html + * + **/ + +// No direct access to this file +defined('_JEXEC') or die('Restricted access'); +?> +###BOM### +[CUSTOMCODE=dynamicDownloadController+Administrator] diff --git a/admin/custom/DownloadControllerSite.php b/admin/custom/DownloadControllerSite.php new file mode 100644 index 000000000..5c0bdbd46 --- /dev/null +++ b/admin/custom/DownloadControllerSite.php @@ -0,0 +1,16 @@ + + * @copyright Copyright (C) 2014. All Rights Reserved + * @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html + * + **/ + +// No direct access to this file +defined('_JEXEC') or die('Restricted access'); +?> +###BOM### +[CUSTOMCODE=dynamicDownloadController+Site] diff --git a/admin/custom/dynamicDownloadController.php b/admin/custom/dynamicDownloadController.php deleted file mode 100644 index fe2ee525b..000000000 --- a/admin/custom/dynamicDownloadController.php +++ /dev/null @@ -1,16 +0,0 @@ - - * @copyright Copyright (C) 2014. All Rights Reserved - * @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html - * - **/ - -// No direct access to this file -defined('_JEXEC') or die('Restricted access'); -?> -###BOM### -[CUSTOMCODE=dynamicDownloadController] \ No newline at end of file diff --git a/admin/language/en-GB/en-GB.com_componentbuilder.ini b/admin/language/en-GB/en-GB.com_componentbuilder.ini index 0b0dfc050..c7caf5a90 100644 --- a/admin/language/en-GB/en-GB.com_componentbuilder.ini +++ b/admin/language/en-GB/en-GB.com_componentbuilder.ini @@ -8908,7 +8908,9 @@ COM_COMPONENTBUILDER_SUBMENU_SNIPPETS="Snippets" COM_COMPONENTBUILDER_SUBMENU_TEMPLATES="Templates" COM_COMPONENTBUILDER_SUBMENU_VALIDATION_RULES="Validation Rules" COM_COMPONENTBUILDER_SUCCESS="Success" +COM_COMPONENTBUILDER_SUCCESSFULLY_INITIALIZED_ALL_REMOTE_JOOMLA_FIELD_TYPES="Successfully Initialized all Remote Joomla Field Types" COM_COMPONENTBUILDER_SUCCESSFULLY_INITIALIZED_ALL_REMOTE_JOOMLA_POWERS="Successfully Initialized all Remote Joomla Powers" +COM_COMPONENTBUILDER_SUCCESSFULLY_INITIALIZED_ALL_REMOTE_POWERS="Successfully Initialized all Remote Powers" COM_COMPONENTBUILDER_SUCCESS_THE_SNIPPET_WAS_SAVED="Success! The snippet was saved." COM_COMPONENTBUILDER_SUCCESS_THE_SNIPPET_WAS_SAVED_BUT_THE_MODIFIED_DATE_COULD_NOT_BE_ADJUSTED_BR_BR_BTHIS_MEANS_THE_SNIPPETS_WILL_CONTINUE_TO_APPEAR_OUT_OF_DATEB="Success! The snippet was saved. But the modified date could not be adjusted.

This means the snippets will continue to appear out of date." COM_COMPONENTBUILDER_SUPER_POWER="Super Power" diff --git a/admin/sql/install.mysql.utf8.sql b/admin/sql/install.mysql.utf8.sql index e4ea3df0c..d83d9935c 100644 --- a/admin/sql/install.mysql.utf8.sql +++ b/admin/sql/install.mysql.utf8.sql @@ -3070,7 +3070,7 @@ INSERT INTO `#__componentbuilder_component_dashboard` (`id`, `dashboard_tab`, `j INSERT INTO `#__componentbuilder_component_files_folders` (`id`, `addfiles`, `addfolders`, `joomla_component`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `addfilesfullpath`, `addfoldersfullpath`) VALUES (1, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"downloadController.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"fb_loader.gif\",\"path\":\"\\/media\\/images\\/load.gif\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\"}}', '', 1, '', 1, '2017-10-28 03:56:26', '2019-06-11 12:25:39', 3, '', '', '', ''), -(2, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles36\":{\"file\":\"dynamicDownloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles21\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles31\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles32\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders4\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 2, '', 1, '2017-10-28 03:56:26', '2024-09-14 02:46:12', 72, '', '', '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'), +(2, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles37\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles22\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles32\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders4\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 2, '', 1, '2017-10-28 03:56:26', '2024-09-18 23:39:49', 73, '', '', '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'), (3, '{\"addfiles0\":{\"file\":\"marked.js\",\"path\":\"media\\/js\",\"notnew\":\"0\"}}', '', 34, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (4, '{\"addfiles0\":{\"file\":\"chartMenu.js\",\"path\":\"\\/media\\/js\"},\"addfiles1\":{\"file\":\"table2excel.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles13\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"keynote-on-icon.png\",\"path\":\"\\/media\\/images\\/charts.png\"},\"addfiles4\":{\"file\":\"table.png\",\"path\":\"\\/media\\/images\\/tables.png\"},\"addfiles5\":{\"file\":\"fb_loader.gif\",\"path\":\"\\/media\\/images\\/load.gif\"},\"addfiles6\":{\"file\":\"giz.png\",\"path\":\"\\/media\\/images\\/cbp_box.png\"},\"addfiles7\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\"},\"addfiles8\":{\"file\":\"aes.php\",\"path\":\"\\/admin\\/helpers\"},\"addfiles9\":{\"file\":\"negativefinder.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles10\":{\"file\":\"sum.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"},\"addfiles11\":{\"file\":\"sumcombine.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"}}', '{}', 3, '', 1, '2017-10-28 03:56:26', '2020-11-20 17:15:00', 3, '', '', '{}', '{}'), (5, '', '', 4, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), @@ -3093,7 +3093,7 @@ INSERT INTO `#__componentbuilder_component_files_folders` (`id`, `addfiles`, `ad (24, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"locationdata.php\",\"path\":\"\\/admin\\/helpers\\/componentbuilderfactory.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"locationdata.php\",\"path\":\"\\/site\\/helpers\\/componentbuilderfactory.php\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles5\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles6\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles7\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '', 23, '', 1, '2017-10-28 03:56:26', '2018-04-04 15:50:01', 7, '', '', '', ''), (25, '{\"addfiles0\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 28, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (26, '{\"addfiles0\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles5\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles9\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles10\":{\"file\":\"confirmationController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/confirm.php\",\"notnew\":\"1\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/locker\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\",\"rename\":\"0\"}}', 24, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(27, '{\"addfiles0\":{\"file\":\"dynamicDownloadController.php\",\"path\":\"admin\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"dynamicDownloadController.php\",\"path\":\"site\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"}}', '{}', 25, '', 1, '2017-10-28 03:56:26', '2024-09-17 21:33:29', 5, '', '', '{}', '{}'), +(27, '{\"addfiles0\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"site\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"}}', '{}', 25, '', 1, '2017-10-28 03:56:26', '2024-09-18 23:34:35', 6, '', '', '{}', '{}'), (28, '', '', 26, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (29, '{\"addfiles0\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/totals\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\",\"rename\":\"0\"}}', 27, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (30, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles6\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles7\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 29, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), @@ -3139,10 +3139,10 @@ INSERT INTO `#__componentbuilder_component_files_folders` (`id`, `addfiles`, `ad (71, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 73, '', 1, '2020-07-05 02:26:09', '0000-00-00 00:00:00', 1, '', 2, '', ''), (74, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 83, '', 1, '2024-01-16 07:58:01', '2018-03-03 21:17:49', 1, '', 5, '', ''), (75, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 84, '', 1, '2024-01-21 09:56:47', '2023-07-26 09:39:22', 1, '', 6, '{}', '{}'), -(76, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"dynamicDownloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles22\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles32\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders10\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders4\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 85, '', 1, '2024-01-25 14:33:10', '2024-09-16 02:47:17', 4, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"},\"addfilesfullpath7\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/demo500.jpg\",\"path\":\"\\/images\\/vdm\\/\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'), +(76, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles37\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles22\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles32\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\",\"rename\":\"1\"},\"addfolders4\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders10\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 85, '', 1, '2024-01-25 14:33:10', '2024-09-18 23:35:56', 5, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"},\"addfilesfullpath7\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/demo500.jpg\",\"path\":\"\\/images\\/vdm\\/\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'), (77, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 87, '', 1, '2024-03-07 12:51:17', '2023-07-26 09:39:22', 1, '', 6, '{}', '{}'), (78, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 88, '', 1, '2024-03-07 13:03:22', '2018-03-03 21:17:49', 1, '', 5, '', ''), -(79, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles36\":{\"file\":\"dynamicDownloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles21\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles31\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles32\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders4\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 89, '', 1, '2024-03-08 11:34:35', '2024-09-14 02:45:30', 2, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'); +(79, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles37\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles22\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles32\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders4\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 89, '', 1, '2024-03-08 11:34:35', '2024-09-18 23:36:16', 3, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'); -- -- Dumping data for table `#__componentbuilder_snippet_type` diff --git a/admin/sql/updates/mysql/3.2.4-beta.sql b/admin/sql/updates/mysql/3.2.4-beta.sql new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/admin/sql/updates/mysql/3.2.4-beta.sql @@ -0,0 +1 @@ + diff --git a/componentbuilder.xml b/componentbuilder.xml index 97970873e..fc263d3c8 100644 --- a/componentbuilder.xml +++ b/componentbuilder.xml @@ -1,15 +1,15 @@ COM_COMPONENTBUILDER - 18th September, 2024 + 19th September, 2024 Llewellyn van der Merwe joomla@vdm.io https://dev.vdm.io Copyright (C) 2015 Vast Development Method. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt - 3.2.4-beta1 + 3.2.4-beta2 Component Builder (v.3.2.4-beta1) +

Component Builder (v.3.2.4-beta2)

The Component Builder for [Joomla](https://extensions.joomla.org/extension/component-builder/) is highly advanced tool that is truly able to build extremely complex components in a fraction of the time. diff --git a/componentbuilder_update_server.xml b/componentbuilder_update_server.xml index feb9856e6..c2e588f2a 100644 --- a/componentbuilder_update_server.xml +++ b/componentbuilder_update_server.xml @@ -202,10 +202,28 @@ pkg_component_builder package site - 3.2.4-beta1 + 3.2.4-beta https://dev.vdm.io - https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.4-beta1.zip + https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.4-beta2.zip + + + beta + + Llewellyn van der Merwe + https://dev.vdm.io + + + + Component Builder + Builds Complex Joomla Components + pkg_component_builder + package + site + 3.2.4-beta2 + https://dev.vdm.io + + https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.4-beta2.zip beta diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Abstraction/Schema.php b/libraries/vendor_jcb/VDM.Joomla/src/Abstraction/Schema.php index 46664c698..0ad261c6c 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Abstraction/Schema.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Abstraction/Schema.php @@ -344,7 +344,7 @@ abstract class Schema implements SchemaInterface ]; } // check if update of default values is needed - elseif ($this->checkDefault($table, $column)) + if ($this->checkDefault($table, $column)) { $requireUpdate[$column] = [ 'column' => $column, @@ -353,7 +353,7 @@ abstract class Schema implements SchemaInterface ]; } // check if update of null is needed - elseif ($this->checkNull($table, $column)) + if ($this->checkNull($table, $column)) { $requireUpdate[$column] = [ 'column' => $column, diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Architecture/JoomlaThree/ComHelperClass/CreateUser.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Architecture/JoomlaThree/ComHelperClass/CreateUser.php index f60ca2772..dc3064750 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Architecture/JoomlaThree/ComHelperClass/CreateUser.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Architecture/JoomlaThree/ComHelperClass/CreateUser.php @@ -87,8 +87,7 @@ final class CreateUser implements CreateUserInterface $method[] = Indent::_(2) . "\$lang = Factory::getLanguage();"; $method[] = Indent::_(2) . "\$extension = 'com_users';"; $method[] = Indent::_(2) . "\$base_dir = JPATH_SITE;"; - $method[] = Indent::_(2) . "\$language_tag = '" . CFactory::_('Config')->get('lang_tag', 'en-GB') - . "';"; + $method[] = Indent::_(2) . "\$language_tag = 'en-GB';"; $method[] = Indent::_(2) . "\$reload = true;"; $method[] = Indent::_(2) . "\$lang->load(\$extension, \$base_dir, \$language_tag, \$reload);"; @@ -306,8 +305,7 @@ final class CreateUser implements CreateUserInterface $method[] = Indent::_(2) . "\$lang = Factory::getLanguage();"; $method[] = Indent::_(2) . "\$extension = 'com_users';"; $method[] = Indent::_(2) . "\$base_dir = JPATH_ADMINISTRATOR;"; - $method[] = Indent::_(2) . "\$language_tag = '" . CFactory::_('Config')->get('lang_tag', 'en-GB') - . "';"; + $method[] = Indent::_(2) . "\$language_tag = 'en-GB';"; $method[] = Indent::_(2) . "\$reload = true;"; $method[] = Indent::_(2) . "\$lang->load(\$extension, \$base_dir, \$language_tag, \$reload);"; diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/File.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/File.php index a6046dafa..cf9fb9547 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/File.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/File.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/Folder.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/Folder.php index 4313f08e0..ec61e5ae3 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/Folder.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Utilities/Folder.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/Exception/NoUserIdFoundException.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/Exception/NoUserIdFoundException.php index 773c39a44..234b244ac 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/Exception/NoUserIdFoundException.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/Exception/NoUserIdFoundException.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/UserHelper.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/UserHelper.php index 8dbbc6fba..69e689593 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/UserHelper.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Utilities/UserHelper.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Data/Guid.php b/libraries/vendor_jcb/VDM.Joomla/src/Data/Guid.php index 454fa4de4..3fe2b3a74 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Data/Guid.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Data/Guid.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Data/UsersSubform.php b/libraries/vendor_jcb/VDM.Joomla/src/Data/UsersSubform.php index 93cdd90cc..1fd7bf967 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Data/UsersSubform.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Data/UsersSubform.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Utilities/ClassHelper.php b/libraries/vendor_jcb/VDM.Joomla/src/Utilities/ClassHelper.php index 5d6af9cae..a6f4396bc 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Utilities/ClassHelper.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Utilities/ClassHelper.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Utilities/GetHelperExtrusion.php b/libraries/vendor_jcb/VDM.Joomla/src/Utilities/GetHelperExtrusion.php index e607e39b5..e04fb8d61 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Utilities/GetHelperExtrusion.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Utilities/GetHelperExtrusion.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Utilities/String/ComponentCodeNameHelper.php b/libraries/vendor_jcb/VDM.Joomla/src/Utilities/String/ComponentCodeNameHelper.php index 538496ef6..e0b87ac75 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Utilities/String/ComponentCodeNameHelper.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Utilities/String/ComponentCodeNameHelper.php @@ -2,7 +2,7 @@ /** * @package Joomla.Component.Builder * - * @created 3rd September, 2020 + * @created 4th September, 2020 * @author Llewellyn van der Merwe * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. diff --git a/script.php b/script.php index ac546a128..7796c79fd 100644 --- a/script.php +++ b/script.php @@ -10001,7 +10001,7 @@ class Com_ComponentbuilderInstallerScript echo '

-

Upgrade to Version 3.2.4-beta1 Was Successful! Let us know if anything is not working as expected.

'; +

Upgrade to Version 3.2.4-beta2 Was Successful! Let us know if anything is not working as expected.

'; // Set db if not set already. if (!isset($db))