1*3b387b05SGreg Roach<?php 2*3b387b05SGreg Roach 3*3b387b05SGreg Roach/** 4*3b387b05SGreg Roach * webtrees: online genealogy 5*3b387b05SGreg Roach * Copyright (C) 2019 webtrees development team 6*3b387b05SGreg Roach * This program is free software: you can redistribute it and/or modify 7*3b387b05SGreg Roach * it under the terms of the GNU General Public License as published by 8*3b387b05SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9*3b387b05SGreg Roach * (at your option) any later version. 10*3b387b05SGreg Roach * This program is distributed in the hope that it will be useful, 11*3b387b05SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*3b387b05SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*3b387b05SGreg Roach * GNU General Public License for more details. 14*3b387b05SGreg Roach * You should have received a copy of the GNU General Public License 15*3b387b05SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16*3b387b05SGreg Roach */ 17*3b387b05SGreg Roach 18*3b387b05SGreg Roachdeclare(strict_types=1); 19*3b387b05SGreg Roach 20*3b387b05SGreg Roachnamespace Fisharebest\Webtrees\Module; 21*3b387b05SGreg Roach 22*3b387b05SGreg Roachuse Illuminate\Support\Collection; 23*3b387b05SGreg Roach 24*3b387b05SGreg Roach/** 25*3b387b05SGreg Roach * Class AustrianPresidents 26*3b387b05SGreg Roach */ 27*3b387b05SGreg Roachclass AustrianPresidents extends AbstractModule implements ModuleHistoricEventsInterface 28*3b387b05SGreg Roach{ 29*3b387b05SGreg Roach use ModuleHistoricEventsTrait; 30*3b387b05SGreg Roach 31*3b387b05SGreg Roach /** 32*3b387b05SGreg Roach * How should this module be identified in the control panel, etc.? 33*3b387b05SGreg Roach * 34*3b387b05SGreg Roach * @return string 35*3b387b05SGreg Roach */ 36*3b387b05SGreg Roach public function title(): string 37*3b387b05SGreg Roach { 38*3b387b05SGreg Roach return 'Bundespräsidenten Österreichs'; 39*3b387b05SGreg Roach } 40*3b387b05SGreg Roach 41*3b387b05SGreg Roach /** 42*3b387b05SGreg Roach * Should this module be enabled when it is first installed? 43*3b387b05SGreg Roach * 44*3b387b05SGreg Roach * @return bool 45*3b387b05SGreg Roach */ 46*3b387b05SGreg Roach public function isEnabledByDefault(): bool 47*3b387b05SGreg Roach { 48*3b387b05SGreg Roach return false; 49*3b387b05SGreg Roach } 50*3b387b05SGreg Roach 51*3b387b05SGreg Roach /** 52*3b387b05SGreg Roach * All events provided by this module. 53*3b387b05SGreg Roach * 54*3b387b05SGreg Roach * @return Collection<string> 55*3b387b05SGreg Roach */ 56*3b387b05SGreg Roach public function historicEventsAll(): Collection 57*3b387b05SGreg Roach { 58*3b387b05SGreg Roach return new Collection([ 59*3b387b05SGreg Roach "1 EVEN Karl Seitz\n2 TYPE Präsident des Staatsdirektoriums\n2 DATE FROM 30 OCT 1918 TO 09 DEC 1920", 60*3b387b05SGreg Roach "1 EVEN Michael Hainisch\n2 TYPE Bundespräsident\n2 DATE FROM 09 DEC 1920 TO 10 DEC 1928", 61*3b387b05SGreg Roach "1 EVEN Wilhelm Miklas\n2 TYPE Bundespräsident\n2 DATE FROM 10 DEC 1928 TO 12 MAR 1938", 62*3b387b05SGreg Roach "1 EVEN Karl Renner\n2 TYPE Bundespräsident\n2 DATE FROM 20 DEC 1945 TO 31 DEC 1950", 63*3b387b05SGreg Roach "1 EVEN Theodor Körner\n2 TYPE Bundespräsident\n2 DATE FROM 21 JUN 1951 TO 04 JAN 1957", 64*3b387b05SGreg Roach "1 EVEN Adolf Schärf\n2 TYPE Bundespräsident\n2 DATE FROM 22 MAY 1957 TO 28 FEB 1965", 65*3b387b05SGreg Roach "1 EVEN Franz Jonas\n2 TYPE Bundespräsident\n2 DATE FROM 09 JUN 1965 TO 24 APR 1974", 66*3b387b05SGreg Roach "1 EVEN Rudolf Kirchschläger\n2 TYPE Bundespräsident\n2 DATE FROM 08 JUL 1974 TO 08 JUL 1986", 67*3b387b05SGreg Roach "1 EVEN Kurt Waldheim\n2 TYPE Bundespräsident\n2 DATE FROM 08 JUL 1986 TO 08 JUL 1992", 68*3b387b05SGreg Roach "1 EVEN Thomas Klestil\n2 TYPE Bundespräsident\n2 DATE FROM 08 JUL 1992 TO 06 JUL 2004", 69*3b387b05SGreg Roach "1 EVEN Heinz Fischer\n2 TYPE Bundespräsident\n2 DATE FROM 08 JUL 2004 TO 08 JUL 2016", 70*3b387b05SGreg Roach "1 EVEN Alexander Van der Bellen\n2 TYPE Bundespräsident\n2 DATE FROM 26 JAN 2017", 71*3b387b05SGreg Roach ]); 72*3b387b05SGreg Roach } 73*3b387b05SGreg Roach} 74