2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2021-01-03 16:49:35 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2019-07-01 16:10:28 +00:00
|
|
|
// get the form
|
2016-01-30 20:28:43 +00:00
|
|
|
$form = $displayData->getForm();
|
|
|
|
|
2019-07-01 16:10:28 +00:00
|
|
|
// get the layout fields override method name (from layout path/ID)
|
|
|
|
$layout_path_array = explode('.', $this->getLayoutId());
|
|
|
|
// Since we cannot pass the layout and tab names as parameters to the model method
|
|
|
|
// this name combination of tab and layout in the method name is the only work around
|
|
|
|
// seeing that JCB uses those two values (tab_name & layout_name) as the layout file name.
|
|
|
|
// example of layout name: details_left.php
|
|
|
|
// example of method name: getFields_details_left()
|
|
|
|
$fields_tab_layout = 'fields_' . $layout_path_array[1];
|
|
|
|
|
|
|
|
// get the fields
|
|
|
|
$fields = $displayData->get($fields_tab_layout) ?: array(
|
2016-01-30 20:28:43 +00:00
|
|
|
'name',
|
|
|
|
'name_code',
|
|
|
|
'component_version',
|
|
|
|
'debug_linenr',
|
2017-02-02 11:54:07 +00:00
|
|
|
'add_placeholders',
|
2020-08-19 00:54:09 +00:00
|
|
|
'remove_line_breaks',
|
2017-02-02 11:54:07 +00:00
|
|
|
'mvc_versiondate',
|
2017-11-06 14:04:23 +00:00
|
|
|
'note_version_options_one',
|
|
|
|
'note_version_options_two',
|
|
|
|
'note_version_options_three',
|
2016-01-30 20:28:43 +00:00
|
|
|
'short_description',
|
2020-08-19 00:54:09 +00:00
|
|
|
'description'
|
2016-01-30 20:28:43 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$hiddenFields = $displayData->get('hidden_fields') ?: array();
|
|
|
|
|
2019-01-23 14:30:53 +00:00
|
|
|
?>
|
2019-07-01 16:10:28 +00:00
|
|
|
<?php if ($fields && count((array) $fields)) :?>
|
2019-01-23 14:30:53 +00:00
|
|
|
<?php foreach($fields as $field): ?>
|
|
|
|
<?php if (in_array($field, $hiddenFields)) : ?>
|
|
|
|
<?php $form->setFieldAttribute($field, 'type', 'hidden'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php echo $form->renderField($field, null, null, array('class' => 'control-wrapper-' . $field)); ?>
|
|
|
|
<?php endforeach; ?>
|
2019-07-01 16:10:28 +00:00
|
|
|
<?php endif; ?>
|