2016-11-27 04:20:48 +00:00
|
|
|
<?php
|
2018-03-19 22:24:44 +00:00
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
2016-11-27 04:20:48 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
@version 2.0.x
|
2016-11-27 04:20:48 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
2016-12-05 07:40:19 +00:00
|
|
|
@subpackage build_option_fullwidth.php
|
2016-11-27 04:20:48 +00:00
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
2020-11-30 16:57:29 +00:00
|
|
|
|
2016-11-27 04:20:48 +00:00
|
|
|
A sermon distributor that links to Dropbox.
|
2020-11-30 16:57:29 +00:00
|
|
|
|
2018-03-19 22:24:44 +00:00
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
2016-11-27 04:20:48 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2019-08-14 01:58:42 +00:00
|
|
|
// get the form
|
2016-11-27 04:20:48 +00:00
|
|
|
$form = $displayData->getForm();
|
|
|
|
|
2019-08-14 01:58:42 +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-12-05 07:40:19 +00:00
|
|
|
'build',
|
|
|
|
'note_manual_externalsource',
|
|
|
|
'note_auto_externalsource'
|
2016-11-27 04:20:48 +00:00
|
|
|
);
|
|
|
|
|
2019-04-04 11:52:38 +00:00
|
|
|
$hiddenFields = $displayData->get('hidden_fields') ?: array();
|
|
|
|
|
2016-11-27 04:20:48 +00:00
|
|
|
?>
|
2019-08-14 01:58:42 +00:00
|
|
|
<?php if ($fields && count((array) $fields)) :?>
|
2016-11-27 04:20:48 +00:00
|
|
|
<div class="form-vertical">
|
2019-04-04 11:52:38 +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; ?>
|
2016-11-27 04:20:48 +00:00
|
|
|
</div>
|
2019-08-14 01:58:42 +00:00
|
|
|
<?php endif; ?>
|