PluginProbe
MailPoet – Newsletters, Email Marketing, and Automation / 3.1.0
MailPoet – Newsletters, Email Marketing, and Automation v3.1.0
5.38.0 5.37.0 5.36.1 5.36.0 5.35.1 5.35.0 5.34.3 5.34.2 5.34.1 5.34.0 5.33.1 5.33.0 5.32.0 5.31.0 5.30.0 5.29.0 5.28.1 5.28.0 5.27.0 5.26.0 5.26.1 5.25.0 5.24.0 4.43.0 4.43.1 All 542 releases
mailpoet / lib / API / API.php

API.php in MailPoet – Newsletters, Email Marketing, and Automation 3.1.0, at lib/API/API.php

21 lines 471 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace MailPoet\API;
4
5 use MailPoet\Config\AccessControl;
6
7 if(!defined('ABSPATH')) exit;
8
9 class API {
10 static function JSON(AccessControl $access_control) {
11 return new \MailPoet\API\JSON\API($access_control);
12 }
13
14 static function MP($version) {
15 $api_class = sprintf('%s\MP\%s\API', __NAMESPACE__, $version);
16 if(class_exists($api_class)) {
17 return new $api_class();
18 }
19 throw new \Exception(__('Invalid API version.', 'mailpoet'));
20 }
21 }