. */ /** * Class RelatedIndividualsReportModule */ class RelatedIndividualsReportModule extends Module implements ModuleReportInterface { /** {@inheritdoc} */ public function getTitle() { // This text also appears in the .XML file - update both together return /* I18N: Name of a report */ I18N::translate('Related individuals'); } /** {@inheritdoc} */ public function getDescription() { // This text also appears in the .XML file - update both together return /* I18N: Description of the “Related individuals” module */ I18N::translate('A report of the individuals that are closely related to an individual.'); } /** {@inheritdoc} */ public function defaultAccessLevel() { return WT_PRIV_PUBLIC; } /** {@inheritdoc} */ public function getReportMenus() { global $controller; $menus = array(); $menu = new Menu( $this->getTitle(), 'reportengine.php?ged=' . WT_GEDURL . '&action=setup&report=' . WT_MODULES_DIR . $this->getName() . '/report.xml&pid=' . $controller->getSignificantIndividual()->getXref(), 'menu-report-' . $this->getName() ); $menus[] = $menu; return $menus; } }