Git Product home page Git Product logo

Comments (3)

maximilienGilet avatar maximilienGilet commented on September 24, 2024

Hi @mrvnklm !

You can simply pass the app.user to the mgilet_notification_render() twig method.

It should look like {{ mgilet_notification_render(app.user) }}

from notification-bundle.

mrvnklm avatar mrvnklm commented on September 24, 2024

Oh okay thank you, didn't know entity classes are available like that in twig. Working now. I have three more questions:

  1. Is there a way to notify all users at once without creating an array with all users inside?
  2. The notification dropdown widget on the readme page, is that available as well? Looks like its some kind of AdminLTE implementation?
  3. Is it possible to implement the manager as dependency injection? Cant find a Manager Interface

from notification-bundle.

maximilienGilet avatar maximilienGilet commented on September 24, 2024
  1. In order to notify all users, the simplest way is to create a notification and adding it to all users :
$manager = $this->get('mgilet.notification');
$notif = $manager->createNotification('test', 'test message');
$manager->addNotification(/* fetch all user here */, $notif, true /* optional true argument to directly flush */);
  1. The template was available in the first version of the bundle. It was removed because it was Bootstrap specific. It was simply a Bootstrap dropdown with notifications inside (with buttons for actions such as "mark as seen")

  2. The manager is called mgilet.notification. Example of custom manager using the NotificationManager :

    App\Manager\CustomManager:
        arguments: [ '@mgilet.notification' ]

from notification-bundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.