ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "notifications-manager.php"
Full Path: /home/zcziejy/ryadselyen/elementor-pro/core/notifications/notifications-manager.php
File size: 563 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ElementorPro\Core\Notifications;
use ElementorPro\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Notifications_Manager {
/**
* Send a notification.
*
* @param \ElementorPro\Core\Notifications\Notification $notification
* @param $notifiable
*
* @throws \Exception
*
* @return $this
*/
public function send( Notification $notification, $notifiable ) {
$payloads = $notification->get_payloads( $notifiable );
Plugin::instance()->integrations->run( $payloads );
return $this;
}
}