REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.04 KB
Close
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/metform/base/api.php
Text
Base64
<?php namespace MetForm\Base; defined('ABSPATH') || exit; abstract class Api { public $prefix = ''; public $param = ''; public $request = null; public function __construct() { $this->config(); $this->init(); } public abstract function config(); public function init() { add_action('rest_api_init', function () { register_rest_route(untrailingslashit('metform/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array( 'methods' => \WP_REST_Server::ALLMETHODS, 'callback' => [$this, 'action'], 'permission_callback' => '__return_true', )); }); } public function action($request) { $this->request = $request; $action_class = strtolower($this->request->get_method()) . '_' . $this->request['action']; if (method_exists($this, $action_class)) { return $this->{$action_class}(); } } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
api.php
1.04 KB
lrw-r--r--
2020-08-19 11:58:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
common.php
589 B
lrw-r--r--
2020-03-04 18:44:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
cpt.php
390 B
lrw-r--r--
2023-01-08 15:19:54
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
shortcode.php
7.96 KB
lrw-r--r--
2026-05-03 15:35:04
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).