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/html/module.php | |
| parent | e586a2b18ec374a7a58adce27026068426830db3 (diff) | |
| download | webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.gz webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.tar.bz2 webtrees-d5f35b189bb7116bbca374dd3b10caf3c8cccb87.zip | |
PHPDoc
Diffstat (limited to 'modules_v3/html/module.php')
| -rw-r--r-- | modules_v3/html/module.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules_v3/html/module.php b/modules_v3/html/module.php index c704f261cc..7fe40964da 100644 --- a/modules_v3/html/module.php +++ b/modules_v3/html/module.php @@ -24,17 +24,17 @@ use WT\Auth; class html_WT_Module extends WT_Module implements WT_Module_Block { - // Extend class WT_Module + /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ WT_I18N::translate('HTML'); } - // Extend class WT_Module + /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of the “HTML” module */ WT_I18N::translate('Add your own text and graphics.'); } - // Implement class WT_Module_Block + /** {@inheritdoc} */ public function getBlock($block_id, $template=true, $cfg=null) { global $ctype, $GEDCOM; @@ -113,22 +113,22 @@ class html_WT_Module extends WT_Module implements WT_Module_Block { } } - // Implement class WT_Module_Block + /** {@inheritdoc} */ public function loadAjax() { return false; } - // 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, 'gedcom', WT_Filter::post('gedcom')); |
