[ 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
/
profilepress
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 actions
SET
[ DEL ]
📁 triggers
SET
[ DEL ]
📄 profilepress.php
1,063 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: profilepress.php
<?php /** * ProfilePress integration class file * * @package SureTriggers * @since 1.0.0 */ namespace SureTriggers\Integrations\ProfilePress; use SureTriggers\Controllers\IntegrationsController; use SureTriggers\Integrations\Integrations; use SureTriggers\Traits\SingletonLoader; /** * Class ProfilePress * * @package SureTriggers\Integrations\ProfilePress */ class ProfilePress extends Integrations { use SingletonLoader; /** * ID of the integration * * @var string */ protected $id = 'ProfilePress'; /** * SureTrigger constructor. */ public function __construct() { $this->name = __( 'ProfilePress', 'suretriggers' ); $this->description = __( 'Modern WordPress Membership Plugin.', 'suretriggers' ); $this->icon_url = SURE_TRIGGERS_URL . 'assets/icons/profilepress.png'; parent::__construct(); } /** * Check plugin is installed. * * @return bool */ public function is_plugin_installed() { return defined( 'PPRESS_VERSION_NUMBER' ); } } IntegrationsController::register( ProfilePress::class );