1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/resources/views/accounts/account_gateway.blade.php

184 lines
6.7 KiB
PHP
Raw Normal View History

2015-10-14 16:15:39 +02:00
@extends('header')
2015-03-16 22:45:25 +01:00
2016-01-18 10:13:39 +01:00
@section('content')
@parent
2015-03-16 22:45:25 +01:00
2015-10-14 16:15:39 +02:00
@include('accounts.nav', ['selected' => ACCOUNT_PAYMENTS])
2016-01-18 10:13:39 +01:00
{!! Former::open($url)->method($method)->rule()->addClass('warn-on-exit') !!}
2015-04-01 21:57:02 +02:00
{!! Former::populate($account) !!}
2015-03-16 22:45:25 +01:00
2015-04-20 16:34:23 +02:00
<div class="panel panel-default">
2015-04-22 21:21:04 +02:00
<div class="panel-heading">
<h3 class="panel-title">{!! trans($title) !!}</h3>
</div>
2015-10-14 19:18:19 +02:00
<div class="panel-body form-padding-right">
2016-01-18 10:13:39 +01:00
2015-03-16 22:45:25 +01:00
@if ($accountGateway)
2015-04-01 21:57:02 +02:00
{!! Former::populateField('gateway_id', $accountGateway->gateway_id) !!}
2015-07-12 21:43:45 +02:00
{!! Former::populateField('payment_type_id', $paymentTypeId) !!}
{!! Former::populateField('recommendedGateway_id', $accountGateway->gateway_id) !!}
2015-11-29 21:13:50 +01:00
{!! Former::populateField('show_address', intval($accountGateway->show_address)) !!}
2015-07-12 21:43:45 +02:00
{!! Former::populateField('update_address', intval($accountGateway->update_address)) !!}
2015-11-29 21:13:50 +01:00
{!! Former::populateField('publishable_key', $accountGateway->getPublishableStripeKey() ? str_repeat('*', strlen($accountGateway->getPublishableStripeKey())) : '') !!}
2015-07-12 21:43:45 +02:00
2015-03-16 22:45:25 +01:00
@if ($config)
@foreach ($accountGateway->fields as $field => $junk)
2015-05-31 14:37:29 +02:00
@if (in_array($field, $hiddenFields))
2015-03-16 22:45:25 +01:00
{{-- do nothing --}}
@elseif (isset($config->$field))
{{ Former::populateField($accountGateway->gateway_id.'_'.$field, $config->$field) }}
@endif
@endforeach
@endif
2015-04-16 19:12:56 +02:00
@else
2015-04-17 13:57:17 +02:00
{!! Former::populateField('gateway_id', GATEWAY_STRIPE) !!}
2016-01-18 10:13:39 +01:00
{!! Former::populateField('show_address', 1) !!}
2015-07-12 21:43:45 +02:00
{!! Former::populateField('update_address', 1) !!}
2015-03-16 22:45:25 +01:00
@endif
2016-01-18 10:13:39 +01:00
2015-04-15 18:35:41 +02:00
{!! Former::select('payment_type_id')
->options($paymentTypes)
->addGroupClass('payment-type-option')
->onchange('setPaymentType()') !!}
2015-04-16 19:12:56 +02:00
{!! Former::select('gateway_id')
2015-03-16 22:45:25 +01:00
->dataClass('gateway-dropdown')
2015-04-15 18:35:41 +02:00
->addGroupClass('gateway-option')
->fromQuery($selectGateways, 'name', 'id')
->onchange('setFieldsShown()') !!}
2015-03-16 22:45:25 +01:00
@foreach ($gateways as $gateway)
<div id="gateway_{{ $gateway->id }}_div" class='gateway-fields' style="display: none">
@foreach ($gateway->fields as $field => $details)
2015-12-24 12:17:11 +01:00
@if ($details && !$accountGateway)
{!! Former::populateField($gateway->id.'_'.$field, $details) !!}
@endif
2015-05-31 14:37:29 +02:00
@if (in_array($field, $hiddenFields))
2015-03-16 22:45:25 +01:00
{{-- do nothing --}}
2016-01-18 10:13:39 +01:00
@elseif ($gateway->id == GATEWAY_DWOLLA && ($field == 'key' || $field == 'secret')
2015-06-01 15:06:18 +02:00
&& isset($_ENV['DWOLLA_KEY']) && isset($_ENV['DWOLLA_SECRET']))
2015-05-31 14:37:29 +02:00
{{-- do nothing --}}
2016-01-18 10:13:39 +01:00
@elseif ($field == 'testMode' || $field == 'developerMode' || $field == 'sandbox')
2015-04-16 19:12:56 +02:00
{!! Former::checkbox($gateway->id.'_'.$field)->label(Utils::toSpaceCase($field))->text('Enable')->value('true') !!}
2016-01-18 10:13:39 +01:00
@elseif ($field == 'username' || $field == 'password')
2015-04-01 21:57:02 +02:00
{!! Former::text($gateway->id.'_'.$field)->label('API '. ucfirst(Utils::toSpaceCase($field))) !!}
2015-03-16 22:45:25 +01:00
@else
2016-01-18 10:13:39 +01:00
{!! Former::text($gateway->id.'_'.$field)->label($gateway->id == GATEWAY_STRIPE ? trans('texts.secret_key') : Utils::toSpaceCase($field)) !!}
2015-03-16 22:45:25 +01:00
@endif
@endforeach
@if ($gateway->getHelp())
<div class="form-group">
<label class="control-label col-lg-4 col-sm-4"></label>
<div class="col-lg-8 col-sm-8 help-block">
2015-04-06 13:46:02 +02:00
{!! $gateway->getHelp() !!}
2015-03-16 22:45:25 +01:00
</div>
2016-01-18 10:13:39 +01:00
</div>
2015-03-16 22:45:25 +01:00
@endif
@if ($gateway->id == GATEWAY_STRIPE)
2015-11-29 21:13:50 +01:00
{!! Former::text('publishable_key') !!}
2015-09-25 11:57:40 +02:00
{!! Former::select('token_billing_type_id')
->options($tokenBillingOptions)
->help(trans('texts.token_billing_help')) !!}
2015-03-16 22:45:25 +01:00
@endif
</div>
2016-01-18 10:13:39 +01:00
2015-03-16 22:45:25 +01:00
@endforeach
2015-07-12 21:43:45 +02:00
{!! Former::checkbox('show_address')
->label(trans('texts.billing_address'))
->text(trans('texts.show_address_help'))
->addGroupClass('gateway-option') !!}
{!! Former::checkbox('update_address')
->label(' ')
->text(trans('texts.update_address_help'))
->addGroupClass('gateway-option') !!}
2015-04-15 18:35:41 +02:00
{!! Former::checkboxes('creditCardTypes[]')
->label('Accepted Credit Cards')
->checkboxes($creditCardTypes)
->class('creditcard-types')
->addGroupClass('gateway-option')
2015-04-06 13:46:02 +02:00
!!}
2015-04-20 16:34:23 +02:00
</div>
</div>
2016-01-18 10:13:39 +01:00
2015-03-16 22:45:25 +01:00
<p/>&nbsp;<p/>
2016-01-18 10:13:39 +01:00
{!! Former::actions(
2015-10-14 16:15:39 +02:00
$countGateways > 0 ? Button::normal(trans('texts.cancel'))->large()->asLinkTo(URL::to('/settings/online_payments'))->appendIcon(Icon::create('remove-circle')) : false,
2015-06-04 22:53:58 +02:00
Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk'))) !!}
2015-04-01 21:57:02 +02:00
{!! Former::close() !!}
2015-03-16 22:45:25 +01:00
<script type="text/javascript">
2015-04-15 18:35:41 +02:00
function setPaymentType() {
var val = $('#payment_type_id').val();
if (val == 'PAYMENT_TYPE_CREDIT_CARD') {
$('.gateway-option').show();
setFieldsShown();
} else {
$('.gateway-option').hide();
if (val == 'PAYMENT_TYPE_PAYPAL') {
setFieldsShown({{ GATEWAY_PAYPAL_EXPRESS }});
2015-05-31 14:37:29 +02:00
} else if (val == 'PAYMENT_TYPE_DWOLLA') {
setFieldsShown({{ GATEWAY_DWOLLA }});
2016-01-18 10:13:39 +01:00
} else if (val == 'PAYMENT_TYPE_DIRECT_DEBIT') {
setFieldsShown({{ GATEWAY_GOCARDLESS }});
2015-04-15 18:35:41 +02:00
} else {
setFieldsShown({{ GATEWAY_BITPAY }});
}
2016-01-18 10:13:39 +01:00
}
2015-04-15 18:35:41 +02:00
}
function setFieldsShown(val) {
if (!val) {
val = $('#gateway_id').val();
}
2015-03-16 22:45:25 +01:00
$('.gateway-fields').hide();
$('#gateway_' + val + '_div').show();
}
function gatewayLink(url) {
var host = new URL(url).hostname;
if (host) {
openUrl(url, '/affiliate/' + host);
}
}
2015-07-12 21:43:45 +02:00
function enableUpdateAddress(event) {
var disabled = !$('#show_address').is(':checked');
$('#update_address').prop('disabled', disabled);
$('label[for=update_address]').css('color', disabled ? '#888' : '#000');
if (disabled) {
$('#update_address').prop('checked', false);
2016-01-18 10:13:39 +01:00
} else if (event) {
2015-07-12 21:43:45 +02:00
$('#update_address').prop('checked', true);
}
}
2015-04-15 18:35:41 +02:00
$(function() {
setPaymentType();
@if ($accountGateway)
$('.payment-type-option').hide();
@endif
2015-07-12 21:43:45 +02:00
$('#show_address').change(enableUpdateAddress);
enableUpdateAddress();
2015-04-15 18:35:41 +02:00
})
2015-03-16 22:45:25 +01:00
</script>
@stop