1 | <?php |
||
11 | class Abn extends Engine |
||
12 | { |
||
13 | /** |
||
14 | * returns the name of the bank. |
||
15 | * |
||
16 | * @return string |
||
17 | */ |
||
18 | protected function parseStatementBank() |
||
22 | |||
23 | /** |
||
24 | * Overloaded: ABN Amro shows the GIRO |
||
25 | * includes fix for 'for GIRO 1234567 TEST 201009063689 CLIEOP 21-9' and translates that into 1234567. |
||
26 | * |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | protected function parseTransactionAccount() |
||
50 | |||
51 | /** |
||
52 | * Overloaded: ABN Amro shows the GIRO and fixes newlines etc. |
||
53 | * |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | protected function parseTransactionAccountName() |
||
78 | |||
79 | /** |
||
80 | * Overloaded: ABNAMRO uses the :61: date-part of the field for two values: |
||
81 | * Valuetimestamp (YYMMDD) and Entry date (book date) (MMDD). |
||
82 | * |
||
83 | * @return int |
||
84 | */ |
||
85 | protected function parseTransactionEntryTimestamp() |
||
103 | |||
104 | /** |
||
105 | * Overloaded: Is applicable if first line has ABNA. |
||
106 | * |
||
107 | * {@inheritdoc} |
||
108 | */ |
||
109 | public static function isApplicable($string) |
||
115 | } |
||
116 |