update 2024-04-22 00:47:33

This commit is contained in:
Robot 2024-04-22 00:47:33 +02:00
parent 4134cff484
commit c9c9e1f3d3
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
5 changed files with 23 additions and 2 deletions

View File

@ -88,7 +88,8 @@ class Autoloader
*/
public function set()
{
if (ArrayHelper::check($this->power->namespace))
// make sure we only load this once
if (ArrayHelper::check($this->power->namespace) && !$this->content->isString('CUSTOM_POWER_AUTOLOADER'))
{
/************************* IMPORTANT SORT NOTICE ***********************************************
* make sure the name space values are sorted from the longest string to the shortest

View File

@ -59,7 +59,8 @@
*/
public function set()
{
if (ArrayHelper::check($this->power->namespace))
// make sure we only load this once
if (ArrayHelper::check($this->power->namespace) && !$this->content->isString('CUSTOM_POWER_AUTOLOADER'))
{
/************************* IMPORTANT SORT NOTICE ***********************************************
* make sure the name space values are sorted from the longest string to the shortest

View File

@ -13,6 +13,7 @@ namespace VDM\Joomla\Componentbuilder\Compiler\Builder;
use VDM\Joomla\Componentbuilder\Compiler\Utilities\Placefix;
use VDM\Joomla\Abstraction\Registry\Traits\IsString;
use VDM\Joomla\Interfaces\Registryinterface;
use VDM\Joomla\Abstraction\Registry;
@ -24,6 +25,13 @@ use VDM\Joomla\Abstraction\Registry;
*/
class ContentOne extends Registry implements Registryinterface
{
/**
* Is String Values
*
* @since 3.2.0
*/
use IsString;
/**
* Constructor.
*

View File

@ -1,3 +1,10 @@
/**
* Is String Values
*
* @since 3.2.0
*/
use IsString;
/**
* Constructor.
*

View File

@ -15,6 +15,10 @@
"use_selection0": {
"use": "500f3a7f-c16d-4dd4-81b2-2df6776b5388",
"as": "default"
},
"use_selection1": {
"use": "ff7d0111-8f79-42aa-ac14-b53ba2c49369",
"as": "default"
}
},
"namespace": "VDM\\Joomla\\Componentbuilder.Compiler.Builder.ContentOne",