[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
mailerpress
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 actions
SET
[ DEL ]
📁 triggers
SET
[ DEL ]
📄 mailerpress.php
1,096 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: mailerpress.php
<?php /** * MailerPress core integrations file * * @since 1.0.0 * @package SureTrigger */ namespace SureTriggers\Integrations\MailerPress; use SureTriggers\Controllers\IntegrationsController; use SureTriggers\Integrations\Integrations; use SureTriggers\Traits\SingletonLoader; /** * Class MailerPress * * @package SureTriggers\Integrations\MailerPress */ class MailerPress extends Integrations { use SingletonLoader; /** * ID * * @var string */ protected $id = 'MailerPress'; /** * SureTrigger constructor. */ public function __construct() { $this->name = __( 'MailerPress', 'suretriggers' ); $this->description = __( 'MailerPress is a powerful email marketing and newsletter plugin for WordPress.', 'suretriggers' ); $this->icon_url = SURE_TRIGGERS_URL . 'assets/icons/mailerpress.png'; parent::__construct(); } /** * Is Plugin depended plugin is installed or not. * * @return bool */ public function is_plugin_installed() { return defined( 'MAILERPRESS_VERSION' ); } } IntegrationsController::register( MailerPress::class );