1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 10:21:35 +02:00
invoiceninja/app/views/accounts/settings.blade.php

62 lines
1.6 KiB
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
@extends('accounts.nav')
@section('content')
@parent
{{ Former::open()->addClass('col-md-9 col-md-offset-1') }}
{{ Former::legend('Payment Gateway') }}
2013-11-26 13:45:07 +01:00
@if ($accountGateway)
{{ Former::populateField('gateway_id', $accountGateway->gateway_id) }}
@foreach ($accountGateway->fields as $field => $junk)
{{ Former::populateField($accountGateway->gateway_id.'_'.$field, $config->$field) }}
@endforeach
@endif
2013-11-26 13:45:07 +01:00
{{ Former::select('gateway_id')->label('Provider')->addOption('', '')->fromQuery($gateways, 'name', 'id')->onchange('setFieldsShown()'); }}
@foreach ($gateways as $gateway)
2013-11-26 13:45:07 +01:00
<div id="gateway_{{ $gateway->id }}_div" style="display: none">
@foreach ($gateway->fields as $field => $details)
@if ($field == 'solutionType' || $field == 'landingPage')
{{-- do nothing --}}
@elseif ($field == 'testMode' || $field == 'developerMode')
{{ Former::checkbox($gateway->id.'_'.$field)->label(toSpaceCase($field))->text('Enable') }}
@else
{{ Former::text($gateway->id.'_'.$field)->label(toSpaceCase($field)) }}
2013-11-26 13:45:07 +01:00
@endif
2013-11-26 13:45:07 +01:00
@endforeach
</div>
2013-11-26 13:45:07 +01:00
@endforeach
2013-11-26 13:45:07 +01:00
{{ Former::actions( Button::lg_primary_submit('Save') ) }}
{{ Former::close() }}
<script type="text/javascript">
var gateways = {{ $gateways }};
function setFieldsShown() {
var val = $('#gateway_id').val();
for (var i=0; i<gateways.length; i++) {
var gateway = gateways[i];
if (val == gateway.id) {
$('#gateway_' + gateway.id + '_div').show();
2013-11-26 13:45:07 +01:00
} else {
$('#gateway_' + gateway.id + '_div').hide();
}
2013-11-26 13:45:07 +01:00
}
}
2013-11-26 13:45:07 +01:00
$(function() {
setFieldsShown();
2013-11-26 13:45:07 +01:00
});
</script>
@stop