[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-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
/
wpforo
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 actions
SET
[ DEL ]
📁 triggers
SET
[ DEL ]
📄 wpforo.php
1,131 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: wpforo.php
<?php /** * WPForo core integrations file * * @since 1.0.0 * @package SureTrigger */ namespace SureTriggers\Integrations\WPForo; use SureTriggers\Controllers\IntegrationsController; use SureTriggers\Integrations\Integrations; use SureTriggers\Traits\SingletonLoader; /** * Class SureTrigger * * @package SureTriggers\Integrations\WPForo */ class WPForo extends Integrations { use SingletonLoader; /** * ID * * @var string */ protected $id = 'wpForo'; /** * SureTrigger constructor. */ public function __construct() { $this->name = __( 'wpForo', 'suretriggers' ); $this->description = __( 'The best WordPress forum plugin, full-fledged yet easy and light forum solution for your WordPress website. The only forum software with multiple forum layouts.', 'suretriggers' ); $this->icon_url = SURE_TRIGGERS_URL . 'assets/icons/wpforo.svg'; parent::__construct(); } /** * Is Plugin depended plugin is installed or not. * * @return bool */ public function is_plugin_installed() { return defined( 'WPFORO_VERSION' ); } } IntegrationsController::register( WPForo::class );