Fixed gh-373 so that the auto update of selection is only triggered when toggling the all selection button.

This commit is contained in:
2019-02-06 11:32:38 +02:00
parent 1a538e71d7
commit 104c4e6bae
8 changed files with 22 additions and 26 deletions

View File

@@ -12,7 +12,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 safe you lots of time and money. A real must have!
You can install it quite easily and with no limitations. On [github](https://github.com/vdm-io/Joomla-Component-Builder/releases) is the latest release (2.9.10) with **ALL** its features and **ALL** concepts totally open-source and free!
You can install it quite easily and with no limitations. On [github](https://github.com/vdm-io/Joomla-Component-Builder/releases) is the latest release (2.9.11) 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,11 +144,11 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 31st January, 2019
+ *Version*: 2.9.10
+ *Last Build*: 6th February, 2019
+ *Version*: 2.9.11
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
+ *Line count*: **195869**
+ *Line count*: **195865**
+ *Field count*: **1089**
+ *File count*: **1277**
+ *Folder count*: **201**

View File

@@ -286,13 +286,13 @@ class ComponentbuilderControllerJoomla_components extends JControllerAdmin
$model = componentbuilderHelper::getModel('joomla_components', JPATH_ADMINISTRATOR . '/components/com_componentbuilder');
// set user
$model->user = $this->getApiUser();
// make sure to set active type (adding this script from custom code :)
$model->activeType = 'manualBackup';
// check if export is allowed for this user. (we need this sorry)
if ($model->user->authorise('joomla_component.export', 'com_componentbuilder') && $model->user->authorise('core.export', 'com_componentbuilder'))
{
// get all component IDs to backup
$pks = componentbuilderHelper::getComponentIDs();
// make sure to set active type to backup
$model->activeType = 'manualBackup';
// set auto loader
ComponentbuilderHelper::autoLoader('smart');
// manual backup message
@@ -413,7 +413,7 @@ class ComponentbuilderControllerJoomla_components extends JControllerAdmin
}
}
// quite only if auto backup (adding this script from custom code :)
if ('backup' === 'manualBackup')
if ('backup' === $model->activeType)
{
echo "# " . $backupNoticeStatus . "\n" .implode("\n", $backupNotice);
// clear session
@@ -424,7 +424,7 @@ class ComponentbuilderControllerJoomla_components extends JControllerAdmin
return;
}
// quite only if auto backup (adding this script from custom code :)
if ('backup' === 'manualBackup')
if ('backup' === $model->activeType)
{
echo "# Error\n" . JText::_('COM_COMPONENTBUILDER_ACCESS_DENIED');
// clear session

View File

@@ -1523,10 +1523,6 @@ jQuery(document).ready(function()
getLinked();
var valueSwitch = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
getDynamicScripts(valueSwitch);
// get the selected value of the select_all
var select_all = jQuery("#jform_select_all input[type='radio']:checked").val();
// make sure the selection is correct
setSelectAll(select_all);
// check and load all the custom code edit buttons
getEditCustomCodeButtons();
});