From d5f35b189bb7116bbca374dd3b10caf3c8cccb87 Mon Sep 17 00:00:00 2001 From: Greg Roach Date: Thu, 27 Nov 2014 23:56:39 +0000 Subject: PHPDoc --- modules_v3/individuals/module.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'modules_v3/individuals/module.php') diff --git a/modules_v3/individuals/module.php b/modules_v3/individuals/module.php index 9d2d477da2..505e4fb38b 100644 --- a/modules_v3/individuals/module.php +++ b/modules_v3/individuals/module.php @@ -22,17 +22,17 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA class individuals_WT_Module extends WT_Module implements WT_Module_Sidebar { - // Extend class WT_Module + /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ WT_I18N::translate('Individual list'); } - // Extend class WT_Module + /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of “Individuals” module */ WT_I18N::translate('A sidebar showing an alphabetic list of all the individuals in the family tree.'); } - // Implement WT_Module + /** {@inheritdoc} */ public function modAction($modAction) { switch ($modAction) { case 'ajax': @@ -47,19 +47,19 @@ class individuals_WT_Module extends WT_Module implements WT_Module_Sidebar { exit; } - // Implement WT_Module_Sidebar + /** {@inheritdoc} */ public function defaultSidebarOrder() { return 40; } - // Implement WT_Module_Sidebar + /** {@inheritdoc} */ public function hasSidebarContent() { global $SEARCH_SPIDER; return !$SEARCH_SPIDER; } - // Implement WT_Module_Sidebar + /** {@inheritdoc} */ public function getSidebarAjaxContent() { $alpha = WT_Filter::get('alpha'); // All surnames beginning with this letter where "@"=unknown and ","=none $surname = WT_Filter::get('surname'); // All indis with this surname. @@ -76,7 +76,7 @@ class individuals_WT_Module extends WT_Module implements WT_Module_Sidebar { } } - // Implement WT_Module_Sidebar + /** {@inheritdoc} */ public function getSidebarContent() { global $WT_IMAGES, $UNKNOWN_NN, $controller; -- cgit v1.3