diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-11-27 23:56:39 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-11-27 23:56:39 +0000 |
| commit | d5f35b189bb7116bbca374dd3b10caf3c8cccb87 (patch) | |
| tree | 321e2ace871f9967ad46fbeba5717cfd03d10b2f /modules_v3/descendancy_report | |
| parent | e586a2b18ec374a7a58adce27026068426830db3 (diff) | |
| download | webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.gz webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.bz2 webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.zip | |
PHPDoc
Diffstat (limited to 'modules_v3/descendancy_report')
| -rw-r--r-- | modules_v3/descendancy_report/module.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules_v3/descendancy_report/module.php b/modules_v3/descendancy_report/module.php index 2abad36c88..1199f13574 100644 --- a/modules_v3/descendancy_report/module.php +++ b/modules_v3/descendancy_report/module.php @@ -22,24 +22,24 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA class descendancy_report_WT_Module extends WT_Module implements WT_Module_Report { - // Extend class WT_Module + /** {@inheritdoc} */ public function getTitle() { // This text also appears in the .XML file - update both together return /* I18N: Name of a module/report */ WT_I18N::translate('Descendants'); } - // Extend class WT_Module + /** {@inheritdoc} */ public function getDescription() { // This text also appears in the .XML file - update both together return /* I18N: Description of the “Descendants” module */ WT_I18N::translate('A report of an individual’s descendants, in a narrative style.'); } - // Extend class WT_Module + /** {@inheritdoc} */ public function defaultAccessLevel() { return WT_PRIV_PUBLIC; } - // Implement WT_Module_Report - a module can provide many reports + /** {@inheritdoc} */ public function getReportMenus() { global $controller; |
