18c2e8227SGreg Roach<?php 28c2e8227SGreg Roachnamespace Fisharebest\Webtrees; 38c2e8227SGreg Roach 48c2e8227SGreg Roach/** 58c2e8227SGreg Roach * webtrees: online genealogy 68c2e8227SGreg Roach * Copyright (C) 2015 webtrees development team 78c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 88c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 98c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 108c2e8227SGreg Roach * (at your option) any later version. 118c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 128c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 138c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 148c2e8227SGreg Roach * GNU General Public License for more details. 158c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 168c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 178c2e8227SGreg Roach */ 188c2e8227SGreg Roach 198c2e8227SGreg Roach/** 208c2e8227SGreg Roach * Class DeathReportModule 218c2e8227SGreg Roach */ 228c2e8227SGreg Roachclass DeathReportModule extends Module implements ModuleReportInterface { 238c2e8227SGreg Roach /** {@inheritdoc} */ 248c2e8227SGreg Roach public function getTitle() { 258c2e8227SGreg Roach // This text also appears in the .XML file - update both together 268c2e8227SGreg Roach return /* I18N: Name of a module/report */ I18N::translate('Deaths'); 278c2e8227SGreg Roach } 288c2e8227SGreg Roach 298c2e8227SGreg Roach /** {@inheritdoc} */ 308c2e8227SGreg Roach public function getDescription() { 318c2e8227SGreg Roach // This text also appears in the .XML file - update both together 328c2e8227SGreg Roach return /* I18N: Description of the “Deaths” module */ I18N::translate('A report of individuals who died in a given time or place.'); 338c2e8227SGreg Roach } 348c2e8227SGreg Roach 358c2e8227SGreg Roach /** {@inheritdoc} */ 368c2e8227SGreg Roach public function defaultAccessLevel() { 37*4b9ff166SGreg Roach return Auth::PRIV_PRIVATE; 388c2e8227SGreg Roach } 398c2e8227SGreg Roach 408c2e8227SGreg Roach /** {@inheritdoc} */ 418c2e8227SGreg Roach public function getReportMenus() { 42*4b9ff166SGreg Roach global $WT_TREE; 43*4b9ff166SGreg Roach 448c2e8227SGreg Roach $menus = array(); 458c2e8227SGreg Roach $menu = new Menu( 468c2e8227SGreg Roach $this->getTitle(), 47*4b9ff166SGreg Roach 'reportengine.php?ged=' . $WT_TREE->getNameUrl() . '&action=setup&report=' . WT_MODULES_DIR . $this->getName() . '/report.xml', 488c2e8227SGreg Roach 'menu-report-' . $this->getName() 498c2e8227SGreg Roach ); 508c2e8227SGreg Roach $menus[] = $menu; 518c2e8227SGreg Roach 528c2e8227SGreg Roach return $menus; 538c2e8227SGreg Roach } 548c2e8227SGreg Roach} 55