18add1155SRico Sonntag<?php 23976b470SGreg Roach 38add1155SRico Sonntag/** 48add1155SRico Sonntag * webtrees: online genealogy 5*89f7189bSGreg Roach * Copyright (C) 2021 webtrees development team 68add1155SRico Sonntag * This program is free software: you can redistribute it and/or modify 78add1155SRico Sonntag * it under the terms of the GNU General Public License as published by 88add1155SRico Sonntag * the Free Software Foundation, either version 3 of the License, or 98add1155SRico Sonntag * (at your option) any later version. 108add1155SRico Sonntag * This program is distributed in the hope that it will be useful, 118add1155SRico Sonntag * but WITHOUT ANY WARRANTY; without even the implied warranty of 128add1155SRico Sonntag * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 138add1155SRico Sonntag * GNU General Public License for more details. 148add1155SRico Sonntag * You should have received a copy of the GNU General Public License 15*89f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 168add1155SRico Sonntag */ 17fcfa147eSGreg Roach 188add1155SRico Sonntagdeclare(strict_types=1); 198add1155SRico Sonntag 208add1155SRico Sonntagnamespace Fisharebest\Webtrees\Statistics\Repository\Interfaces; 218add1155SRico Sonntag 226ccdf4f0SGreg Roachuse stdClass; 236ccdf4f0SGreg Roach 248add1155SRico Sonntag/** 258add1155SRico Sonntag * A repository providing methods for place related statistics. 268add1155SRico Sonntag */ 278add1155SRico Sonntaginterface PlaceRepositoryInterface 288add1155SRico Sonntag{ 298add1155SRico Sonntag /** 308add1155SRico Sonntag * Places 318add1155SRico Sonntag * 328add1155SRico Sonntag * @param string $what 338add1155SRico Sonntag * @param string $fact 348add1155SRico Sonntag * @param int $parent 358add1155SRico Sonntag * @param bool $country 368add1155SRico Sonntag * 376ccdf4f0SGreg Roach * @return int[]|stdClass[] 388add1155SRico Sonntag */ 398add1155SRico Sonntag public function statsPlaces(string $what = 'ALL', string $fact = '', int $parent = 0, bool $country = false): array; 408add1155SRico Sonntag 418add1155SRico Sonntag /** 428add1155SRico Sonntag * A list of common birth places. 438add1155SRico Sonntag * 448add1155SRico Sonntag * @return string 458add1155SRico Sonntag */ 468add1155SRico Sonntag public function commonBirthPlacesList(): string; 478add1155SRico Sonntag 488add1155SRico Sonntag /** 498add1155SRico Sonntag * A list of common death places. 508add1155SRico Sonntag * 518add1155SRico Sonntag * @return string 528add1155SRico Sonntag */ 538add1155SRico Sonntag public function commonDeathPlacesList(): string; 548add1155SRico Sonntag 558add1155SRico Sonntag /** 568add1155SRico Sonntag * A list of common marriage places. 578add1155SRico Sonntag * 588add1155SRico Sonntag * @return string 598add1155SRico Sonntag */ 608add1155SRico Sonntag public function commonMarriagePlacesList(): string; 618add1155SRico Sonntag 628add1155SRico Sonntag /** 638add1155SRico Sonntag * A list of common countries. 648add1155SRico Sonntag * 658add1155SRico Sonntag * @return string 668add1155SRico Sonntag */ 678add1155SRico Sonntag public function commonCountriesList(): string; 688add1155SRico Sonntag 698add1155SRico Sonntag /** 708add1155SRico Sonntag * Count total places. 718add1155SRico Sonntag * 728add1155SRico Sonntag * @return string 738add1155SRico Sonntag */ 748add1155SRico Sonntag public function totalPlaces(): string; 758add1155SRico Sonntag 768add1155SRico Sonntag /** 778add1155SRico Sonntag * Create a chart showing where events occurred. 788add1155SRico Sonntag * 798add1155SRico Sonntag * @param string $chart_shows 808add1155SRico Sonntag * @param string $chart_type 818add1155SRico Sonntag * @param string $surname 828add1155SRico Sonntag * 838add1155SRico Sonntag * @return string 848add1155SRico Sonntag */ 858add1155SRico Sonntag public function chartDistribution( 868add1155SRico Sonntag string $chart_shows = 'world', 878add1155SRico Sonntag string $chart_type = '', 888add1155SRico Sonntag string $surname = '' 898add1155SRico Sonntag ): string; 908add1155SRico Sonntag} 91