Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_invoices/views/payments/tmpl/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_invoices/views/payments/tmpl/default_editmodal.php

<?php
/*------------------------------------------------------------------------
# com_finances - Expense Manager for Joomla
# ------------------------------------------------------------------------
# author				Germinal Camps
# copyright 			Copyright (C) 2015 joomlathat.com. All Rights Reserved.
# @license				http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: 			http://www.joomlathat.com
# Technical Support:	Forum - http://www.joomlathat.com/support
-------------------------------------------------------------------------*/

//no direct access
defined('_JEXEC') or die('Restricted access.');
?>

<!-- Modal -->
<div class="modal fade invoice-manager"
id="editModal" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel">
  <div class="modal-dialog modal-lg"
role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close"
data-dismiss="modal" aria-label="<?php echo
JText::_('CLOSE'); ?>"><span
aria-hidden="true">&times;</span></button>
        <h4 class="modal-title"
id="myModalLabel"><?php echo
JText::_('EDIT_PAYMENT');?></h4>
      </div>
      <div class="modal-body">
        <paymentform  :payment="current_payment"
                      >
        </paymentform>
      </div>
      <div class="modal-footer">
        <button type="button"
                class="btn btn-link btn_no_underline pull-left"
                id="deletebutton_modal"
                data-loading-text="<?php echo
JText::_('DELETING_PAYMENT'); ?>"
                onclick="delete_payment(payment_id,
false)"><span class="dlt-item"><?php echo
JText::_('DELETE_PAYMENT');?></span></button>
        <button type="button"
                class="btn btn-primary pull-right"
                id="savebutton_modal"
                data-loading-text="<?php echo
JText::_('SAVING'); ?>"
                onclick="save_payment();"><?php echo
JText::_('SAVE_PAYMENT'); ?></button>
        <button type="button"
                class="btn btn-default pull-right"
                id="closebutton_modal"
                data-dismiss="modal"
                aria-hidden="true"><?php echo
JText::_('CLOSE'); ?></button>
      </div>
    </div>
  </div>
</div>