-
Eric Rasmussen authored
rename our copy of messages plugin to messages_unl since the core elgg messages plugin is now being pulled into mod automatically and we now have a naming conflict
Eric Rasmussen authoredrename our copy of messages plugin to messages_unl since the core elgg messages plugin is now being pulled into mod automatically and we now have a naming conflict
menu.php 606 B
<?php
/**
* Elgg hoverover extender for messages
*
* @package ElggMessages
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd <info@elgg.com>
* @copyright Curverider Ltd 2008-2009
* @link http://elgg.com/
*/
//need to be logged in to send a message
if (isloggedin()) {
?>
<p class="user_menu_messages">
<a href="<?php echo $vars['url']; ?>mod/messages/send.php?send_to=<?php echo $vars['entity']->guid; ?>"><?php echo elgg_echo("messages:sendmessage"); ?></a>
</p>
<?php
}
?>