[ 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
/
wployalty
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 actions
SET
[ DEL ]
📁 triggers
SET
[ DEL ]
📄 wployalty.php
1,204 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: wployalty.php
<?php /** * WPLoyalty integrations file * * @since 1.0.0 * @package SureTrigger */ namespace SureTriggers\Integrations\WPLoyalty; use SureTriggers\Controllers\IntegrationsController; use SureTriggers\Integrations\Integrations; use SureTriggers\Traits\SingletonLoader; /** * Class SureTrigger * * @package SureTriggers\Integrations\WPLoyalty */ class WPLoyalty extends Integrations { use SingletonLoader; /** * ID * * @var string */ protected $id = 'WPLoyalty'; /** * SureTrigger constructor. */ public function __construct() { $this->name = __( 'WPLoyalty', '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/wployalty.svg'; parent::__construct(); } /** * Is Plugin depended plugin is installed or not. * * @return bool */ public function is_plugin_installed() { return class_exists( 'WooCommerce' ) && class_exists( '\Wlr\App\Router' ); } } IntegrationsController::register( WPLoyalty::class );