. */ declare(strict_types=1); namespace Fisharebest\Webtrees\CustomTags; use Fisharebest\Webtrees\Contracts\CustomTagInterface; use Fisharebest\Webtrees\Contracts\ElementInterface; use Fisharebest\Webtrees\Elements\Creation; use Fisharebest\Webtrees\Elements\CustomElement; use Fisharebest\Webtrees\I18N; /** * GEDCOM files created by Heredis * * @see https://www.heredis.com */ class Heredis implements CustomTagInterface { /** * The name of the application. * * @return string */ public function name(): string { return 'Heredis'; } /** * Tags created by this application. * * @return array */ public function tags(): array { return [ 'FAM:_CREA' => new Creation(I18N::translate('Created at')), 'INDI:_CREA' => new Creation(I18N::translate('Created at')), 'INDI:SIGN' => new CustomElement(I18N::translate('Signature')), /* Reported on the forum - but what do they mean? 'INDI:_FIL' => new CustomElement(I18N::translate('???')), 'INDI:*:_FNA' => new CustomElement(I18N::translate('???')), 'INDI:????:????:_SUBMAP' => new EmptyElement(I18N::translate('Coordinates'), ['INDI' => '1:1', 'LONG' => '1:1']), 'INDI:????:????:_SUBMAP:LATI' => new PlaceLatitude(I18N::translate('Latitude')), 'INDI:????:????:_SUBMAP:LONG' => new PlaceLongtitude(I18N::translate('Longitude')), */ ]; } }