summaryrefslogtreecommitdiff
path: root/app/Module/UserMessagesModule.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Module/UserMessagesModule.php')
-rw-r--r--app/Module/UserMessagesModule.php30
1 files changed, 20 insertions, 10 deletions
diff --git a/app/Module/UserMessagesModule.php b/app/Module/UserMessagesModule.php
index 01739de07a..b090e9be96 100644
--- a/app/Module/UserMessagesModule.php
+++ b/app/Module/UserMessagesModule.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\Database;
use Fisharebest\Webtrees\Filter;
@@ -38,8 +38,16 @@ class UserMessagesModule extends AbstractModule implements ModuleBlockInterface
return /* I18N: Description of the “Messages” module */ I18N::translate('Communicate directly with other users, using private messages.');
}
- /** {@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()) {
// Block actions
$action = Filter::post('action');
$message_ids = Filter::postArray('message_id');
@@ -49,11 +57,9 @@ class UserMessagesModule extends AbstractModule implements ModuleBlockInterface
}
}
$block = $this->getBlockSetting($block_id, 'block', '1');
- if ($cfg) {
- foreach (array('block') as $name) {
- if (array_key_exists($name, $cfg)) {
- $$name = $cfg[$name];
- }
+ foreach (array('block') as $name) {
+ if (array_key_exists($name, $cfg)) {
+ $$name = $cfg[$name];
}
}
$messages = Database::prepare("SELECT message_id, sender, subject, body, UNIX_TIMESTAMP(created) AS created FROM `##message` WHERE user_id=? ORDER BY message_id DESC")
@@ -143,7 +149,11 @@ class UserMessagesModule extends AbstractModule implements ModuleBlockInterface
return false;
}
- /** {@inheritdoc} */
+ /**
+ * An HTML form to edit block settings
+ *
+ * @param int $block_id
+ */
public function configureBlock($block_id) {
if (Filter::postBool('save') && Filter::checkCsrf()) {
$this->setBlockSetting($block_id, 'block', Filter::postBool('block'));