The configuration options for private messages are stored in app/config/pms.php
.
The private messages are stored in the messages
database table.
When you send a message to a user, a conversation will automatically be created with that user. You or the user you sent the message to can reply to that conversation.
$converstions = Message::getConversations($userId);
$messages = Message::getConversation($user1Id, $user2Id);
$user1Id
would be the currently authenticated user and $user2Id
the other user.
$unread = Message::countUnread($userId);
Message::delete($user1Id, $user2Id);
$user1Id
would be the currently authenticated user and $user2Id
the other user.
Message::delete($userId);
Message::markAllAsRead($userId);
Message::send($user1Id, $user2Id, $message);
$user1Id
would be the currently authenticated user and $user2Id
the other user.
For complete examples open ajax.php
and search for Message::send
, Message::getConversations
, Message::getConversation
, Message::countUnread
, Message::delete
, Message::markAllAsRead
.
See src/Hazzard/Messages/Message.php
for the full list of methods and arguments.
The contacts are stored in the contacts
database table and are like friends if you will. You can send requests to other users so you can message them.
Contact::add($user1Id, $user2Id);
Contact::confirm($user1Id, $user2Id);
Contact::remove($user1Id, $user2Id);
if (Contact::check($user1Id, $user2Id)) {
// Contacts...
}
$user1Id
would be the currently authenticated user and $user2Id
the other user.
See src/Hazzard/Messages/Contact.php
for the full list of methods and arguments.