PHP 8.0.30
Preview: FormSettingsController.php Size: 4.32 KB
/home/certprox/zang.certproxywizard.com/wp/wp-content/plugins/fluentform/app/Http/Controllers/FormSettingsController.php

<?php

namespace FluentForm\App\Http\Controllers;

use Exception;
use FluentForm\App\Services\Settings\Customizer;
use FluentForm\App\Services\Settings\SettingsService;
use FluentForm\Framework\Validator\ValidationException;
use FluentForm\App\Services\Submission\SubmissionService;

class FormSettingsController extends Controller
{
    public function index(SettingsService $settingsService)
    {
        $result = $settingsService->get($this->request->all());

        return $this->sendSuccess($result);
    }

    public function general(SettingsService $settingsService, $formId)
    {
        $result = $settingsService->general($formId);

        return $this->sendSuccess($result);
    }

    public function saveGeneral(SettingsService $settingsService)
    {
        try {
            $settingsService->saveGeneral($this->request->all());

            return $this->sendSuccess([
                'message' => __('Settings has been saved.', 'fluentform'),
            ]);
        } catch (ValidationException $exception) {
            return $this->sendError($exception->errors(), 422);
        }
    }

    public function store(SettingsService $settingsService)
    {
        try {
            [$settingsId, $settings] = $settingsService->store($this->request->all());

            return $this->sendSuccess([
                'message'  => __('Settings has been saved.', 'fluentform'),
                'id'       => $settingsId,
                'settings' => $settings,
            ]);
        } catch (ValidationException $exception) {
            return $this->sendError($exception->errors(), 422);
        }
    }

    public function remove(SettingsService $settingsService)
    {
        $settingsService->remove($this->request->all());

        return $this->sendSuccess([]);
    }

    public function customizer(Customizer $customizer, $id)
    {
        $metaKeys = [
            '_custom_form_css',
            '_custom_form_js',
            '_ff_selected_style',
            '_ff_form_styles'
        ];
        
        return $this->sendSuccess($customizer->get($id, $metaKeys));
    }

    public function storeCustomizer(Customizer $customizer, $id)
    {
        try {
            $customizer->store($this->request->all());

            return $this->sendSuccess([
                'message' => __('Custom CSS & JS successfully saved.', 'fluentform'),
            ]);
        } catch (Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 423);
        }
    }

    public function storeEntryColumns(SubmissionService $submissionService, $id)
    {
        try {
            $submissionService->storeColumnSettings($this->request->all());

            return $this->sendSuccess([
                'message' => __('The column display order has been saved.', 'fluentform'),
            ]);
        } catch (Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 423);
        }
    }

    public function conversationalDesign(SettingsService $settingsService, $formId)
    {
        try {
            return $this->sendSuccess($settingsService->conversationalDesign($formId));
        } catch (Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 423);
        }
    }

    public function storeConversationalDesign(SettingsService $settingsService, $formId)
    {
        try {
            return $this->sendSuccess($settingsService->storeConversationalDesign($this->request->all(), $formId));
        } catch (Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 423);
        }
    }

    public function getPreset(SettingsService $settingsService, $formId)
    {
        try {
            return $this->sendSuccess($settingsService->getPreset($formId));
        } catch (Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 423);
        }
    }

    public function savePreset(SettingsService $settingsService)
    {
        try {
            return $this->sendSuccess($settingsService->savePreset($this->request->all()));
        } catch (Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 423);
        }
    }
}

Directory Contents

Dirs: 0 × Files: 19

Name Size Perms Modified Actions
3.99 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
706 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
172 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
6.50 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
3.34 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
4.32 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
2.59 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
488 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
778 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
9.23 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
2.13 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
2.48 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
7.31 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
1.20 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
7.57 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
1.01 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
1.36 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
1.28 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
4.90 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).