1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/application/helpers/admin/export/IWriter.php

17 lines
No EOL
518 B
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 Survey $survey
* @param string $sLanguageCode
* @param FormattingOptions $oOptions
*/
public function write(SurveyObj $survey, $sLanguageCode, FormattingOptions $oOptions);
public function close();
}