mirror of
https://github.com/moodle/moodle.git
synced 2025-02-08 09:02:07 +01:00
244 lines
11 KiB
PHP
Executable File
244 lines
11 KiB
PHP
Executable File
<?php
|
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
|
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
|
}
|
|
|
|
|
|
if (!isset($frm->enrol_cost)) $frm->enrol_cost = '5';
|
|
if (!isset($frm->enrol_currency)) $frm->enrol_currency = 'USD';
|
|
if (!isset($frm->enrol_mailstudents)) $frm->enrol_mailstudents = '';
|
|
if (!isset($frm->enrol_mailteachers)) $frm->enrol_mailteachers = '';
|
|
if (!isset($frm->enrol_mailadmins)) $frm->enrol_mailadmins = '';
|
|
|
|
if (!isset($frm->an_login)) $frm->an_login = '';
|
|
if (!isset($frm->an_tran_key)) $frm->an_tran_key = '';
|
|
if (!isset($frm->an_password)) $frm->an_password = '';
|
|
if (!isset($frm->delete_current)) $frm->delete_current = '';
|
|
if (!isset($frm->an_referer)) $frm->an_referer = 'http://';
|
|
if (!isset($frm->an_avs)) $frm->an_avs = '';
|
|
if (!isset($frm->an_authcode)) $frm->an_authcode = '';
|
|
if (!isset($frm->an_test)) $frm->an_test = '';
|
|
if (!isset($frm->an_review)) $frm->an_review = '';
|
|
if (!isset($frm->an_capture_day)) $frm->an_capture_day = '5';
|
|
if (!isset($frm->an_emailexpired)) $frm->an_emailexpired = '2';
|
|
if (!isset($frm->an_emailexpiredteacher)) $frm->an_emailexpiredteacher = '';
|
|
if (!isset($frm->an_sorttype)) $frm->an_sorttype = 'ttl';
|
|
|
|
if (isset($CFG->an_cutoff)) {
|
|
$cutoff = intval($CFG->an_cutoff);
|
|
$mins = $cutoff % 60; $hrs = ($cutoff - $mins) / 60;
|
|
$frm->an_cutoff_hour = $hrs; $frm->an_cutoff_min = $mins;
|
|
}
|
|
if (!isset($frm->an_cutoff_hour)) {
|
|
$timezone = round(get_user_timezone_offset(), 1);
|
|
$frm->an_cutoff_hour = intval($timezone);
|
|
$frm->an_cutoff_min = (intval(round($timezone)) != intval($timezone)) ? 35 : 5;
|
|
}
|
|
|
|
if (!isset($frm->acceptmethods)) {
|
|
$frm->acceptmethods = get_list_of_payment_methods();
|
|
$CFG->an_acceptmethods = implode(',', $frm->acceptmethods);
|
|
}
|
|
|
|
if (!isset($frm->acceptccs)) {
|
|
$frm->acceptccs = array_keys(get_list_of_creditcards());
|
|
$CFG->an_acceptccs = implode(',', $frm->acceptccs);
|
|
}
|
|
|
|
if (!isset($frm->acceptechecktypes)) {
|
|
$frm->acceptechecktypes = get_list_of_bank_account_types();
|
|
$CFG->an_acceptechecktypes = implode(',', $frm->acceptechecktypes);
|
|
}
|
|
|
|
?>
|
|
|
|
<table cellspacing="0" cellpadding="5" border="0" class="boxaligncenter">
|
|
|
|
<tr valign="top">
|
|
<td colspan="2" align="right"><a href="../enrol/authorize/index.php"><?php print_string("paymentmanagement", "enrol_authorize") ?></a></td>
|
|
</tr>
|
|
|
|
<tr valign="top"><td colspan="2"><h4><?php print_string("adminauthorizewide", "enrol_authorize") ?></h4></td></tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">enrol_cost:</td>
|
|
<td><input type="text" size="5" name="enrol_cost" value="<?php p($frm->enrol_cost) ?>" /><br />
|
|
<?php print_string("costdefault") ?>. <?php print_string("costdefaultdesc", "enrol_authorize") ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">enrol_currency:</td>
|
|
<td><?php
|
|
echo html_writer::select(get_string_manager()->get_list_of_currencies(), "enrol_currency", $frm->enrol_currency, false);
|
|
?>
|
|
<br />
|
|
<?php print_string("currency") ?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top"><td colspan="2"><h4><?php print_string("adminauthorizesettings", "enrol_authorize") ?></h4></td></tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"> </td>
|
|
<td><?php print_string("logininfo", "enrol_authorize") ?><br />
|
|
<?php if (!optional_param('verifyaccount', 0, PARAM_INT) && isset($mconfig->an_login) && (isset($mconfig->an_tran_key) || isset($mconfig->an_password))) { ?>
|
|
<br /><a href="enrol_config.php?enrol=authorize&verifyaccount=1"><b><?php print_string("verifyaccount", "enrol_authorize") ?></b></a><br />
|
|
<?php } ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_login:<br /><?php echo (isset($mconfig->an_login)) ? '<span style="color:green">'.get_string('dataentered', 'enrol_authorize').'</span>' : ''; ?></td>
|
|
<td><?php print_string("anlogin", "enrol_authorize") ?><br /><input type="text" name="an_login" size="26" value="" /><sup>*</sup></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_tran_key:<br /><?php echo (isset($mconfig->an_tran_key)) ? '<span style="color:green">'.get_string('dataentered', 'enrol_authorize').'</span>' : ''; ?></td>
|
|
<td><?php print_string("antrankey", "enrol_authorize") ?><br /><input type="text" name="an_tran_key" size="26" value="" /><sup>#1</sup></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_password:<br /><?php echo (isset($mconfig->an_password)) ? '<span style="color:green">'.get_string('dataentered', 'enrol_authorize').'</span>' : ''; ?></td>
|
|
<td><?php print_string("anpassword", "enrol_authorize") ?><br /><input type="text" name="an_password" size="26" value="" /><sup>#2</sup></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">delete_current:</td>
|
|
<td><?php echo html_writer::checkbox('delete_current', '1', !empty($frm->delete_current), get_string("deletecheck", "moodle", get_string('oldpassword')));?> <br />
|
|
<hr /></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_referer:</td>
|
|
<td><input type="text" name="an_referer" size="35" value="<?php p($frm->an_referer) ?>" /><br />
|
|
<?php print_string("anreferer", "enrol_authorize") ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_cutoff:</td>
|
|
<td><?php
|
|
$curtime = make_timestamp(2000,1,1,$frm->an_cutoff_hour,$frm->an_cutoff_min);
|
|
$hourselector = html_writer::select_time('hours', 'an_cutoff_hour', $curtime);
|
|
$minselector = html_writer::select_time('minutes', 'an_cutoff_min', $curtime);
|
|
echo $hourselector . $minselector;
|
|
?><br />
|
|
<?php print_string("cutofftime", "enrol_authorize") ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_avs:</td>
|
|
<td><?php echo html_writer::checkbox('an_avs', '1', !empty($frm->an_avs), get_string("adminavs", "enrol_authorize")); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_authcode:</td>
|
|
<td><?php echo html_writer::checkbox('an_authcode', '1', !empty($frm->an_authcode), get_string("adminauthcode", "enrol_authorize")); ?>
|
|
<?php echo $OUTPUT->old_help_icon('authorize/authcode', 'authcode', 'enrol'); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_test:</td>
|
|
<td><?php echo html_writer::checkbox('an_test', '1', !empty($frm->an_test), get_string("antestmode", "enrol_authorize")); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">accepts:</td>
|
|
<td><?php print_string("adminaccepts", "enrol_authorize") ?><br /><br /><?php
|
|
$paymentmethodsenabled = get_list_of_payment_methods();
|
|
$allpaymentmethods = get_list_of_payment_methods(true);
|
|
foreach ($allpaymentmethods as $key) {
|
|
if ($key == AN_METHOD_CC) {
|
|
echo html_writer::checkbox('acceptmethods[]', AN_METHOD_CC, in_array(AN_METHOD_CC, $paymentmethodsenabled), get_string('method'.AN_METHOD_CC,'enrol_authorize'));
|
|
echo("<ul>"); // blockquote breaks <span> and <br> tags
|
|
$acceptedccs = array_keys(get_list_of_creditcards());
|
|
$allccs = get_list_of_creditcards(true);
|
|
foreach ($allccs as $key => $val) {
|
|
echo "<li>";
|
|
echo html_writer::checkbox('acceptccs[]', $key, in_array($key, $acceptedccs), $val);
|
|
echo "</li>";
|
|
}
|
|
echo("</ul>");
|
|
}
|
|
elseif ($key == AN_METHOD_ECHECK) {
|
|
echo html_writer::checkbox('acceptmethods[]', AN_METHOD_ECHECK, in_array(AN_METHOD_ECHECK, $paymentmethodsenabled), get_string('method'.AN_METHOD_ECHECK, 'enrol_authorize'));
|
|
echo("<ul>"); // blockquote breaks <span> and <br> tags
|
|
$echecktypesenabled = get_list_of_bank_account_types();
|
|
$allechecktypes = get_list_of_bank_account_types(true);
|
|
foreach ($allechecktypes as $key) {
|
|
echo "<li>";
|
|
echo html_writer::checkbox('acceptechecktypes[]', $key, in_array($key, $echecktypesenabled), get_string('echeck'.strtolower($key)));
|
|
echo "</li>";
|
|
}
|
|
echo("</ul>");
|
|
}
|
|
}
|
|
?><br /></td>
|
|
</tr>
|
|
|
|
<tr valign="top"><td colspan="2"><h4><?php print_string("adminauthorizeccapture", "enrol_authorize") ?>
|
|
<?php echo $OUTPUT->old_help_icon('authorize/orderreview', 'orderreview', 'enrol'); ?>
|
|
</h4></td></tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_review:</td>
|
|
<td><?php echo html_writer::checkbox('an_review', '1', !empty($frm->an_review), get_string("adminreview", "enrol_authorize")); ?>
|
|
<?php echo $OUTPUT->old_help_icon('authorize/review', get_string('adminhelpreviewtitle', 'enrol_authorize'), 'enrol'); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_capture_day:</td>
|
|
<td><input type="text" name="an_capture_day" size="2" maxlength="2" value="<?php p($frm->an_capture_day) ?>" />
|
|
<?php echo $OUTPUT->old_help_icon('authorize/captureday', get_string('adminhelpcapturetitle', 'enrol_authorize'), 'enrol'); ?><br />
|
|
<?php print_string("reviewday", "enrol_authorize", $frm->an_capture_day) ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top"><td colspan="2"><h4><?php print_string("adminauthorizeemail", "enrol_authorize") ?></h4></td></tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_emailexpired:</td>
|
|
<td><input type="text" name="an_emailexpired" size="1" maxlength="1" value="<?php p($frm->an_emailexpired) ?>" /><br />
|
|
<?php print_string("adminemailexpired", "enrol_authorize", $frm->an_emailexpired) ?><br />
|
|
<?php print_string("adminemailexpsetting", "enrol_authorize") ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_emailexpiredteacher:</td>
|
|
<td><?php echo html_writer::checkbox('an_emailexpiredteacher', '1', !empty($frm->an_emailexpiredteacher), get_string("adminemailexpiredteacher", "enrol_authorize")); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">an_sorttype:</td>
|
|
<td><?php
|
|
$sorts = array('ttl' => get_string('adminemailexpiredsortsum', 'enrol_authorize'),
|
|
'cnt' => get_string('adminemailexpiredsortcount', 'enrol_authorize'));
|
|
echo html_writer::select($sorts, "an_sorttype", $frm->an_sorttype, false);
|
|
?>
|
|
<br />
|
|
<?php print_string("adminemailexpiredsort", "enrol_authorize") ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">enrol_mailstudents:</td>
|
|
<td><?php echo html_writer::checkbox('enrol_mailstudents', '1', !empty($frm->enrol_mailstudents), get_string("mailstudents")); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">enrol_mailteachers:</td>
|
|
<td><?php echo html_writer::checkbox('enrol_mailteachers', '1', !empty($frm->enrol_mailteachers), get_string("mailteachers")); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">enrol_mailadmins:</td>
|
|
<td><?php echo html_writer::checkbox('enrol_mailadmins', '1', !empty($frm->enrol_mailadmins), get_string("mailadmins")); ?><br />
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|