🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 14:11:42 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
API
/
JSON
/
v1
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/API/JSON/v1
🔄 Refresh
✏️
Editing: Analytics.php
Writable
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\API\JSON\v1; if (!defined('ABSPATH')) exit; use MailPoet\Analytics\Reporter; use MailPoet\API\JSON\Endpoint as APIEndpoint; use MailPoet\Config\AccessControl; class Analytics extends APIEndpoint { /** @var Reporter */ private $reporter; public $permissions = [ 'global' => AccessControl::NO_ACCESS_RESTRICTION, ]; public function __construct( Reporter $reporter ) { $this->reporter = $reporter; } public function getTrackingData() { return $this->successResponse($this->reporter->getTrackingData()); } }
💾 Save Changes
❌ Cancel