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/SimpleSurveyValues.php
<?php

namespace LimeSurvey\Datavalueobjects;

/**
 * Class SimpleSurveyValues
 *
 * This class owns the basic values to create a survey
 *   -- the base language
 *   -- the survey title
 *   -- if createExamples (questions and groups) should be created at the beginning
 *   -- the survey group id the survey should belong to (or/and inherit values from)
 *
 * @package LimeSurvey\DataValueObject
 */
class SimpleSurveyValues
{

    /** @var string language selected by user */
    public $baseLanguage;

    /** @var string title of the survey */
    public $title;

    /** @var  int the surveygroup from which the new survey will inherit values */
    public $surveyGroupId;

    /** @var string administrator name */
    public $admin = 'inherit';

    /** @var string administrator email */
    public $adminEmail = 'inherit';
}