Component Builder (v.5.0.3-alpha1)
+ Component Builder (v.5.0.3-alpha2)
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 23b5d32cc..af0b26ce0 100644
--- a/componentbuilder_update_server.xml
+++ b/componentbuilder_update_server.xml
@@ -95,10 +95,28 @@
pkg_component_builder
package
site
- 5.0.3-alpha1
+ 5.0.3-alpha
https://dev.vdm.io
- https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v5.0.3-alpha1.zip
+ https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v5.0.3-alpha2.zip
+
+
+ alpha
+
+ Llewellyn van der Merwe
+ https://dev.vdm.io
+
+
+
+ Component Builder
+ Builds Complex Joomla Components
+ pkg_component_builder
+ package
+ site
+ 5.0.3-alpha2
+ https://dev.vdm.io
+
+ https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v5.0.3-alpha2.zip
alpha
diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Helper/Interpretation.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Helper/Interpretation.php
index 43a76a352..1616cdf26 100644
--- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Helper/Interpretation.php
+++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Helper/Interpretation.php
@@ -6614,7 +6614,7 @@ class Interpretation extends Fields
__LINE__,__CLASS__
) . " check if the CSS file exists.";
$setter .= PHP_EOL . $tabV . Indent::_(5)
- . "if (File::exists(JPATH_ROOT.'/media/com_"
+ . "if (@file_exists(JPATH_ROOT.'/media/com_"
. CFactory::_('Config')->component_code_name
. "/uikit-v2/css/components/'.\$name.\$style.\$size.'.css'))";
$setter .= PHP_EOL . $tabV . Indent::_(5) . "{";
@@ -6630,7 +6630,7 @@ class Interpretation extends Fields
__LINE__,__CLASS__
) . " check if the JavaScript file exists.";
$setter .= PHP_EOL . $tabV . Indent::_(5)
- . "if (File::exists(JPATH_ROOT.'/media/com_"
+ . "if (@file_exists(JPATH_ROOT.'/media/com_"
. CFactory::_('Config')->component_code_name
. "/uikit-v2/js/components/'.\$name.\$size.'.js'))";
$setter .= PHP_EOL . $tabV . Indent::_(5) . "{";
@@ -6671,7 +6671,7 @@ class Interpretation extends Fields
__LINE__,__CLASS__
) . " check if the CSS file exists.";
$setter .= PHP_EOL . $tabV . Indent::_(5)
- . "if (File::exists(JPATH_ROOT.'/media/com_"
+ . "if (@file_exists(JPATH_ROOT.'/media/com_"
. CFactory::_('Config')->component_code_name
. "/uikit-v2/css/components/'.\$name.\$style.\$size.'.css'))";
$setter .= PHP_EOL . $tabV . Indent::_(5) . "{";
@@ -6687,7 +6687,7 @@ class Interpretation extends Fields
__LINE__,__CLASS__
) . " check if the JavaScript file exists.";
$setter .= PHP_EOL . $tabV . Indent::_(5)
- . "if (File::exists(JPATH_ROOT.'/media/com_"
+ . "if (@file_exists(JPATH_ROOT.'/media/com_"
. CFactory::_('Config')->component_code_name
. "/uikit-v2/js/components/'.\$name.\$size.'.js'))";
$setter .= PHP_EOL . $tabV . Indent::_(5) . "{";
@@ -7154,7 +7154,7 @@ class Interpretation extends Fields
$file
))
{
- if (File::exists($file['path']))
+ if (@file_exists($file['path']))
{
$string = FileHelper::getContent(
$file['path']
@@ -7170,7 +7170,7 @@ class Interpretation extends Fields
{
if (ArrayHelper::check($doc))
{
- if (File::exists($doc['path']))
+ if (@file_exists($doc['path']))
{
$string
= FileHelper::getContent(