2017 © Pedro Peláez
 

library notice

image

zerockvnext/notice

  • Tuesday, January 30, 2018
  • by ZerockvNext
  • Repository
  • 0 Watchers
  • 3 Stars
  • 36 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 6 % Grown

The README.md

Noice (Laravel 5 Notice package)

This library is a concise web application notification center to Laravel 5, (*1)

I have only tested on Laravel 5, not sure if it's available on Laravel4., (*2)

Contents

Installation

  1. Install use composer
composer require "zerockvnext/notice:~1.0"

2) Open your config/app.php and add the following to the providers array:, (*3)

ZerockvNext\Notice\NoticeServiceProvider::class,

3) In the same config/app.php and add the following to the aliases array:, (*4)

'Notice' => ZerockvNext\Notice\NoticeFacade::class,

4) Run the command below to publish the package config & migration files:, (*5)

php artisan vendor:publish --provider="ZerockvNext\Notice\NoticeServiceProvider"

5) Run migrate, (*6)

php artisan migrate

Configuration

  1. Open your config/notice.php and add the following to the orm array:
'orm' => [
    'user' => \App\User::class
],

chang it to your User ORM, (*7)

Usage

Send Message

    Notice::PostOffice()
        ->type(Notice::Consts()->typeMessage())
        ->sender(1) // Sender ID
        ->title('test message')
        ->message('message contents. this is a test message!')
        ->addReceiver(2) // Receiver ID
        ->addReceivers([3, 4, 5, 6, 7]) // Receivers
        ->send();

In this code, title() and message() are not necessary., (*8)

Notice::Consts()->typeMessage() // message, someone send message to someone else.
Notice::Consts()->typeNotice() // notice, announcement by someone.
Notice::Consts()->typeSystem() // system, messages sent by the system.

type() can receive 'message', 'notice' and 'system', default type is 'message'., (*9)

MailBox

Receive Message

$Messages = Notice::MailBox()
    ->receiver(4) // Receiver ID
    ->getPagedMessages(1, 10); // Page, Limited, Type = null

$Totals = Notice::MailBox()
    ->totalMessages(); // Type = null

return [
    'messages' => $Messages, // Paged messages
    'totals'   => $Totals, // Total count of messages
];

or like this, (*10)

Notice::MailBox()->receiver(4) // Receiver ID
$Messages = Notice::MailBox()->getPagedMessages(1, 10, Notice::Consts()->typeMessage());
$Totals   = Notice::MailBox()->totalMessages(Notice::Consts()->typeMessage());

return [
    'messages' => $Messages, // Paged messages
    'totals'   => $Totals, // Total count of messages
];

If you set the value of $Type, then this method will return the result of the corresponding type., (*11)

Count Messages

Notice::MailBox()->receiver(4);

Notice::MailBox()->hasUnread(); // Type = null, return bool
Notice::MailBox()->hasUnread(Notice::Consts()->typeMessage());

Notice::MailBox()->totalUnread(); // Type = null, return unread count num
Notice::MailBox()->totalUnread(Notice::Consts()->typeMessage());

Notice::MailBox()->totalMessages(); // Type = null, return count num
Notice::MailBox()->totalMessages(Notice::Consts()->typeMessage());

Notice::MailBox()->countUnread(); // Type = null
// return array like this ['message' => 5, 'notice' => 2, 'system' => 3]

Notice::MailBox()->countUnread(Notice::Consts()->typeMessage());
// return array like this ['message' => 5]

Get Specified Message

$Message = Notice::MailBox()->receiver(4)->getTransfer(1) // Transfer ID

return [
    'message' => $Message, // Message
];

Note: Only message for this receiver can be obtained., (*12)

Read / Unread

Notice::MailBox()->receiver(4)->read(1) // Transfer ID
Notice::MailBox()->receiver(4)->read([1,2,3,4]) // Transfer IDs

Notice::MailBox()->receiver(4)->readAll();
Notice::MailBox()->receiver(4)->readAll(Notice::Consts()->typeMessage()); // Type

Notice::MailBox()->receiver(4)->unread(1) // Transfer ID
Notice::MailBox()->receiver(4)->unread([1,2,3,4]) // Transfer IDs

Note: Only the corresponding receiver can modify message status., (*13)

Remove Message

Notice::MailBox()->receiver(4)->remove(1) // Transfer ID
Notice::MailBox()->receiver(4)->remove([1,2,3,4]) // Transfer IDs

View Remove Message

Notice::MailBox()->mode(Notice::Consts()->modeRecycled());

$Messages = Notice::MailBox()
    ->receiver(4)
    ->getPagedMessages(1, 10);

$Totals = Notice::MailBox()->totalMessages();

return [
    'messages' => $Messages, // Paged messages
    'totals'   => $Totals, // Total count of messages
];

you can use those values:, (*14)

Notice::Consts()->modeAll() // return null, all messages
Notice::Consts()->modeWithoutRecycled() // return true, default, only not recycled
Notice::Consts()->modeRecycled() // return false, only recycled

License

MIT license., (*15)

The Versions

30/01 2018

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

The Development Requires

by Zerock

laravel message notice notify

30/01 2018

v1.0.1

1.0.1.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Zerock

laravel message notice notify

23/01 2018

1.0.0

1.0.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Zerock

laravel message notice notify