summaryrefslogtreecommitdiff
path: root/modules_v3/recent_changes/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/recent_changes/module.php
parente586a2b18ec374a7a58adce27026068426830db3 (diff)
downloadwebtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.gz
webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.bz2
webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.zip
PHPDoc
Diffstat (limited to 'modules_v3/recent_changes/module.php')
-rw-r--r--modules_v3/recent_changes/module.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules_v3/recent_changes/module.php b/modules_v3/recent_changes/module.php
index 961733f932..0957c7ed3f 100644
--- a/modules_v3/recent_changes/module.php
+++ b/modules_v3/recent_changes/module.php
@@ -28,17 +28,17 @@ class recent_changes_WT_Module extends WT_Module implements WT_Module_Block {
const DEFAULT_DAYS = 7;
const MAX_DAYS = 90;
- // Extend class WT_Module
+ /** {@inheritdoc} */
public function getTitle() {
return /* I18N: Name of a module */ WT_I18N::translate('Recent changes');
}
- // Extend class WT_Module
+ /** {@inheritdoc} */
public function getDescription() {
return /* I18N: Description of the “Recent changes” module */ WT_I18N::translate('A list of records that have been updated recently.');
}
- // Implement class WT_Module_Block
+ /** {@inheritdoc} */
public function getBlock($block_id, $template=true, $cfg=null) {
global $ctype;
require_once WT_ROOT.'includes/functions/functions_print_lists.php';
@@ -100,22 +100,22 @@ class recent_changes_WT_Module extends WT_Module implements WT_Module_Block {
}
}
- // Implement class WT_Module_Block
+ /** {@inheritdoc} */
public function loadAjax() {
return true;
}
- // Implement class WT_Module_Block
+ /** {@inheritdoc} */
public function isUserBlock() {
return true;
}
- // Implement class WT_Module_Block
+ /** {@inheritdoc} */
public function isGedcomBlock() {
return true;
}
- // Implement class WT_Module_Block
+ /** {@inheritdoc} */
public function configureBlock($block_id) {
if (WT_Filter::postBool('save') && WT_Filter::checkCsrf()) {
set_block_setting($block_id, 'days', WT_Filter::postInteger('days', 1, self::MAX_DAYS, self::DEFAULT_DAYS));