ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilSurveyQuestionpoolExport Class Reference

Export class for survey questionpools. More...

+ Collaboration diagram for ilSurveyQuestionpoolExport:

Public Member Functions

 ilSurveyQuestionpoolExport (&$a_spl_obj, $a_mode="xml")
 Constructor public.
 getInstId ()
 buildExportFile ($questions)
 build export file (complete zip file)
 buildExportFileXML ($questions)
 build xml export file

Data Fields

 $err
 $db
 $ilias
 $spl_obj
 $inst_id
 $mode

Detailed Description

Export class for survey questionpools.

Author
Helmut Schottmüller helmu.nosp@m.t.sc.nosp@m.hottm.nosp@m.uell.nosp@m.er@ma.nosp@m.c.co.nosp@m.m
Version
Id:
class.ilSurveyQuestionpoolExport.php 19369 2009-03-13 09:22:29Z hschottm

Definition at line 33 of file class.ilSurveyQuestionpoolExport.php.

Member Function Documentation

ilSurveyQuestionpoolExport::buildExportFile (   $questions)

build export file (complete zip file)

public

Returns

Definition at line 84 of file class.ilSurveyQuestionpoolExport.php.

References buildExportFileXML().

{
switch ($this->mode)
{
default:
return $this->buildExportFileXML($questions);
break;
}
}

+ Here is the call graph for this function:

ilSurveyQuestionpoolExport::buildExportFileXML (   $questions)

build xml export file

Definition at line 97 of file class.ilSurveyQuestionpoolExport.php.

References $filename, and $ilBench.

Referenced by buildExportFile().

{
global $ilBench;
$ilBench->start("SurveyQuestionpoolExport", "buildExportFile");
// create directories
$this->spl_obj->createExportDirectory();
// get Log File
$expDir = $this->spl_obj->getExportDirectory();
include_once "./Services/Logging/classes/class.ilLog.php";
$expLog = new ilLog($expDir, "export.log");
$expLog->delete();
$expLog->setLogFormat("");
$expLog->write(date("[y-m-d H:i:s] ")."Start Export");
// write qti file
$qti_file = fopen($expDir . "/" . $this->filename, "w");
fwrite($qti_file, $this->spl_obj->toXML($questions));
fclose($qti_file);
// destroy writer object
$this->xml->_XmlWriter;
$expLog->write(date("[y-m-d H:i:s] ")."Finished Export");
$ilBench->stop("SurveyQuestionpoolExport", "buildExportFile");
}

+ Here is the caller graph for this function:

ilSurveyQuestionpoolExport::getInstId ( )

Definition at line 72 of file class.ilSurveyQuestionpoolExport.php.

References $inst_id.

{
}
ilSurveyQuestionpoolExport::ilSurveyQuestionpoolExport ( $a_spl_obj,
  $a_mode = "xml" 
)

Constructor public.

Definition at line 46 of file class.ilSurveyQuestionpoolExport.php.

References $ilDB, $ilErr, and $ilias.

{
global $ilErr, $ilDB, $ilias;
$this->spl_obj =& $a_spl_obj;
$this->err =& $ilErr;
$this->ilias =& $ilias;
$this->db =& $ilDB;
$this->mode = $a_mode;
$settings = $this->ilias->getAllSettings();
$this->inst_id = IL_INST_ID;
$date = time();
switch($this->mode)
{
default:
$this->export_dir = $this->spl_obj->getExportDirectory();
$this->subdir = $date."__".$this->inst_id."__".
"spl"."__".$this->spl_obj->getId();
$this->filename = $this->subdir.".xml";
break;
}
}

Field Documentation

ilSurveyQuestionpoolExport::$db

Definition at line 36 of file class.ilSurveyQuestionpoolExport.php.

ilSurveyQuestionpoolExport::$err

Definition at line 35 of file class.ilSurveyQuestionpoolExport.php.

ilSurveyQuestionpoolExport::$ilias

Definition at line 37 of file class.ilSurveyQuestionpoolExport.php.

Referenced by ilSurveyQuestionpoolExport().

ilSurveyQuestionpoolExport::$inst_id

Definition at line 39 of file class.ilSurveyQuestionpoolExport.php.

Referenced by getInstId().

ilSurveyQuestionpoolExport::$mode

Definition at line 40 of file class.ilSurveyQuestionpoolExport.php.

ilSurveyQuestionpoolExport::$spl_obj

Definition at line 38 of file class.ilSurveyQuestionpoolExport.php.


The documentation for this class was generated from the following file: