xref: /webtrees/app/Module/AhnentafelReportModule.php (revision 369c0ce6d43eee62858778711fa4744ed347814a)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
4*369c0ce6SGreg Roach * Copyright (C) 2016 webtrees development team
58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
88c2e8227SGreg Roach * (at your option) any later version.
98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
128c2e8227SGreg Roach * GNU General Public License for more details.
138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
158c2e8227SGreg Roach */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1776692c8bSGreg Roach
180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
190e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu;
218c2e8227SGreg Roach
228c2e8227SGreg Roach/**
238c2e8227SGreg Roach * Class AhnentafelReportModule
248c2e8227SGreg Roach */
25e2a378d3SGreg Roachclass AhnentafelReportModule extends AbstractModule implements ModuleReportInterface {
2676692c8bSGreg Roach	/**
2776692c8bSGreg Roach	 * How should this module be labelled on tabs, menus, etc.?
2876692c8bSGreg Roach	 *
2976692c8bSGreg Roach	 * @return string
3076692c8bSGreg Roach	 */
318c2e8227SGreg Roach	public function getTitle() {
328c2e8227SGreg Roach		// This text also appears in the .XML file - update both together
338c2e8227SGreg Roach		return /* I18N: Name of a module/report */ I18N::translate('Ancestors');
348c2e8227SGreg Roach	}
358c2e8227SGreg Roach
3676692c8bSGreg Roach	/**
3776692c8bSGreg Roach	 * A sentence describing what this module does.
3876692c8bSGreg Roach	 *
3976692c8bSGreg Roach	 * @return string
4076692c8bSGreg Roach	 */
418c2e8227SGreg Roach	public function getDescription() {
428c2e8227SGreg Roach		// This text also appears in the .XML file - update both together
438c2e8227SGreg Roach		return /* I18N: Description of the “Ancestors” module */ I18N::translate('A report of an individual’s ancestors, in a narrative style.');
448c2e8227SGreg Roach	}
458c2e8227SGreg Roach
4676692c8bSGreg Roach	/**
4776692c8bSGreg Roach	 * What is the default access level for this module?
4876692c8bSGreg Roach	 *
4976692c8bSGreg Roach	 * Some modules are aimed at admins or managers, and are not generally shown to users.
5076692c8bSGreg Roach	 *
5176692c8bSGreg Roach	 * @return int
5276692c8bSGreg Roach	 */
538c2e8227SGreg Roach	public function defaultAccessLevel() {
544b9ff166SGreg Roach		return Auth::PRIV_PRIVATE;
558c2e8227SGreg Roach	}
568c2e8227SGreg Roach
5776692c8bSGreg Roach	/**
580ee13198SGreg Roach	 * Return a menu item for this report.
5976692c8bSGreg Roach	 *
600ee13198SGreg Roach	 * @return Menu
6176692c8bSGreg Roach	 */
620ee13198SGreg Roach	public function getReportMenu() {
634b9ff166SGreg Roach		global $controller, $WT_TREE;
648c2e8227SGreg Roach
650ee13198SGreg Roach		return new Menu(
668c2e8227SGreg Roach			$this->getTitle(),
674b9ff166SGreg Roach			'reportengine.php?ged=' . $WT_TREE->getNameUrl() . '&amp;action=setup&amp;report=' . WT_MODULES_DIR . $this->getName() . '/report.xml&amp;pid=' . $controller->getSignificantIndividual()->getXref(),
680ee13198SGreg Roach			'menu-report-' . $this->getName(),
690ee13198SGreg Roach			array('rel' => 'nofollow')
708c2e8227SGreg Roach		);
718c2e8227SGreg Roach	}
728c2e8227SGreg Roach}
73