HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/csb.komma.pro/vendor/komma/kms/src/Dashboard/DashboardService.php
<?php


namespace Komma\KMS\Dashboard;


use Komma\KMS\Core\ModelService;

/**
 * Class ImportExportService
 *
 * Directs Import and Export services to do their job.
 * And is responsible for loading and offering files for download
 *
 * @package App\Kms\Dashboard
 */
class DashboardService extends ModelService
{
    protected $sortable = true;

    /**
     * @var string The name of the file input field
     */
    public static $fileInputFieldName = 'File-file';

    /**
     * DashboardService constructor.
     *

     */
    public function __construct()
    {
        if(self::$fileInputFieldName == '')
            throw new \RuntimeException('Please set the static $inputFieldName variable to the input field name the dashboard service should import files from');

        $this->forModelName = null;

    }


}