28 lines
960 B
Perl
28 lines
960 B
Perl
#!perl
|
|
|
|
sub hook_deposit_methods($class, $message, $hash, @) {
|
|
$$message = <<"END";
|
|
|
|
Please type one of the following:
|
|
|
|
'iban': Deprecated. Abort and go to https://deposit.bitlair.nl instead
|
|
'cash': Cash in the cash box
|
|
'reimburse': Reimbursement of expenses agreed upon in advance
|
|
Note #1: we require an invoice or receipt with this exact amount!
|
|
Note #2: please do not use this plugin for amounts >20 EUR
|
|
'other': Provide a manual description
|
|
END
|
|
|
|
%$hash = (
|
|
iban => { description => "Deposit (IBAN transfer)" },
|
|
cash => { description => "Deposit (Cash)" },
|
|
other => { description => "Deposit (%s)", prompts => [ "Description" ] },
|
|
reimburse => {
|
|
description => "Reimbursement (%s, approval: %s)",
|
|
prompts => [
|
|
"Please provide a short description",
|
|
"Which board member gave approval?",
|
|
],
|
|
},
|
|
);
|
|
}
|