34
0

Update on v2.0.1 (beta for next version)

Here's an update on the current version, which includes changes towards the next release still in beta.
This commit is contained in:
Robot 2024-03-02 22:06:24 +02:00
parent 3b56673462
commit c8a32ab27c
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
2 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<extension type="plugin" version="4" group="content" method="upgrade"> <extension type="plugin" version="3.10" group="content" method="upgrade">
<name>PLG_CONTENT_COMPONENTBUILDERCOMPONENTDASHBOARDHEADERSTABS</name> <name>PLG_CONTENT_COMPONENTBUILDERCOMPONENTDASHBOARDHEADERSTABS</name>
<creationDate>24th October, 2023</creationDate> <creationDate>2nd March, 2024</creationDate>
<author>Llewellyn van der Merwe</author> <author>Llewellyn van der Merwe</author>
<authorEmail>joomla@vdm.io</authorEmail> <authorEmail>joomla@vdm.io</authorEmail>
<authorUrl>https://dev.vdm.io</authorUrl> <authorUrl>https://dev.vdm.io</authorUrl>

View File

@ -12,6 +12,11 @@
// No direct access to this file // No direct access to this file
defined('_JEXEC') or die('Restricted access'); defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Filesystem\File;
use Joomla\CMS\Filesystem\Folder;
/** /**
* Content - Componentbuilder Component Dashboard Headers Tabs script file. * Content - Componentbuilder Component Dashboard Headers Tabs script file.
* *
@ -31,7 +36,7 @@ class plgContentComponentbuilderComponentDashboardHeadersTabsInstallerScript
public function preflight($route, $adapter) public function preflight($route, $adapter)
{ {
// get application // get application
$app = JFactory::getApplication(); $app = Factory::getApplication();
// the default for both install and update // the default for both install and update
$jversion = new JVersion(); $jversion = new JVersion();