You can install any one of the following extensions!
';
+ // set multi install
+ $add_multi_install = true;
}
else
{
// Message of successful build
- $message = '
The (' . $model->compiler->filepath['component-folder'] . ') was Successfully Compiled!
';
+ $message[] = '
The (' . $model->compiler->filepath['component-folder'] . ') was Successfully Compiled!
';
}
- $message .= '';
- // switch to set multi install button
- $add_multi_install = true;
+ $message[] = '';
// check if we have modules
- if (ComponentbuilderHelper::checkArray($model->compiler->filepath['modules']))
+ if ($add_module_install)
{
foreach ($model->compiler->filepath['modules-folder'] as $module_id => $module_folder)
{
- $message .= '';
+ $message[] = '';
}
}
// check if we have plugins
- if (ComponentbuilderHelper::checkArray($model->compiler->filepath['plugins']))
+ if ($add_plugin_install)
{
- $add_multi_install = true;
foreach ($model->compiler->filepath['plugins-folder'] as $plugin_id => $plugin_folder)
{
- $message .= '';
+ $message[] = '';
}
}
// set multi install button
if ($add_multi_install)
{
- $message .= '
You can install all compiled extensions!
';
- $message .= '';
+ $message[] = '
You can install all compiled extensions!
';
+ $message[] = '';
}
- $message .= '
Total time saved
';
- $message .= '
';
- $message .= '
Total folders created: '.$model->compiler->folderCount.'
';
- $message .= '
Total files created: '.$model->compiler->fileCount.'
';
- $message .= '
Total fields created: '.$model->compiler->fieldCount.'
';
- $message .= '
Total lines written: '.$model->compiler->lineCount.'
';
- $message .= '
A4 Book of: '.$model->compiler->pageCount.' pages
';
- $message .= '
';
- $message .= '
'.$model->compiler->totalHours.' Hours or '.$model->compiler->totalDays.' Eight Hour Days(actual time you saved) ';
- $message .= '(if creating a folder and file took 5 seconds and writing one line of code took 10 seconds, never making one mistake or taking any coffee break.) ';
- $message .= ''.$model->compiler->actualHoursSpent.' Hours or '.$model->compiler->actualDaysSpent.' Eight Hour Days(the actual time you spent) ';
- $message .= '(with the following break down: debugging @'.$model->compiler->debuggingHours.'hours = codingtime / 4; planning @'.$model->compiler->planningHours.'hours = codingtime / 7; mapping @'.$model->compiler->mappingHours.'hours = codingtime / 10; office @'.$model->compiler->officeHours.'hours = codingtime / 6;)
';
- $message .= '
'.$model->compiler->actualTotalHours.' Hours or '.$model->compiler->actualTotalDays.' Eight Hour Days(a total of the realistic time frame for this project) ';
- $message .= '(if creating a folder and file took 5 seconds and writing one line of code took 10 seconds, with the normal everyday realities at the office, that includes the component planning, mapping & debugging.)
';
- $message .= '
Project duration: '.$model->compiler->projectWeekTime. ' weeks or '.$model->compiler->projectMonthTime.' months
';
+ $message[] = '
Total time saved
';
+ $message[] = '
';
+ $message[] = '
Total folders created: '.$model->compiler->folderCount.'
';
+ $message[] = '
Total files created: '.$model->compiler->fileCount.'
';
+ $message[] = '
Total fields created: '.$model->compiler->fieldCount.'
';
+ $message[] = '
Total lines written: '.$model->compiler->lineCount.'
';
+ $message[] = '
A4 Book of: '.$model->compiler->pageCount.' pages
';
+ $message[] = '
';
+ $message[] = '
'.$model->compiler->totalHours.' Hours or '.$model->compiler->totalDays.' Eight Hour Days(actual time you saved) ';
+ $message[] = '(if creating a folder and file took 5 seconds and writing one line of code took 10 seconds, never making one mistake or taking any coffee break.) ';
+ $message[] = ''.$model->compiler->actualHoursSpent.' Hours or '.$model->compiler->actualDaysSpent.' Eight Hour Days(the actual time you spent) ';
+ $message[] = '(with the following break down: debugging @'.$model->compiler->debuggingHours.'hours = codingtime / 4; planning @'.$model->compiler->planningHours.'hours = codingtime / 7; mapping @'.$model->compiler->mappingHours.'hours = codingtime / 10; office @'.$model->compiler->officeHours.'hours = codingtime / 6;)
';
+ $message[] = '
'.$model->compiler->actualTotalHours.' Hours or '.$model->compiler->actualTotalDays.' Eight Hour Days(a total of the realistic time frame for this project) ';
+ $message[] = '(if creating a folder and file took 5 seconds and writing one line of code took 10 seconds, with the normal everyday realities at the office, that includes the component planning, mapping & debugging.)
';
+ $message[] = '
Project duration: '.$model->compiler->projectWeekTime. ' weeks or '.$model->compiler->projectMonthTime.' months
';
// check if we have modules or plugins
- if (ComponentbuilderHelper::checkArray($model->compiler->filepath['plugins']) || ComponentbuilderHelper::checkArray($model->compiler->filepath['modules']))
+ if ($add_multi_install)
{
- $message .= '
';
+ $message[] = 'Hey! you can also download the zip file right now! ';
+ $message[] = 'Download
';
+ $message[] = '
Remember! This zip file is in your tmp folder and therefore publicly accessible until you click [Clear tmp]!
';
}
- $message .= '
Compilation took '.$model->compiler->secondsCompiled.' seconds to complete.
';
+ $message[] = '
Compilation took '.$model->compiler->secondsCompiled.' seconds to complete.
';
// set redirect
- $this->setRedirect($redirect_url, $message, 'message');
+ $this->setRedirect($redirect_url, implode(PHP_EOL, $message), 'message');
$app->setUserState('com_componentbuilder.component_folder_name', $model->compiler->filepath['component-folder']);
// check if we have modules
- if (ComponentbuilderHelper::checkArray($model->compiler->filepath['modules']))
+ if ($add_module_install)
{
$app->setUserState('com_componentbuilder.modules_folder_name', $model->compiler->filepath['modules-folder']);
}
// check if we have plugins
- if (ComponentbuilderHelper::checkArray($model->compiler->filepath['plugins']))
+ if ($add_plugin_install)
{
$app->setUserState('com_componentbuilder.plugins_folder_name', $model->compiler->filepath['plugins-folder']);
}
@@ -256,9 +270,10 @@ class ComponentbuilderControllerCompiler extends JControllerAdmin
// set page redirect
$redirect_url = JRoute::_('index.php?option=com_componentbuilder&view=compiler', false);
$message = JText::_('COM_COMPONENTBUILDER_YOU_DO_NOT_HAVE_PERMISSION_TO_INSTALL_THESE_EXTENSIONS');
+ // currently only administrators can install a component via JCB
if($user->authorise('core.admin'))
{
- $message = JText::_('COM_COMPONENTBUILDER_COULD_NOT_INSTALL_EXTENTIONS');
+ $message = JText::_('COM_COMPONENTBUILDER_COULD_NOT_INSTALL_EXTENSIONS');
$_message = array('success' => array(), 'error' => array());
$app = JFactory::getApplication();
// start file name array
@@ -316,6 +331,7 @@ class ComponentbuilderControllerCompiler extends JControllerAdmin
// set page redirect
$redirect_url = JRoute::_('index.php?option=com_componentbuilder&view=compiler', false);
$message = JText::_('COM_COMPONENTBUILDER_YOU_DO_NOT_HAVE_PERMISSION_TO_INSTALL_THE_COMPONENT');
+ // currently only administrators can install a component via JCB
if($user->authorise('core.admin'))
{
$message = JText::_('COM_COMPONENTBUILDER_COULD_NOT_INSTALL_COMPONENT');
@@ -352,6 +368,7 @@ class ComponentbuilderControllerCompiler extends JControllerAdmin
// set page redirect
$redirect_url = JRoute::_('index.php?option=com_componentbuilder&view=compiler', false);
$message = JText::_('COM_COMPONENTBUILDER_YOU_DO_NOT_HAVE_PERMISSION_TO_INSTALL_THE_MODULE');
+ // currently only administrators can install a molule via JCB
if($user->authorise('core.admin'))
{
$message = JText::_('COM_COMPONENTBUILDER_COULD_NOT_INSTALL_MODULE');
@@ -393,6 +410,7 @@ class ComponentbuilderControllerCompiler extends JControllerAdmin
// set page redirect
$redirect_url = JRoute::_('index.php?option=com_componentbuilder&view=compiler', false);
$message = JText::_('COM_COMPONENTBUILDER_YOU_DO_NOT_HAVE_PERMISSION_TO_INSTALL_THE_PLUGIN');
+ // currently only administrators can install a plugin via JCB
if($user->authorise('core.admin'))
{
$message = JText::_('COM_COMPONENTBUILDER_COULD_NOT_INSTALL_PLUGIN');
diff --git a/admin/controllers/component_admin_views.php b/admin/controllers/component_admin_views.php
index 5ee2efdcd..3488350a4 100644
--- a/admin/controllers/component_admin_views.php
+++ b/admin/controllers/component_admin_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_config.php b/admin/controllers/component_config.php
index d0c47e709..2ea320a39 100644
--- a/admin/controllers/component_config.php
+++ b/admin/controllers/component_config.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_custom_admin_menus.php b/admin/controllers/component_custom_admin_menus.php
index 4ca9d1552..340574ac3 100644
--- a/admin/controllers/component_custom_admin_menus.php
+++ b/admin/controllers/component_custom_admin_menus.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_custom_admin_views.php b/admin/controllers/component_custom_admin_views.php
index 33fd06279..59f22ab30 100644
--- a/admin/controllers/component_custom_admin_views.php
+++ b/admin/controllers/component_custom_admin_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_dashboard.php b/admin/controllers/component_dashboard.php
index 6ae4842ba..b56ee010a 100644
--- a/admin/controllers/component_dashboard.php
+++ b/admin/controllers/component_dashboard.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_files_folders.php b/admin/controllers/component_files_folders.php
index 2cb99e99a..869becd53 100644
--- a/admin/controllers/component_files_folders.php
+++ b/admin/controllers/component_files_folders.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_modules.php b/admin/controllers/component_modules.php
index 93a7d01d9..aa1c2c267 100644
--- a/admin/controllers/component_modules.php
+++ b/admin/controllers/component_modules.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_mysql_tweaks.php b/admin/controllers/component_mysql_tweaks.php
index 298a57b01..c730573b5 100644
--- a/admin/controllers/component_mysql_tweaks.php
+++ b/admin/controllers/component_mysql_tweaks.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_placeholders.php b/admin/controllers/component_placeholders.php
index 97dcf1416..a49438ba4 100644
--- a/admin/controllers/component_placeholders.php
+++ b/admin/controllers/component_placeholders.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_plugins.php b/admin/controllers/component_plugins.php
index 630bd82b4..71b6c109e 100644
--- a/admin/controllers/component_plugins.php
+++ b/admin/controllers/component_plugins.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_site_views.php b/admin/controllers/component_site_views.php
index 1a138f27c..ed7b0454b 100644
--- a/admin/controllers/component_site_views.php
+++ b/admin/controllers/component_site_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/component_updates.php b/admin/controllers/component_updates.php
index 42f4af69d..b43f4d532 100644
--- a/admin/controllers/component_updates.php
+++ b/admin/controllers/component_updates.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/componentbuilder.php b/admin/controllers/componentbuilder.php
index a90a7f94d..310642abc 100644
--- a/admin/controllers/componentbuilder.php
+++ b/admin/controllers/componentbuilder.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_admin_views.php b/admin/controllers/components_admin_views.php
index 25e11b2c3..5e3df7bfb 100644
--- a/admin/controllers/components_admin_views.php
+++ b/admin/controllers/components_admin_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_config.php b/admin/controllers/components_config.php
index 3f962db6c..ec9bdfe58 100644
--- a/admin/controllers/components_config.php
+++ b/admin/controllers/components_config.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_custom_admin_menus.php b/admin/controllers/components_custom_admin_menus.php
index 1d7ee6dfd..2c3c6fd90 100644
--- a/admin/controllers/components_custom_admin_menus.php
+++ b/admin/controllers/components_custom_admin_menus.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_custom_admin_views.php b/admin/controllers/components_custom_admin_views.php
index 9d560d190..b21d67613 100644
--- a/admin/controllers/components_custom_admin_views.php
+++ b/admin/controllers/components_custom_admin_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_dashboard.php b/admin/controllers/components_dashboard.php
index 7a40f3d47..46fb2520f 100644
--- a/admin/controllers/components_dashboard.php
+++ b/admin/controllers/components_dashboard.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_files_folders.php b/admin/controllers/components_files_folders.php
index 346a0ddb2..45d3c6223 100644
--- a/admin/controllers/components_files_folders.php
+++ b/admin/controllers/components_files_folders.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_modules.php b/admin/controllers/components_modules.php
index c824bf675..922334ec6 100644
--- a/admin/controllers/components_modules.php
+++ b/admin/controllers/components_modules.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_mysql_tweaks.php b/admin/controllers/components_mysql_tweaks.php
index 30c38032e..0f3bc0f75 100644
--- a/admin/controllers/components_mysql_tweaks.php
+++ b/admin/controllers/components_mysql_tweaks.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_placeholders.php b/admin/controllers/components_placeholders.php
index f8ef4b633..541dfd627 100644
--- a/admin/controllers/components_placeholders.php
+++ b/admin/controllers/components_placeholders.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_plugins.php b/admin/controllers/components_plugins.php
index 8bef571e6..e065f9358 100644
--- a/admin/controllers/components_plugins.php
+++ b/admin/controllers/components_plugins.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_site_views.php b/admin/controllers/components_site_views.php
index 7e0b151be..3562ce41f 100644
--- a/admin/controllers/components_site_views.php
+++ b/admin/controllers/components_site_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/components_updates.php b/admin/controllers/components_updates.php
index e0e47353d..b5062617f 100644
--- a/admin/controllers/components_updates.php
+++ b/admin/controllers/components_updates.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/custom_admin_view.php b/admin/controllers/custom_admin_view.php
index 86e866408..feacb731d 100644
--- a/admin/controllers/custom_admin_view.php
+++ b/admin/controllers/custom_admin_view.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/custom_admin_views.php b/admin/controllers/custom_admin_views.php
index 895d90bf1..3a93e5175 100644
--- a/admin/controllers/custom_admin_views.php
+++ b/admin/controllers/custom_admin_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/custom_code.php b/admin/controllers/custom_code.php
index 8c4678a5d..6dad1ce48 100644
--- a/admin/controllers/custom_code.php
+++ b/admin/controllers/custom_code.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/custom_codes.php b/admin/controllers/custom_codes.php
index 69416ba32..1d8fa6e93 100644
--- a/admin/controllers/custom_codes.php
+++ b/admin/controllers/custom_codes.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/dynamic_get.php b/admin/controllers/dynamic_get.php
index affacc4d5..b9d678b66 100644
--- a/admin/controllers/dynamic_get.php
+++ b/admin/controllers/dynamic_get.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/dynamic_gets.php b/admin/controllers/dynamic_gets.php
index b12db48b1..c50338d2d 100644
--- a/admin/controllers/dynamic_gets.php
+++ b/admin/controllers/dynamic_gets.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/field.php b/admin/controllers/field.php
index e9a3de898..12882a44b 100644
--- a/admin/controllers/field.php
+++ b/admin/controllers/field.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/fields.php b/admin/controllers/fields.php
index 37aa93fb9..82ae57849 100644
--- a/admin/controllers/fields.php
+++ b/admin/controllers/fields.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/fieldtype.php b/admin/controllers/fieldtype.php
index 0f372a454..da7f94fcc 100644
--- a/admin/controllers/fieldtype.php
+++ b/admin/controllers/fieldtype.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/fieldtypes.php b/admin/controllers/fieldtypes.php
index 9ab64e184..895be9f75 100644
--- a/admin/controllers/fieldtypes.php
+++ b/admin/controllers/fieldtypes.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/get_snippets.php b/admin/controllers/get_snippets.php
index 6a8bd6fa1..75034cdaf 100644
--- a/admin/controllers/get_snippets.php
+++ b/admin/controllers/get_snippets.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/help.php b/admin/controllers/help.php
index 075ac8478..db8ebde18 100644
--- a/admin/controllers/help.php
+++ b/admin/controllers/help.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/help_document.php b/admin/controllers/help_document.php
index 7c8dac620..a969950a9 100644
--- a/admin/controllers/help_document.php
+++ b/admin/controllers/help_document.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/help_documents.php b/admin/controllers/help_documents.php
index c196281df..3f57f2727 100644
--- a/admin/controllers/help_documents.php
+++ b/admin/controllers/help_documents.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/import.php b/admin/controllers/import.php
index 1a4478621..d829399ba 100644
--- a/admin/controllers/import.php
+++ b/admin/controllers/import.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/import_joomla_components.php b/admin/controllers/import_joomla_components.php
index 83ab37693..0fb095a15 100644
--- a/admin/controllers/import_joomla_components.php
+++ b/admin/controllers/import_joomla_components.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/import_language_translations.php b/admin/controllers/import_language_translations.php
index 7cc0646a7..7c6e54de2 100644
--- a/admin/controllers/import_language_translations.php
+++ b/admin/controllers/import_language_translations.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_component.php b/admin/controllers/joomla_component.php
index e6c961d4f..0fccf2d60 100644
--- a/admin/controllers/joomla_component.php
+++ b/admin/controllers/joomla_component.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_components.php b/admin/controllers/joomla_components.php
index 40f89410c..651b276d2 100644
--- a/admin/controllers/joomla_components.php
+++ b/admin/controllers/joomla_components.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_module.php b/admin/controllers/joomla_module.php
index a77945ace..eddc20e1c 100644
--- a/admin/controllers/joomla_module.php
+++ b/admin/controllers/joomla_module.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_module_files_folders_urls.php b/admin/controllers/joomla_module_files_folders_urls.php
index 5368584f2..ce481d480 100644
--- a/admin/controllers/joomla_module_files_folders_urls.php
+++ b/admin/controllers/joomla_module_files_folders_urls.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_module_updates.php b/admin/controllers/joomla_module_updates.php
index 6dbb8290a..d7d98f7c7 100644
--- a/admin/controllers/joomla_module_updates.php
+++ b/admin/controllers/joomla_module_updates.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_modules.php b/admin/controllers/joomla_modules.php
index 87c1942e7..76896b50b 100644
--- a/admin/controllers/joomla_modules.php
+++ b/admin/controllers/joomla_modules.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_modules_files_folders_urls.php b/admin/controllers/joomla_modules_files_folders_urls.php
index 47dc7e08b..dae339577 100644
--- a/admin/controllers/joomla_modules_files_folders_urls.php
+++ b/admin/controllers/joomla_modules_files_folders_urls.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_modules_updates.php b/admin/controllers/joomla_modules_updates.php
index a831042a9..d41c4d944 100644
--- a/admin/controllers/joomla_modules_updates.php
+++ b/admin/controllers/joomla_modules_updates.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugin.php b/admin/controllers/joomla_plugin.php
index 8900cea02..fb9acc7a0 100644
--- a/admin/controllers/joomla_plugin.php
+++ b/admin/controllers/joomla_plugin.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugin_files_folders_urls.php b/admin/controllers/joomla_plugin_files_folders_urls.php
index cf66e82f3..b98aedf4a 100644
--- a/admin/controllers/joomla_plugin_files_folders_urls.php
+++ b/admin/controllers/joomla_plugin_files_folders_urls.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugin_group.php b/admin/controllers/joomla_plugin_group.php
index c26681770..d802b356c 100644
--- a/admin/controllers/joomla_plugin_group.php
+++ b/admin/controllers/joomla_plugin_group.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugin_groups.php b/admin/controllers/joomla_plugin_groups.php
index d9b99d1d5..8bba21397 100644
--- a/admin/controllers/joomla_plugin_groups.php
+++ b/admin/controllers/joomla_plugin_groups.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugin_updates.php b/admin/controllers/joomla_plugin_updates.php
index e8a7c7b66..8fd914009 100644
--- a/admin/controllers/joomla_plugin_updates.php
+++ b/admin/controllers/joomla_plugin_updates.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugins.php b/admin/controllers/joomla_plugins.php
index 351eb12ed..358779d03 100644
--- a/admin/controllers/joomla_plugins.php
+++ b/admin/controllers/joomla_plugins.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugins_files_folders_urls.php b/admin/controllers/joomla_plugins_files_folders_urls.php
index 9841c2cfa..3a68c9dbd 100644
--- a/admin/controllers/joomla_plugins_files_folders_urls.php
+++ b/admin/controllers/joomla_plugins_files_folders_urls.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/joomla_plugins_updates.php b/admin/controllers/joomla_plugins_updates.php
index 3cc1b77c2..a3c41b3f7 100644
--- a/admin/controllers/joomla_plugins_updates.php
+++ b/admin/controllers/joomla_plugins_updates.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/language.php b/admin/controllers/language.php
index 9eded7e7e..1f70b7e02 100644
--- a/admin/controllers/language.php
+++ b/admin/controllers/language.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/language_translation.php b/admin/controllers/language_translation.php
index b732c1abb..f1ae16473 100644
--- a/admin/controllers/language_translation.php
+++ b/admin/controllers/language_translation.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/language_translations.php b/admin/controllers/language_translations.php
index 707f1fa8a..8bb6065e8 100644
--- a/admin/controllers/language_translations.php
+++ b/admin/controllers/language_translations.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/languages.php b/admin/controllers/languages.php
index 122219384..3c1e50ac7 100644
--- a/admin/controllers/languages.php
+++ b/admin/controllers/languages.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/layout.php b/admin/controllers/layout.php
index 1617b785b..5f5227e03 100644
--- a/admin/controllers/layout.php
+++ b/admin/controllers/layout.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/layouts.php b/admin/controllers/layouts.php
index 4cffcf47b..4d542a704 100644
--- a/admin/controllers/layouts.php
+++ b/admin/controllers/layouts.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/libraries.php b/admin/controllers/libraries.php
index 8ccb21caf..d432970ef 100644
--- a/admin/controllers/libraries.php
+++ b/admin/controllers/libraries.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/libraries_config.php b/admin/controllers/libraries_config.php
index d6e4985a9..645931237 100644
--- a/admin/controllers/libraries_config.php
+++ b/admin/controllers/libraries_config.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/libraries_files_folders_urls.php b/admin/controllers/libraries_files_folders_urls.php
index 34d8a7dcd..ba6855e79 100644
--- a/admin/controllers/libraries_files_folders_urls.php
+++ b/admin/controllers/libraries_files_folders_urls.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/library.php b/admin/controllers/library.php
index 7c42dd1fb..bebe2c808 100644
--- a/admin/controllers/library.php
+++ b/admin/controllers/library.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/library_config.php b/admin/controllers/library_config.php
index f404159e7..6f0bfd055 100644
--- a/admin/controllers/library_config.php
+++ b/admin/controllers/library_config.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/library_files_folders_urls.php b/admin/controllers/library_files_folders_urls.php
index 73bf8b9a7..f77e09f35 100644
--- a/admin/controllers/library_files_folders_urls.php
+++ b/admin/controllers/library_files_folders_urls.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/placeholder.php b/admin/controllers/placeholder.php
index bf8a691e0..47340fea4 100644
--- a/admin/controllers/placeholder.php
+++ b/admin/controllers/placeholder.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/placeholders.php b/admin/controllers/placeholders.php
index d42263160..c49ec4a3d 100644
--- a/admin/controllers/placeholders.php
+++ b/admin/controllers/placeholders.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/server.php b/admin/controllers/server.php
index e36cd8324..3387089b3 100644
--- a/admin/controllers/server.php
+++ b/admin/controllers/server.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/servers.php b/admin/controllers/servers.php
index c1d011ba4..2d61215f1 100644
--- a/admin/controllers/servers.php
+++ b/admin/controllers/servers.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/site_view.php b/admin/controllers/site_view.php
index 9a91ca8c2..abb3d9d12 100644
--- a/admin/controllers/site_view.php
+++ b/admin/controllers/site_view.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/site_views.php b/admin/controllers/site_views.php
index 0054fd1c4..a0867ddcd 100644
--- a/admin/controllers/site_views.php
+++ b/admin/controllers/site_views.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/snippet.php b/admin/controllers/snippet.php
index f6c3d87ba..fc6e9b982 100644
--- a/admin/controllers/snippet.php
+++ b/admin/controllers/snippet.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/snippet_type.php b/admin/controllers/snippet_type.php
index ec355f2d8..0c26edfc7 100644
--- a/admin/controllers/snippet_type.php
+++ b/admin/controllers/snippet_type.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/snippet_types.php b/admin/controllers/snippet_types.php
index e6ed8596e..c8b2b9941 100644
--- a/admin/controllers/snippet_types.php
+++ b/admin/controllers/snippet_types.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/snippets.php b/admin/controllers/snippets.php
index d3b64683a..b111e7c8d 100644
--- a/admin/controllers/snippets.php
+++ b/admin/controllers/snippets.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/template.php b/admin/controllers/template.php
index b4806cef4..0c15804bc 100644
--- a/admin/controllers/template.php
+++ b/admin/controllers/template.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/templates.php b/admin/controllers/templates.php
index 4da43d674..ffeca4b31 100644
--- a/admin/controllers/templates.php
+++ b/admin/controllers/templates.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/validation_rule.php b/admin/controllers/validation_rule.php
index 73d31e491..bdd56091b 100644
--- a/admin/controllers/validation_rule.php
+++ b/admin/controllers/validation_rule.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/controllers/validation_rules.php b/admin/controllers/validation_rules.php
index 4807eaa6d..6aaf4ca06 100644
--- a/admin/controllers/validation_rules.php
+++ b/admin/controllers/validation_rules.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/compiler.php b/admin/helpers/compiler.php
index 43cefb508..2234194be 100644
--- a/admin/helpers/compiler.php
+++ b/admin/helpers/compiler.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/compiler/a_Get.php b/admin/helpers/compiler/a_Get.php
index 7e92c92b8..7da842db6 100644
--- a/admin/helpers/compiler/a_Get.php
+++ b/admin/helpers/compiler/a_Get.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/compiler/b_Structure.php b/admin/helpers/compiler/b_Structure.php
index d963a8eb0..838b2041d 100644
--- a/admin/helpers/compiler/b_Structure.php
+++ b/admin/helpers/compiler/b_Structure.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/compiler/c_Fields.php b/admin/helpers/compiler/c_Fields.php
index e178895fa..04ce6d614 100644
--- a/admin/helpers/compiler/c_Fields.php
+++ b/admin/helpers/compiler/c_Fields.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
@@ -1492,7 +1492,7 @@ class Fields extends Structure
// check if the view has permissions
if (isset($view['settings'])
&& ComponentbuilderHelper::checkArray(
- $view['settings']->permissions
+ $view['settings']->permissions, true
))
{
foreach ($view['settings']->permissions as $per)
@@ -1516,7 +1516,7 @@ class Fields extends Structure
// check if the fields has permissions
if (isset($view['settings'])
&& ComponentbuilderHelper::checkArray(
- $view['settings']->fields
+ $view['settings']->fields, true
))
{
foreach ($view['settings']->fields as $field)
@@ -1525,7 +1525,7 @@ class Fields extends Structure
// the a view has permissions
if (isset($field['permission'])
&& ComponentbuilderHelper::checkArray(
- $field['permission']
+ $field['permission'], true
))
{
// set the permission for later
diff --git a/admin/helpers/compiler/e_Interpretation.php b/admin/helpers/compiler/e_Interpretation.php
index 1170315dd..2e646ae60 100644
--- a/admin/helpers/compiler/e_Interpretation.php
+++ b/admin/helpers/compiler/e_Interpretation.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/compiler/f_Infusion.php b/admin/helpers/compiler/f_Infusion.php
index 300bde63a..b3de13c1c 100644
--- a/admin/helpers/compiler/f_Infusion.php
+++ b/admin/helpers/compiler/f_Infusion.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/componentbuilder.php b/admin/helpers/componentbuilder.php
index 5e5b33f69..a711f945b 100644
--- a/admin/helpers/componentbuilder.php
+++ b/admin/helpers/componentbuilder.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/componentbuilderemail.php b/admin/helpers/componentbuilderemail.php
index b498c86f9..f85204bf3 100644
--- a/admin/helpers/componentbuilderemail.php
+++ b/admin/helpers/componentbuilderemail.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/headercheck.php b/admin/helpers/headercheck.php
index 0163efdd8..810ce4270 100644
--- a/admin/helpers/headercheck.php
+++ b/admin/helpers/headercheck.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/helpers/html/batch_.php b/admin/helpers/html/batch_.php
index f85709a82..2c3132f72 100644
--- a/admin/helpers/html/batch_.php
+++ b/admin/helpers/html/batch_.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/language/en-GB/en-GB.com_componentbuilder.ini b/admin/language/en-GB/en-GB.com_componentbuilder.ini
index e820b4dda..db2be1bcf 100644
--- a/admin/language/en-GB/en-GB.com_componentbuilder.ini
+++ b/admin/language/en-GB/en-GB.com_componentbuilder.ini
@@ -3699,7 +3699,7 @@ COM_COMPONENTBUILDER_COPYRIGHT="Copyright"
COM_COMPONENTBUILDER_COPYRIGHT_S="Copyright: %s"
COM_COMPONENTBUILDER_COULD_NOT_CLEAR_THE_TMP_FOLDER="Could not clear the tmp folder!"
COM_COMPONENTBUILDER_COULD_NOT_INSTALL_COMPONENT="Could not install component!"
-COM_COMPONENTBUILDER_COULD_NOT_INSTALL_EXTENTIONS="Could not install extentions!"
+COM_COMPONENTBUILDER_COULD_NOT_INSTALL_EXTENSIONS="Could not install extensions!"
COM_COMPONENTBUILDER_COULD_NOT_INSTALL_MODULE="Could not install module!"
COM_COMPONENTBUILDER_COULD_NOT_INSTALL_PLUGIN="Could not install plugin!"
COM_COMPONENTBUILDER_CREATE="Create"
diff --git a/admin/layouts/admin_custom_tabs/publishing.php b/admin/layouts/admin_custom_tabs/publishing.php
index 7e1c2bada..6c2935f73 100644
--- a/admin/layouts/admin_custom_tabs/publishing.php
+++ b/admin/layouts/admin_custom_tabs/publishing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_custom_tabs/publlshing.php b/admin/layouts/admin_custom_tabs/publlshing.php
index d50018f09..cc5be72a4 100644
--- a/admin/layouts/admin_custom_tabs/publlshing.php
+++ b/admin/layouts/admin_custom_tabs/publlshing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_custom_tabs/tabs_above.php b/admin/layouts/admin_custom_tabs/tabs_above.php
index 52794ce41..d54808329 100644
--- a/admin/layouts/admin_custom_tabs/tabs_above.php
+++ b/admin/layouts/admin_custom_tabs/tabs_above.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_custom_tabs/tabs_fullwidth.php b/admin/layouts/admin_custom_tabs/tabs_fullwidth.php
index 22fd6a51f..eabe89c6d 100644
--- a/admin/layouts/admin_custom_tabs/tabs_fullwidth.php
+++ b/admin/layouts/admin_custom_tabs/tabs_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields/fields_above.php b/admin/layouts/admin_fields/fields_above.php
index 52794ce41..d54808329 100644
--- a/admin/layouts/admin_fields/fields_above.php
+++ b/admin/layouts/admin_fields/fields_above.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields/fields_fullwidth.php b/admin/layouts/admin_fields/fields_fullwidth.php
index ec84422aa..b284ce261 100644
--- a/admin/layouts/admin_fields/fields_fullwidth.php
+++ b/admin/layouts/admin_fields/fields_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields/publishing.php b/admin/layouts/admin_fields/publishing.php
index 7e1c2bada..6c2935f73 100644
--- a/admin/layouts/admin_fields/publishing.php
+++ b/admin/layouts/admin_fields/publishing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields/publlshing.php b/admin/layouts/admin_fields/publlshing.php
index d50018f09..cc5be72a4 100644
--- a/admin/layouts/admin_fields/publlshing.php
+++ b/admin/layouts/admin_fields/publlshing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_conditions/conditions_above.php b/admin/layouts/admin_fields_conditions/conditions_above.php
index 52794ce41..d54808329 100644
--- a/admin/layouts/admin_fields_conditions/conditions_above.php
+++ b/admin/layouts/admin_fields_conditions/conditions_above.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_conditions/conditions_fullwidth.php b/admin/layouts/admin_fields_conditions/conditions_fullwidth.php
index f7879957c..106a258fd 100644
--- a/admin/layouts/admin_fields_conditions/conditions_fullwidth.php
+++ b/admin/layouts/admin_fields_conditions/conditions_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_conditions/publishing.php b/admin/layouts/admin_fields_conditions/publishing.php
index 7e1c2bada..6c2935f73 100644
--- a/admin/layouts/admin_fields_conditions/publishing.php
+++ b/admin/layouts/admin_fields_conditions/publishing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_conditions/publlshing.php b/admin/layouts/admin_fields_conditions/publlshing.php
index d50018f09..cc5be72a4 100644
--- a/admin/layouts/admin_fields_conditions/publlshing.php
+++ b/admin/layouts/admin_fields_conditions/publlshing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_relations/publishing.php b/admin/layouts/admin_fields_relations/publishing.php
index 7e1c2bada..6c2935f73 100644
--- a/admin/layouts/admin_fields_relations/publishing.php
+++ b/admin/layouts/admin_fields_relations/publishing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_relations/publlshing.php b/admin/layouts/admin_fields_relations/publlshing.php
index d50018f09..cc5be72a4 100644
--- a/admin/layouts/admin_fields_relations/publlshing.php
+++ b/admin/layouts/admin_fields_relations/publlshing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_relations/relations_above.php b/admin/layouts/admin_fields_relations/relations_above.php
index 52794ce41..d54808329 100644
--- a/admin/layouts/admin_fields_relations/relations_above.php
+++ b/admin/layouts/admin_fields_relations/relations_above.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_fields_relations/relations_fullwidth.php b/admin/layouts/admin_fields_relations/relations_fullwidth.php
index 66bd5b106..206af5cc4 100644
--- a/admin/layouts/admin_fields_relations/relations_fullwidth.php
+++ b/admin/layouts/admin_fields_relations/relations_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/css_fullwidth.php b/admin/layouts/admin_view/css_fullwidth.php
index be28aa100..b7394e7af 100644
--- a/admin/layouts/admin_view/css_fullwidth.php
+++ b/admin/layouts/admin_view/css_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/custom_buttons_fullwidth.php b/admin/layouts/admin_view/custom_buttons_fullwidth.php
index 635ac6833..cebb5a435 100644
--- a/admin/layouts/admin_view/custom_buttons_fullwidth.php
+++ b/admin/layouts/admin_view/custom_buttons_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/custom_buttons_left.php b/admin/layouts/admin_view/custom_buttons_left.php
index adbc9100d..4446f97c9 100644
--- a/admin/layouts/admin_view/custom_buttons_left.php
+++ b/admin/layouts/admin_view/custom_buttons_left.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/custom_import_fullwidth.php b/admin/layouts/admin_view/custom_import_fullwidth.php
index 782648e42..45063746c 100644
--- a/admin/layouts/admin_view/custom_import_fullwidth.php
+++ b/admin/layouts/admin_view/custom_import_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/details_above.php b/admin/layouts/admin_view/details_above.php
index 66d56b26c..4c4a46276 100644
--- a/admin/layouts/admin_view/details_above.php
+++ b/admin/layouts/admin_view/details_above.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/details_fullwidth.php b/admin/layouts/admin_view/details_fullwidth.php
index ffa1295d6..46b9cc2b4 100644
--- a/admin/layouts/admin_view/details_fullwidth.php
+++ b/admin/layouts/admin_view/details_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/details_left.php b/admin/layouts/admin_view/details_left.php
index 424e25df9..0f61406d1 100644
--- a/admin/layouts/admin_view/details_left.php
+++ b/admin/layouts/admin_view/details_left.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/details_right.php b/admin/layouts/admin_view/details_right.php
index 45a28798f..94ed27874 100644
--- a/admin/layouts/admin_view/details_right.php
+++ b/admin/layouts/admin_view/details_right.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/details_under.php b/admin/layouts/admin_view/details_under.php
index 67986f65e..c047dc1bd 100644
--- a/admin/layouts/admin_view/details_under.php
+++ b/admin/layouts/admin_view/details_under.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/fields_fullwidth.php b/admin/layouts/admin_view/fields_fullwidth.php
index 4a6040543..5a281de54 100644
--- a/admin/layouts/admin_view/fields_fullwidth.php
+++ b/admin/layouts/admin_view/fields_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/fields_left.php b/admin/layouts/admin_view/fields_left.php
index 20c513473..587895859 100644
--- a/admin/layouts/admin_view/fields_left.php
+++ b/admin/layouts/admin_view/fields_left.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/fields_right.php b/admin/layouts/admin_view/fields_right.php
index bab059f91..e97712f74 100644
--- a/admin/layouts/admin_view/fields_right.php
+++ b/admin/layouts/admin_view/fields_right.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/javascript_fullwidth.php b/admin/layouts/admin_view/javascript_fullwidth.php
index 04988440a..607484ef9 100644
--- a/admin/layouts/admin_view/javascript_fullwidth.php
+++ b/admin/layouts/admin_view/javascript_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/mysql_fullwidth.php b/admin/layouts/admin_view/mysql_fullwidth.php
index 2406f0496..75948ebee 100644
--- a/admin/layouts/admin_view/mysql_fullwidth.php
+++ b/admin/layouts/admin_view/mysql_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/mysql_left.php b/admin/layouts/admin_view/mysql_left.php
index 7220e68f8..9213f61c1 100644
--- a/admin/layouts/admin_view/mysql_left.php
+++ b/admin/layouts/admin_view/mysql_left.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/php_fullwidth.php b/admin/layouts/admin_view/php_fullwidth.php
index 0267ea668..564ca84a7 100644
--- a/admin/layouts/admin_view/php_fullwidth.php
+++ b/admin/layouts/admin_view/php_fullwidth.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/publishing.php b/admin/layouts/admin_view/publishing.php
index d79339906..e39d94000 100644
--- a/admin/layouts/admin_view/publishing.php
+++ b/admin/layouts/admin_view/publishing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder
- * @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ * @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
diff --git a/admin/layouts/admin_view/publlshing.php b/admin/layouts/admin_view/publlshing.php
index d50018f09..cc5be72a4 100644
--- a/admin/layouts/admin_view/publlshing.php
+++ b/admin/layouts/admin_view/publlshing.php
@@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe
* @github Joomla Component Builder