summaryrefslogtreecommitdiff
path: root/modules_v3/individuals/module.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2014-11-27 23:56:39 +0000
committerGreg Roach <fisharebest@gmail.com>2014-11-27 23:56:39 +0000
commitd5f35b189bb7116bbca374dd3b10caf3c8cccb87 (patch)
tree321e2ace871f9967ad46fbeba5717cfd03d10b2f /modules_v3/individuals/module.php
parente586a2b18ec374a7a58adce27026068426830db3 (diff)
downloadwebtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.gz
webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.bz2
webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.zip
PHPDoc
Diffstat (limited to 'modules_v3/individuals/module.php')
-rw-r--r--modules_v3/individuals/module.php14
1 files changed, 7 insertions, 7 deletions
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;