Members-Manager/admin/layouts/type/publlshing.php

49 lines
1.6 KiB
PHP
Raw Normal View History

2018-07-11 00:35:10 +00:00
<?php
/**
2018-07-25 03:00:13 +00:00
* @package Joomla.Members.Manager
2018-07-11 00:35:10 +00:00
*
2018-12-27 10:38:37 +00:00
* @created 6th July, 2018
2018-07-11 00:35:10 +00:00
* @author Llewellyn van der Merwe <https://www.joomlacomponentbuilder.com/>
2018-07-25 03:00:13 +00:00
* @github Joomla Members Manager <https://github.com/vdm-io/Joomla-Members-Manager>
2018-07-11 00:35:10 +00:00
* @copyright Copyright (C) 2015. All Rights Reserved
* @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
*/
2019-08-14 02:14:40 +00:00
2018-07-11 00:35:10 +00:00
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
2019-08-14 02:14:40 +00:00
// get the form
2018-07-11 00:35:10 +00:00
$form = $displayData->getForm();
2019-08-14 02:14:40 +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(
2018-07-11 00:35:10 +00:00
'published',
'ordering',
'access',
'version',
'hits',
'id'
);
$hiddenFields = $displayData->get('hidden_fields') ?: array();
2019-04-04 11:58:49 +00:00
?>
2019-08-14 02:14:40 +00:00
<?php if ($fields && count((array) $fields)) :?>
2019-04-04 11:58:49 +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-08-14 02:14:40 +00:00
<?php endif; ?>