namespace Elementor\Modules\Notifications;
use Elementor\Core\Base\Module as BaseModule;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
class Module extends BaseModule {
public function get_name() {
return 'notification-center';
public function __construct() {
add_action( 'elementor/admin_top_bar/before_enqueue_scripts', function() {
if ( ! current_user_can( 'manage_options' ) ) {
$this->get_js_assets_url( 'admin-notifications' ),
'elementorNotifications',
$this->get_app_js_config()
wp_set_script_translations( 'e-editor-notifications', 'elementor' );
}, 5 /* Before Elementor's admin enqueue scripts */ );
add_action( 'elementor/editor/v2/scripts/enqueue', [ $this, 'enqueue_editor_scripts' ] );
add_action( 'elementor/editor/after_enqueue_scripts', [ $this, 'enqueue_editor_scripts' ] );
add_action( 'elementor/ajax/register_actions', [ $this, 'register_ajax_actions' ] );
public function enqueue_editor_scripts() {
'elementor-v2-editor-app-bar',
'e-editor-notifications',
$this->get_js_assets_url( 'editor-notifications' ),
'e-editor-notifications',
'elementorNotifications',
$this->get_app_js_config()
wp_set_script_translations( 'e-editor-notifications', 'elementor' );
private function get_app_js_config(): array {
'is_unread' => Options::has_unread_notifications(),
public function register_ajax_actions( $ajax ) {
$ajax->register_ajax_action( 'notifications_get', [ $this, 'ajax_get_notifications' ] );
public function ajax_get_notifications() {
$notifications = API::get_notifications_by_conditions( true );
Options::mark_notification_read( $notifications );