REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.36 KB
Close
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/app/PageCreator/Controllers/SiteController.php
Text
Base64
<?php /** * Controls Site options */ namespace Extendify\PageCreator\Controllers; defined('ABSPATH') || die('No direct access.'); use Extendify\Shared\Services\Sanitizer; /** * The controller for persisting site data */ class SiteController { /** * Get option data by name. * * @param \WP_REST_Request $request - The request. * @return \WP_REST_Response - Sends JSON response with the option data. */ public static function get($request) { $data = \get_option('extendify_' . $request->get_param('name')); if (empty($data)) { return new \WP_REST_Response([]); } if ($request->get_param('item')) { $data = ($data['state'][$request->get_param('item')] ?? []); } return new \WP_REST_Response($data); } /** * Persist single data * * @param \WP_REST_Request $request - The request. * @return \WP_REST_Response */ public static function single($request) { $key = $request->get_param('key'); $value = $request->get_param('value'); // Remove the 'extendify_' prefix if it exists. if (strpos($key, 'extendify_') === 0) { $key = substr($key, 10); } \update_option('extendify_' . $key, Sanitizer::sanitizeUnknown($value)); return new \WP_REST_Response($value); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 1
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
SiteController.php
1.36 KB
lrw-r--r--
2025-05-22 22:26:12
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).