forked from joomla/Members-Manager
35 lines
972 B
PHP
35 lines
972 B
PHP
<?php
|
|
/**
|
|
* @package Joomla.Component.Builder
|
|
*
|
|
* @created 6th September, 2015
|
|
* @author Llewellyn van der Merwe <https://www.joomlacomponentbuilder.com/>
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
* @copyright Copyright (C) 2015. All Rights Reserved
|
|
* @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
$form = $displayData->getForm();
|
|
|
|
$fields = $displayData->get('fields') ?: array(
|
|
'profile_image_uploader'
|
|
);
|
|
|
|
?>
|
|
<div class="form-vertical">
|
|
<?php foreach($fields as $field): ?>
|
|
<div class="control-group">
|
|
<div class="control-label">
|
|
<?php echo $form->getLabel($field); ?>
|
|
</div>
|
|
<div class="controls">
|
|
<?php echo $form->getInput($field); ?>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|