nstdio/yii2-notymo

This package is abandoned and no longer maintained. No replacement package was suggested.

The iOS and Android push notifications extensition for Yii2

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 2

Type:yii2-extension

dev-master 2016-10-08 10:07 UTC

This package is not auto-updated.

Last update: 2020-01-24 16:24:28 UTC


README

The iOS and Android push notification extension for Yii2.

Installation

The suggested installation method is via composer:

$ composer require nstdio/yii2-notymo: "dev-master"

or add

"nstdio/yii2-notymo": "dev-master"

to the require section of your composer.json file.

Usage

Defining as application component

// web.php or console.php
'component' => [
    
    // ...
    
    'notymo'  => [
        'class'        => 'nstdio\yii2notymo\PushNotification',
        'push'         => [
            // If you dоn't want to use one of the services we can just skip them loading.
            // It's obvious that the skipped service is not necessary to configure.
            // 'skipApns' => true,
            // 'skipGcm'  => true,
            'apns' => [
                'live'        => true, // Whether to use live credentials.
                'cert'        => 'path/to/apns_live_cert.pem',
                'sandboxCert' => 'path/to/apns_sandbox_cert.pem',
            ],
            'gcm'  => [
                'apiKey' => 'api_key' // Here goes GCM Service API key. 
            ],
        ],
        'dataProvider' => [
            'class'      => 'nstdio\yii2notymo\provider\SQLDataProvider',
            'table'      => 'device_token', // The table from which the data will be obtained.
            'identifier' => 'user_id', // The identifier that defines the criteria for what data will be obtained. In this case, it is the column name from the table.
            'apns'       => 'apns_token', // The column name for APNS device tokens.
            'gcm'        => 'gcm_token', // The column name for GCM device tokens.
        ],
    ],
],

// For example SiteController.php
use nstdio\notymo\Message;
// ...

$userIds = [1, 2, 3, 4, 5];

/** @var \nstdio\yii2notymo\PushNotification $push */
$push = Yii::$app->notymo;

$msg = new Message();
$msg->setMessage("Test msg.");

$push->send($msg, $userIds); // Message will be sent to mentioned users.