2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
// get the form
|
|
|
|
$form = $displayData->getForm();
|
|
|
|
|
|
|
|
// 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
|
|
|
'add_php_ajax',
|
|
|
|
'php_ajaxmethod',
|
|
|
|
'ajax_input',
|
|
|
|
'add_php_getitem',
|
|
|
|
'php_getitem',
|
|
|
|
'add_php_getitems',
|
|
|
|
'php_getitems',
|
2016-09-03 21:44:47 +00:00
|
|
|
'add_php_getitems_after_all',
|
|
|
|
'php_getitems_after_all',
|
2016-01-30 20:28:43 +00:00
|
|
|
'add_php_getlistquery',
|
|
|
|
'php_getlistquery',
|
2018-07-06 13:46:30 +00:00
|
|
|
'add_php_getform',
|
|
|
|
'php_getform',
|
2017-09-13 00:37:43 +00:00
|
|
|
'add_php_before_save',
|
|
|
|
'php_before_save',
|
2016-01-30 20:28:43 +00:00
|
|
|
'add_php_save',
|
|
|
|
'php_save',
|
|
|
|
'add_php_postsavehook',
|
|
|
|
'php_postsavehook',
|
2018-08-14 08:25:46 +00:00
|
|
|
'add_php_allowadd',
|
|
|
|
'php_allowadd',
|
2016-01-30 20:28:43 +00:00
|
|
|
'add_php_allowedit',
|
|
|
|
'php_allowedit',
|
2019-06-12 20:06:19 +00:00
|
|
|
'add_php_before_cancel',
|
|
|
|
'php_before_cancel',
|
2019-06-12 20:36:05 +00:00
|
|
|
'add_php_after_cancel',
|
|
|
|
'php_after_cancel',
|
2016-01-30 20:28:43 +00:00
|
|
|
'add_php_batchcopy',
|
|
|
|
'php_batchcopy',
|
|
|
|
'add_php_batchmove',
|
|
|
|
'php_batchmove',
|
2016-09-07 21:20:58 +00:00
|
|
|
'add_php_before_publish',
|
|
|
|
'php_before_publish',
|
|
|
|
'add_php_after_publish',
|
|
|
|
'php_after_publish',
|
2016-01-30 20:28:43 +00:00
|
|
|
'add_php_before_delete',
|
|
|
|
'php_before_delete',
|
|
|
|
'add_php_after_delete',
|
2016-04-22 21:32:02 +00:00
|
|
|
'php_after_delete',
|
|
|
|
'add_php_document',
|
2021-03-05 03:08:47 +00:00
|
|
|
'php_document'
|
|
|
|
);
|
|
|
|
|
2024-03-02 20:10:30 +00:00
|
|
|
$hiddenFields = $displayData->get('hidden_fields') ?: [];
|
2021-03-05 03:08:47 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
<?php if ($fields && count((array) $fields)) :?>
|
|
|
|
<div class="form-vertical">
|
|
|
|
<?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; ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|