Hi everyone!
There is the messags 0.2 version.
It had some minor bug fixes and the expected sidebar link 'Send Message'.
Thanks to Renato for his code contributions.
Keywords: messages, plugins, private messages, updates
Hi everyone!
There is the messags 0.2 version.
It had some minor bug fixes and the expected sidebar link 'Send Message'.
Thanks to Renato for his code contributions.
Keywords: messages, plugins, private messages, updates
Posted by Diego Andrés Ramírez Aragón @ Plugins
You must be logged in to post a comment.
Site supported by Curverider Ltd - powered by the awesome Elgg
Comments
Hi diego,
One thing I forgot: don't show the "Send message" in pages without owner. In messages_sidebar_link, add one more clause:
if(isloggedin() && $page_owner != $_SESSION['userid'] && $page_owner != -1)
By the way, I made a translation to pt_BR, you can get it here:
http://elgg.org/renato/files/-1/154/messages_pt_BR.tar.
Hi Guys,
Nice work - this mesaging plugin is really looking good. One small bug I noticed; if you delete a message before marking it as read it still shows in your toolbar as a new message although it no longer exists.
Thanks again.
Dave.
Hello,
I've seen this great plugin working at eduspaces. I have a elgg 0.7 install (no other plugins, new install) and the {{user}}/messages page doesn't come up. I can send messages without problem and the counts are correct on the receiving end, and the page mod/messages/compose.php?action=compose&to=2 shows up very nicely, but I can't see the messages themselves.
Is there some sql editing that needs to be done?
Thanks!
I made a visual change to the sidebar to align it with the other sidebar elements.
<?php
global $CFG;
$page_owner = page_owner();
if(isloggedin() && $page_owner != $_SESSION['userid']) {
$run_result.= '<ul><li><a href="'.$CFG->wwwroot."mod/messages/compose.php?action=compose&to=$page_owner".'">'.__gettext("Send Message").'</a></li></ul>';
} else {
$run_result.= '';
}
if(isloggedin() && $page_owner != $_SESSION['userid'] && $page_owner != -1)
?>
thnx m8!
problems are solved ;)
PS: i've got an Dutch translation, i'll send it upon Request for now (daniel@nightdesign.nl)
only 1 tiny thing: in my sidebar, the "send user message" has not got an break from the "add user as a friend" link. any way how to solve this ?