summaryrefslogtreecommitdiff
path: root/app/Module/LoggedInUsersModule.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Module/LoggedInUsersModule.php')
-rw-r--r--app/Module/LoggedInUsersModule.php22
1 files changed, 17 insertions, 5 deletions
diff --git a/app/Module/LoggedInUsersModule.php b/app/Module/LoggedInUsersModule.php
index 34798457c6..d19bd70441 100644
--- a/app/Module/LoggedInUsersModule.php
+++ b/app/Module/LoggedInUsersModule.php
@@ -1,6 +1,4 @@
<?php
-namespace Fisharebest\Webtrees\Module;
-
/**
* webtrees: online genealogy
* Copyright (C) 2015 webtrees development team
@@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\Module;
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+namespace Fisharebest\Webtrees\Module;
+
use Fisharebest\Webtrees\Auth;
use Fisharebest\Webtrees\Filter;
use Fisharebest\Webtrees\Functions\Functions;
@@ -37,8 +37,16 @@ class LoggedInUsersModule extends AbstractModule implements ModuleBlockInterface
return /* I18N: Description of the “Who is online” module */ I18N::translate('A list of users and visitors who are currently online.');
}
- /** {@inheritdoc} */
- public function getBlock($block_id, $template = true, $cfg = null) {
+ /**
+ * Generate the HTML content of this block.
+ *
+ * @param int $block_id
+ * @param bool $template
+ * @param array $cfg
+ *
+ * @return string
+ */
+ public function getBlock($block_id, $template = true, $cfg = array()) {
global $WT_TREE;
$id = $this->getName() . $block_id;
@@ -112,7 +120,11 @@ class LoggedInUsersModule extends AbstractModule implements ModuleBlockInterface
return true;
}
- /** {@inheritdoc} */
+ /**
+ * An HTML form to edit block settings
+ *
+ * @param int $block_id
+ */
public function configureBlock($block_id) {
}
}