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/helpers/admin/export/IWriter.php
<?php

interface IWriter
{
    /**
     * Writes the survey and all the responses it contains to the output
     * using the options specified in FormattingOptions.
     *
     * See Survey and SurveyDao objects for information on loading a survey
     * and results from the database.
     *
     * @param SurveyObj $survey
     * @param string $sLanguageCode
     * @param FormattingOptions $oOptions
     */
    public function write(SurveyObj $survey, $sLanguageCode, FormattingOptions $oOptions);
    public function close();
}