mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
17 lines
No EOL
518 B
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();
|
|
} |