2017 © Pedro Peláez
 

symfony-bundle alert-bundle

Symfony AlertBundle

image

atc/alert-bundle

Symfony AlertBundle

  • Thursday, March 9, 2017
  • by augustinmerle
  • Repository
  • 4 Watchers
  • 0 Stars
  • 394 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

.AtcAlertBundle

What now?

this bundle provides services to launch sms or email messages For sms it uses an api like the one provided by nexmo, (*1)

What in the future?

this bundle is meant to provide a preprogrammed alert system working whith cron, (*2)

Installation

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:, (*3)

$ composer require atc/alert-bundle "~1"

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation., (*4)

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:, (*5)

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new Atc\Bundle\AlertBundle\AtcAlertBundle(),
        );

        // ...
    }

    // ...
}

Config

atc_alert:
    mail_from_default : "default@default.fr"
    sms_from_default : "0102030405"
    sms_url : "https://rest.nexmo.com/sms/json"
    sms_key : "apiKey"
    sms_secret : "apiSecret"
    mailjet_public : "mailjetApikeyOrNulToUseShiftmail"
    mailjet_private : "mailjetApikeyOrNulToUseShiftmail"

Use it

<?php

$this->get('atc_alert.alert.manager')->createMailAlert(
        $email(),
        $this->renderView('::_email.html.twig', array('foo' => $bar)),
        $sujet,
        $from = null,
        $date = null
);

$this->get('atc_alert.alert.manager')->createSmsAlert($to, $body, $from = null, $date = null);

$this->get('atc_alert.alert.manager')->createSmsMailAlert($toSms, $toMail, $body, $subject, $from = null, $date = null);

The Versions