- Mehrfach-Upload von PDF-Kontoauszügen mit automatischer Metadaten-Erkennung - Dashboard mit Übersichts-Widgets (letzte Buchungen und Kontoauszüge) - Menü-Integration unter "Banken und Kasse" statt eigenem Top-Menü - Erinnerungsfunktion bei veralteten Kontoauszügen (konfigurierbar) - Verknüpfung von Buchungen mit PDF-Kontoauszügen - Auszugsnummer wird automatisch aus dem Zeitraum abgeleitet (Monat/Jahr) - Jahrfilter zeigt nur Jahre mit vorhandenen Kontoauszügen - Modul-Icon auf fa-money-check-alt gesetzt - README und ChangeLog aktualisiert - .gitignore für Kontoauszüge und Build-Artefakte hinzugefügt Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
976 B
PHP
Executable file
18 lines
976 B
PHP
Executable file
<?php
|
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
/**
|
|
* SAMPLE - Fetches the BPD (bank parameter data) without having any user-specific credentials. This is mostly useful
|
|
* for advanced applications or to explore the bank's FinTS features without having/risking own credentials.
|
|
*/
|
|
require '../vendor/autoload.php';
|
|
|
|
$options = new \Fhp\Options\FinTsOptions();
|
|
$options->url = 'https://banking-dkb.s-fints-pt-dkb.de/fints30'; // HBCI / FinTS Url can be found here: https://www.hbci-zka.de/institute/institut_auswahl.htm (use the PIN/TAN URL)
|
|
$options->bankCode = '12030000'; // Your bank code / Bankleitzahl
|
|
$options->productName = 'Dummy'; // The number you receive after registration / FinTS-Registrierungsnummer. Not all banks require this just to retrieve the BPD.
|
|
$options->productVersion = '1.0'; // Your own Software product version
|
|
$bpd = \Fhp\FinTs::fetchBpd($options, new \Tests\Fhp\CLILogger());
|
|
|
|
print_r($bpd); // Tip: Put a breakpoint on this line.
|