xref: /webtrees/app/Statistics/Repository/Interfaces/MediaRepositoryInterface.php (revision 242a78626998a767db1568b24919e94ae4b38ac3)
18add1155SRico Sonntag<?php
28add1155SRico Sonntag/**
38add1155SRico Sonntag * webtrees: online genealogy
4*242a7862SGreg Roach * Copyright (C) 2019 webtrees development team
58add1155SRico Sonntag * This program is free software: you can redistribute it and/or modify
68add1155SRico Sonntag * it under the terms of the GNU General Public License as published by
78add1155SRico Sonntag * the Free Software Foundation, either version 3 of the License, or
88add1155SRico Sonntag * (at your option) any later version.
98add1155SRico Sonntag * This program is distributed in the hope that it will be useful,
108add1155SRico Sonntag * but WITHOUT ANY WARRANTY; without even the implied warranty of
118add1155SRico Sonntag * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
128add1155SRico Sonntag * GNU General Public License for more details.
138add1155SRico Sonntag * You should have received a copy of the GNU General Public License
148add1155SRico Sonntag * along with this program. If not, see <http://www.gnu.org/licenses/>.
158add1155SRico Sonntag */
168add1155SRico Sonntagdeclare(strict_types=1);
178add1155SRico Sonntag
188add1155SRico Sonntagnamespace Fisharebest\Webtrees\Statistics\Repository\Interfaces;
198add1155SRico Sonntag
208add1155SRico Sonntag/**
218add1155SRico Sonntag * A repository providing methods for media type related statistics.
228add1155SRico Sonntag */
238add1155SRico Sonntaginterface MediaRepositoryInterface
248add1155SRico Sonntag{
258add1155SRico Sonntag    /**
268add1155SRico Sonntag     * Count the number of media records.
278add1155SRico Sonntag     *
288add1155SRico Sonntag     * @return string
298add1155SRico Sonntag     */
308add1155SRico Sonntag    public function totalMedia(): string;
318add1155SRico Sonntag
328add1155SRico Sonntag    /**
338add1155SRico Sonntag     * Count the number of media records with type "audio".
348add1155SRico Sonntag     *
358add1155SRico Sonntag     * @return string
368add1155SRico Sonntag     */
378add1155SRico Sonntag    public function totalMediaAudio(): string;
388add1155SRico Sonntag
398add1155SRico Sonntag    /**
408add1155SRico Sonntag     * Count the number of media records with type "book".
418add1155SRico Sonntag     *
428add1155SRico Sonntag     * @return string
438add1155SRico Sonntag     */
448add1155SRico Sonntag    public function totalMediaBook(): string;
458add1155SRico Sonntag
468add1155SRico Sonntag    /**
478add1155SRico Sonntag     * Count the number of media records with type "card".
488add1155SRico Sonntag     *
498add1155SRico Sonntag     * @return string
508add1155SRico Sonntag     */
518add1155SRico Sonntag    public function totalMediaCard(): string;
528add1155SRico Sonntag
538add1155SRico Sonntag    /**
548add1155SRico Sonntag     * Count the number of media records with type "certificate".
558add1155SRico Sonntag     *
568add1155SRico Sonntag     * @return string
578add1155SRico Sonntag     */
588add1155SRico Sonntag    public function totalMediaCertificate(): string;
598add1155SRico Sonntag
608add1155SRico Sonntag    /**
618add1155SRico Sonntag     * Count the number of media records with type "coat of arms".
628add1155SRico Sonntag     *
638add1155SRico Sonntag     * @return string
648add1155SRico Sonntag     */
658add1155SRico Sonntag    public function totalMediaCoatOfArms(): string;
668add1155SRico Sonntag
678add1155SRico Sonntag    /**
688add1155SRico Sonntag     * Count the number of media records with type "document".
698add1155SRico Sonntag     *
708add1155SRico Sonntag     * @return string
718add1155SRico Sonntag     */
728add1155SRico Sonntag    public function totalMediaDocument(): string;
738add1155SRico Sonntag
748add1155SRico Sonntag    /**
758add1155SRico Sonntag     * Count the number of media records with type "electronic".
768add1155SRico Sonntag     *
778add1155SRico Sonntag     * @return string
788add1155SRico Sonntag     */
798add1155SRico Sonntag    public function totalMediaElectronic(): string;
808add1155SRico Sonntag
818add1155SRico Sonntag    /**
828add1155SRico Sonntag     * Count the number of media records with type "magazine".
838add1155SRico Sonntag     *
848add1155SRico Sonntag     * @return string
858add1155SRico Sonntag     */
868add1155SRico Sonntag    public function totalMediaMagazine(): string;
878add1155SRico Sonntag
888add1155SRico Sonntag    /**
898add1155SRico Sonntag     * Count the number of media records with type "manuscript".
908add1155SRico Sonntag     *
918add1155SRico Sonntag     * @return string
928add1155SRico Sonntag     */
938add1155SRico Sonntag    public function totalMediaManuscript(): string;
948add1155SRico Sonntag
958add1155SRico Sonntag    /**
968add1155SRico Sonntag     * Count the number of media records with type "map".
978add1155SRico Sonntag     *
988add1155SRico Sonntag     * @return string
998add1155SRico Sonntag     */
1008add1155SRico Sonntag    public function totalMediaMap(): string;
1018add1155SRico Sonntag
1028add1155SRico Sonntag    /**
1038add1155SRico Sonntag     * Count the number of media records with type "microfiche".
1048add1155SRico Sonntag     *
1058add1155SRico Sonntag     * @return string
1068add1155SRico Sonntag     */
1078add1155SRico Sonntag    public function totalMediaFiche(): string;
1088add1155SRico Sonntag
1098add1155SRico Sonntag    /**
1108add1155SRico Sonntag     * Count the number of media records with type "microfilm".
1118add1155SRico Sonntag     *
1128add1155SRico Sonntag     * @return string
1138add1155SRico Sonntag     */
1148add1155SRico Sonntag    public function totalMediaFilm(): string;
1158add1155SRico Sonntag
1168add1155SRico Sonntag    /**
1178add1155SRico Sonntag     * Count the number of media records with type "newspaper".
1188add1155SRico Sonntag     *
1198add1155SRico Sonntag     * @return string
1208add1155SRico Sonntag     */
1218add1155SRico Sonntag    public function totalMediaNewspaper(): string;
1228add1155SRico Sonntag
1238add1155SRico Sonntag    /**
1248add1155SRico Sonntag     * Count the number of media records with type "painting".
1258add1155SRico Sonntag     *
1268add1155SRico Sonntag     * @return string
1278add1155SRico Sonntag     */
1288add1155SRico Sonntag    public function totalMediaPainting(): string;
1298add1155SRico Sonntag
1308add1155SRico Sonntag    /**
1318add1155SRico Sonntag     * Count the number of media records with type "photograph".
1328add1155SRico Sonntag     *
1338add1155SRico Sonntag     * @return string
1348add1155SRico Sonntag     */
1358add1155SRico Sonntag    public function totalMediaPhoto(): string;
1368add1155SRico Sonntag
1378add1155SRico Sonntag    /**
1388add1155SRico Sonntag     * Count the number of media records with type "tombstone".
1398add1155SRico Sonntag     *
1408add1155SRico Sonntag     * @return string
1418add1155SRico Sonntag     */
1428add1155SRico Sonntag    public function totalMediaTombstone(): string;
1438add1155SRico Sonntag
1448add1155SRico Sonntag    /**
1458add1155SRico Sonntag     * Count the number of media records with type "video".
1468add1155SRico Sonntag     *
1478add1155SRico Sonntag     * @return string
1488add1155SRico Sonntag     */
1498add1155SRico Sonntag    public function totalMediaVideo(): string;
1508add1155SRico Sonntag
1518add1155SRico Sonntag    /**
1528add1155SRico Sonntag     * Count the number of media records with type "other".
1538add1155SRico Sonntag     *
1548add1155SRico Sonntag     * @return string
1558add1155SRico Sonntag     */
1568add1155SRico Sonntag    public function totalMediaOther(): string;
1578add1155SRico Sonntag
1588add1155SRico Sonntag    /**
1598add1155SRico Sonntag     * Count the number of media records with type "unknown".
1608add1155SRico Sonntag     *
1618add1155SRico Sonntag     * @return string
1628add1155SRico Sonntag     */
1638add1155SRico Sonntag    public function totalMediaUnknown(): string;
1648add1155SRico Sonntag
1658add1155SRico Sonntag    /**
1668add1155SRico Sonntag     * Create a chart of media types.
1678add1155SRico Sonntag     *
1688add1155SRico Sonntag     * @param string|null $color_from
1698add1155SRico Sonntag     * @param string|null $color_to
1708add1155SRico Sonntag     *
1718add1155SRico Sonntag     * @return string
1728add1155SRico Sonntag     */
17388de55fdSRico Sonntag    public function chartMedia(string $color_from = null, string $color_to = null): string;
1748add1155SRico Sonntag}
175