Announcement

Collapse
No announcement yet.

simple popup for notifications

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • simple popup for notifications

    Hi

    Im trying to integrate the query Growl plugin http://ksylvest.github.io/jquery-growl/ along with the EspoCRM notifications.. Coz currently the users are unaware when there is a new notification. i wanted to see if its possible to integrate that Growl plugin so once the user logs in all the unread notifications will appear as a small popup.

    Is this something can be done? if yes, can someone guide me how it can be done?

    Thanks

  • #2
    I think murugappan previously tried to do something like this (not Growl specifically); you can check his thread for some information: https://forum.espocrm.com/forum/deve...tion#post61879.

    Otherwise I think you would need to acquire a developer/coder service, not unless you can doe yourself as I don't remember any (recent) thread dealing with this topic.

    Comment


    • #3
      Im trying customize and more about the crm. If someone could point me on like file i should look into if im making a change, it will be really helpful...

      I see there are some calls to api/v1/Activities/action/popupNotifications and api/v1/Notification/action/notReadCount but when i go to the api/v1 folder there is nothing useful execpt for portal files

      Comment


      • #4
        Hi,

        This is the program flow for the API call api/v1/Activities/action/popupNotifications

        application/Espo/Modules/Crm/Controllers/Activities.php actionPopupNotifications()
        application/Espo/Modules/Crm/Services/Activities.php getPopupNotifications($userId)

        and this is the program flow for the API call api/v1/Notification/action/notReadCount

        application/Espo/Controllers/Notification.php actionNotReadCount()
        application/Espo/Services/Notification.php getNotReadCount($userId)

        As I understand, in general, API calls invoke a back end controller which then calls for a service class to execute the requested action. The back end controller location is determined by a router which finds the correct namespace and script.

        If you want to find more information about scripts location and program flows you can also check this thread. https://forum.espocrm.com/forum/deve...ange-something

        I am going to copy this post there too.
        Last edited by telecastg; 10-08-2020, 05:08 PM.

        Comment


        • #5
          I found more information about how popup notifications are generated, opened a new thread to facilitate forum search, you can check it here: https://forum.espocrm.com/forum/deve...erated-in-espo

          Comment

          Working...
          X