forked from joomla/Component-Builder
Added the feature that loads the company global values when creating a new component, if they are set.
This commit is contained in:
parent
8e79417664
commit
42d5b3b55c
@ -150,7 +150,7 @@ TODO
|
||||
+ *Version*: 2.9.18
|
||||
+ *Copyright*: Copyright (C) 2015 - 2019 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **206374**
|
||||
+ *Line count*: **206387**
|
||||
+ *Field count*: **1136**
|
||||
+ *File count*: **1344**
|
||||
+ *Folder count*: **209**
|
||||
|
@ -150,7 +150,7 @@ TODO
|
||||
+ *Version*: 2.9.18
|
||||
+ *Copyright*: Copyright (C) 2015 - 2019 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **206374**
|
||||
+ *Line count*: **206387**
|
||||
+ *Field count*: **1136**
|
||||
+ *File count*: **1344**
|
||||
+ *Folder count*: **209**
|
||||
|
@ -408,6 +408,19 @@ class ComponentbuilderModelJoomla_component extends JModelAdmin
|
||||
}
|
||||
}
|
||||
|
||||
// Only load these values if no id is found
|
||||
if (0 == $id)
|
||||
{
|
||||
// get components global params
|
||||
$params = JComponentHelper::getParams('com_componentbuilder');
|
||||
// set company defaults
|
||||
$form->setValue('companyname', null, $params->get('export_company', ''));
|
||||
$form->setValue('author', null, $params->get('export_owner', ''));
|
||||
$form->setValue('email', null, $params->get('export_email', ''));
|
||||
$form->setValue('website', null, $params->get('export_website', ''));
|
||||
$form->setValue('copyright', null, $params->get('export_copyright', 'Copyright (C) 2015. All Rights Reserved'));
|
||||
$form->setValue('license', null, $params->get('export_license', 'GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html'));
|
||||
}
|
||||
return $form;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user