| Current Path : /home/megadansyp/www/administrator/components/com_eventgallery/views/order/tmpl/ |
| Current File : /home/megadansyp/www/administrator/components/com_eventgallery/views/order/tmpl/default.php |
<?php
/**
* @package Sven.Bluege
* @subpackage com_eventgallery
*
* @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die('Restricted access');
?>
<div class="card">
<h2 class="card-header"><?php echo JText::_('COM_EVENTGALLERY_ORDER_STATUS')?></h2>
<div class="card-body">
<form action="<?php echo JRoute::_('index.php?option=com_eventgallery&layout=edit&id='.$this->item->getId()); ?>" method="POST" name="adminForm" id="adminForm">
<div class="span12 row">
<p>
<?php echo JText::sprintf('COM_EVENTGALLERY_DATABASE_VERSION_LABEL' , $this->form->getField('version')->value, $this->item->getVersion())?>;
</p>
<fieldset class="adminform form-horizontal">
<?php foreach ($this->form->getFieldset() as $field): ?>
<div class="control-group">
<?php if (!$field->hidden): ?>
<div class="control-label"><?php echo $field->label; ?></div>
<?php endif; ?>
<div class="controls">
<?php echo $field->input; ?>
</div>
</div>
<?php endforeach; ?>
</fieldset>
<hr>
</div>
<h3><?php echo JText::_('COM_EVENTGALLERY_ORDER_DATA')?></h3>
<div class="span12 row">
<div class="span4 col-4">
<h3><?php echo JText::_('COM_EVENTGALLERY_ORDER_GENERAL_INFORMATION')?></h3>
<?php $this->lineitemcontainer = $this->item; echo $this->loadTemplate('basicinformation');?>
<p>
<strong><?php echo JText::_('COM_EVENTGALLERY_ORDER_CREATIONDATE'); ?></strong><br>
<?php echo $this->item->getCreationDate(); ?>
</p>
<p>
<strong><?php echo JText::_('COM_EVENTGALLERY_ORDER_MODIFICATIONDATE'); ?></strong><br>
<?php echo $this->item->getModificationDate(); ?>
</p>
</div>
<?php IF($this->item->getBillingAddress() != null):?>
<div class="span4 col-4">
<h3><?php echo JText::_('COM_EVENTGALLERY_ORDER_ADDRESS_BILLING')?></h3>
<div class="billingaddress">
<?php $this->address = $this->item->getBillingAddress(); echo $this->loadTemplate('address');?>
</div>
</div>
<?php ENDIF ?>
<?php IF($this->item->getShippingAddress() != null):?>
<div class="span4 col-4">
<h3><?php echo JText::_('COM_EVENTGALLERY_ORDER_ADDRESS_SHIPPING')?></h3>
<div class="shippingaddress">
<?php $this->address = $this->item->getShippingAddress(); echo $this->loadTemplate('address');?>
</div>
</div>
<?php ENDIF ?>
</div>
<div class="span12">
<hr>
<?php $this->lineitemcontainer = $this->item; echo $this->loadTemplate('summary');?>
<hr>
<?php $this->lineitemcontainer = $this->item; echo $this->loadTemplate('total');?>
<hr>
</div>
<?php echo JHtml::_('form.token'); ?>
<input type="hidden" name="option" value="com_eventgallery" />
<input type="hidden" name="id" value="<?php echo $this->item->getId(); ?>" />
<input type="hidden" name="task" value="" />
<h3><?php echo JText::_('COM_EVENTGALLERY_ORDER_RAW_DATA')?></h3>
<pre class="span12">
<?php echo $this->loadTemplate('rawoutput'); ?>
</pre>
<h3><?php echo JText::_('COM_EVENTGALLERY_ORDER_SERVICELINEITEM_RAW_DATA')?></h3>
<div class="span12">
<?php echo $this->loadTemplate('servicelineitemdata'); ?>
</div>
</form>
</div>
</div>