forked from joomla/Component-Builder
fixed the dashboard JCB package import that did not update the ID in the Joomla Component Area
This commit is contained in:
parent
ffbd380b10
commit
2ca5419106
@ -125,11 +125,11 @@ Watch the [proposed development workflow](https://vdm.bz/proposed-development-wo
|
|||||||
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
||||||
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
||||||
+ *First Build*: 30th April, 2015
|
+ *First Build*: 30th April, 2015
|
||||||
+ *Last Build*: 9th June, 2018
|
+ *Last Build*: 12th June, 2018
|
||||||
+ *Version*: 2.8.0
|
+ *Version*: 2.8.0
|
||||||
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
||||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||||
+ *Line count*: **185591**
|
+ *Line count*: **185647**
|
||||||
+ *Field count*: **1054**
|
+ *Field count*: **1054**
|
||||||
+ *File count*: **1236**
|
+ *File count*: **1236**
|
||||||
+ *Folder count*: **197**
|
+ *Folder count*: **197**
|
||||||
|
@ -125,11 +125,11 @@ Watch the [proposed development workflow](https://vdm.bz/proposed-development-wo
|
|||||||
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
||||||
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
||||||
+ *First Build*: 30th April, 2015
|
+ *First Build*: 30th April, 2015
|
||||||
+ *Last Build*: 9th June, 2018
|
+ *Last Build*: 12th June, 2018
|
||||||
+ *Version*: 2.8.0
|
+ *Version*: 2.8.0
|
||||||
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
||||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||||
+ *Line count*: **185591**
|
+ *Line count*: **185647**
|
||||||
+ *Field count*: **1054**
|
+ *Field count*: **1054**
|
||||||
+ *File count*: **1236**
|
+ *File count*: **1236**
|
||||||
+ *Folder count*: **197**
|
+ *Folder count*: **197**
|
||||||
|
@ -1007,6 +1007,7 @@ class ComponentbuilderModelImport_joomla_components extends JModelLegacy
|
|||||||
**/
|
**/
|
||||||
public function updateAfterAll()
|
public function updateAfterAll()
|
||||||
{
|
{
|
||||||
|
// update the fields
|
||||||
if (ComponentbuilderHelper::checkArray($this->updateAfter['field']))
|
if (ComponentbuilderHelper::checkArray($this->updateAfter['field']))
|
||||||
{
|
{
|
||||||
// update repeatable
|
// update repeatable
|
||||||
@ -1105,6 +1106,55 @@ class ComponentbuilderModelImport_joomla_components extends JModelLegacy
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// update the joomla_component dashboard
|
||||||
|
if (ComponentbuilderHelper::checkArray($this->updateAfter['joomla_component']))
|
||||||
|
{
|
||||||
|
// update dashboard of the components
|
||||||
|
foreach ($this->updateAfter['joomla_component'] as $component)
|
||||||
|
{
|
||||||
|
if (isset($this->newID['joomla_component'][(int) $component]))
|
||||||
|
{
|
||||||
|
$component = $this->newID['joomla_component'][(int) $component];
|
||||||
|
}
|
||||||
|
// get the dashboard from db
|
||||||
|
if ($dashboard = ComponentbuilderHelper::getVar('joomla_component', $component, 'id', 'dashboard'))
|
||||||
|
{
|
||||||
|
if (ComponentbuilderHelper::checkString($dashboard))
|
||||||
|
{
|
||||||
|
// get id
|
||||||
|
$id = (int) preg_replace("/[^0-9]/", "", $dashboard);
|
||||||
|
// update the value
|
||||||
|
$update = false;
|
||||||
|
// admin_view
|
||||||
|
if ((strpos($dashboard, 'A') !== false || strpos($dashboard, 'a') !== false) && isset($this->newID['admin_view'][$id]))
|
||||||
|
{
|
||||||
|
// set the new value
|
||||||
|
$dashboard = 'A_' . $this->newID['admin_view'][$id];
|
||||||
|
// update the value
|
||||||
|
$update = true;
|
||||||
|
}
|
||||||
|
// custom_admin_view
|
||||||
|
elseif ((strpos($dashboard, 'C') !== false || strpos($dashboard, 'c') !== false) && isset($this->newID['custom_admin_view'][$id]))
|
||||||
|
{
|
||||||
|
// set the new value
|
||||||
|
$dashboard = 'C_' . $this->newID['custom_admin_view'][$id];
|
||||||
|
// update the value
|
||||||
|
$update = true;
|
||||||
|
}
|
||||||
|
// did we get a new value
|
||||||
|
if ($update)
|
||||||
|
{
|
||||||
|
// now update the joomla_component dashboard value
|
||||||
|
$object = new stdClass;
|
||||||
|
$object->id = (int) $component;
|
||||||
|
$object->dashboard = $dashboard;
|
||||||
|
// update the admin view
|
||||||
|
$this->_db->updateObject('#__componentbuilder_joomla_component', $object, 'id');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1573,6 +1623,12 @@ class ComponentbuilderModelImport_joomla_components extends JModelLegacy
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'joomla_component':
|
case 'joomla_component':
|
||||||
|
// update custom dash after
|
||||||
|
if (isset($item->dashboard_type) && 2 == $item->dashboard_type)
|
||||||
|
{
|
||||||
|
// update the custom dash ID
|
||||||
|
$this->updateAfter['joomla_component'][$item->id] = $item->id; // dashboard
|
||||||
|
}
|
||||||
// set the anchors getters
|
// set the anchors getters
|
||||||
$getter = array('joomla_component' => $item->id);
|
$getter = array('joomla_component' => $item->id);
|
||||||
// update the addconfig
|
// update the addconfig
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<extension type="component" version="3.2" method="upgrade">
|
<extension type="component" version="3.2" method="upgrade">
|
||||||
<name>COM_COMPONENTBUILDER</name>
|
<name>COM_COMPONENTBUILDER</name>
|
||||||
<creationDate>9th June, 2018</creationDate>
|
<creationDate>12th June, 2018</creationDate>
|
||||||
<author>Llewellyn van der Merwe</author>
|
<author>Llewellyn van der Merwe</author>
|
||||||
<authorEmail>llewellyn@joomlacomponentbuilder.com</authorEmail>
|
<authorEmail>llewellyn@joomlacomponentbuilder.com</authorEmail>
|
||||||
<authorUrl>http://www.joomlacomponentbuilder.com</authorUrl>
|
<authorUrl>http://www.joomlacomponentbuilder.com</authorUrl>
|
||||||
|
Loading…
Reference in New Issue
Block a user