PluginProbe
The Innovative Form Builder – IvyForms / 0.8
The Innovative Form Builder – IvyForms v0.8
1.4.1 1.4 trunk 0.1.2 0.2 0.2.1 0.3 0.3.1 0.4 0.5 0.6 0.6.1 0.6.1-backup 0.6.1.1 0.7 0.8 0.8.1 0.8.2 0.9 0.9.1 1.0 1.1 1.1.1 1.2 1.3
ivyforms / backend / src / Controllers / Settings / GetSettingController.php

GetSettingController.php in The Innovative Form Builder – IvyForms 0.8, at backend/src/Controllers/Settings/GetSettingController.php

73 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @copyright © Melograno Venture Studio. All rights reserved.
5 * @licence See COPYING.md for license details.
6 */
7
8 namespace IvyForms\Controllers\Settings;
9
10 // phpcs:disable PSR1.Files.SideEffects
11 if (!defined('ABSPATH')) {
12 exit; // Exit if accessed directly
13 }
14
15 use IvyForms\Common\Exceptions\ForbiddenException;
16 use IvyForms\Common\Exceptions\InvalidArgumentException;
17 use IvyForms\Common\Sanitizer\Sanitizer;
18 use IvyForms\Controllers\Controller;
19 use IvyForms\Services\Settings\SettingsService;
20 use IvyForms\Services\Translations\BackendStrings;
21 use WP_REST_Request;
22 use WP_REST_Response;
23
24 /**
25 * Class GetSettingController
26 *
27 * @package IvyForms\Controllers\Settings
28 */
29 class GetSettingController extends Controller
30 {
31 private SettingsService $settingsService;
32
33 public function __construct(
34 SettingsService $settingsService
35 ) {
36 $this->settingsService = $settingsService;
37 }
38
39 /**
40 * @param WP_REST_Request $data
41 *
42 * @return WP_REST_Response
43 *
44 * @throws InvalidArgumentException
45 * @throws ForbiddenException
46 */
47 public function handle(WP_REST_Request $data): WP_REST_Response
48 {
49 // Verify the nonce
50 Sanitizer::verifyNonce($data->get_header('X-WP-Nonce'));
51
52 // Get URL parameters (category and option)
53 $settingsCategory = Sanitizer::sanitizeText($data->get_url_params()['category']);
54 $settingsOption = Sanitizer::sanitizeText($data->get_url_params()['option']);
55
56 if (empty($settingsCategory) || empty($settingsOption)) {
57 throw new InvalidArgumentException(
58 BackendStrings::getSettingsStrings()['settings_category_or_option_missing']
59 );
60 }
61
62 // Get the setting
63 $settingValue = $this->settingsService->getSetting($settingsCategory, $settingsOption);
64
65 return new WP_REST_Response([
66 'message' => BackendStrings::getSettingsStrings()['setting_retrieved'],
67 'data' => [
68 'value' => $settingValue,
69 ]
70 ], 200);
71 }
72 }
73