PHP 8.0.30
Preview: Export.php Size: 910 B
/home/certprox/zang.certproxywizard.com/wp/wp-content/plugins/fluentform/app/Modules/Entries/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);
    }
}

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
2.09 KB lrw-r--r-- 2026-03-30 10:23:20
Edit Download
3.49 KB lrw-r--r-- 2026-03-30 10:23:20
Edit Download
4.03 KB lrw-r--r-- 2026-03-30 10:23:20
Edit Download
910 B lrw-r--r-- 2026-03-30 10:23:20
Edit Download
12.31 KB lrw-r--r-- 2026-03-30 10:23:20
Edit Download

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