HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/apklausos/application/datavalueobjects/ThemeFileCategory.php
<?php

namespace LimeSurvey\Datavalueobjects;

/**
 * Class ThemeFileCategory
 *
 * This class represents a theme file category (eg. Global files, Theme files, Survey files)
 *
 * @package LimeSurvey\DataValueObject
 */
class ThemeFileCategory
{

    /** @var string the category name */
    public $name;

    /** @var string the display title for the category */
    public $title;

    /** @var string the base path for the category */
    public $path;

    /** @var string the "virtual" path prefix (eg. 'image::generalfiles::') */
    public $pathPrefix;

    /**
     * @param string $name
     * @param string $title
     * @param string $path
     * @param string $pathPrefix
     */
    public function __construct($name, $title, $path, $pathPrefix)
    {
        $this->name = $name;
        $this->title = $title;
        $this->path = $path;
        $this->pathPrefix = $pathPrefix;
    }
}