Inheritance diagram for ilObjQuestionPoolGUI:
Collaboration diagram for ilObjQuestionPoolGUI:Public Member Functions | |
| ilObjQuestionPoolGUI ($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true) | |
| Constructor public. | |
| & | executeCommand () |
| execute command | |
| downloadFileObject () | |
| download file | |
| fullscreenObject () | |
| show fullscreen view | |
| filterObject () | |
| set question list filter | |
| resetFilterObject () | |
| resets filter | |
| download_paragraphObject () | |
| download source code paragraph | |
| uploadQplObject ($questions_only=false) | |
| imports question(s) into the questionpool | |
| importVerifiedFileObject () | |
| imports question(s) into the questionpool (after verification) | |
| cancelImportObject () | |
| uploadObject () | |
| importQuestionsObject () | |
| display the import form to import questions into the questionpool | |
| importObject () | |
| display dialogue for importing questionpools | |
| & | createQuestionObject () |
| create new question | |
| & | createQuestionForTestObject () |
| create new question | |
| saveObject () | |
| save object public | |
| assessmentObject () | |
| show assessment data of object | |
| getAddParameter () | |
| questionObject () | |
| deleteQuestionsObject () | |
| delete questions confirmation screen | |
| _deleteQuestionsObject () | |
| delete questions confirmation screen | |
| confirmDeleteQuestionsObject () | |
| delete questions | |
| cancelDeleteQuestionsObject () | |
| Cancel question deletion. | |
| duplicateObject () | |
| duplicate a question | |
| exportQuestionObject () | |
| export question | |
| questionsObject () | |
| list questions of question pool | |
| updateObject () | |
| updates object entry in object_data | |
| setLocator ($a_tree="", $a_id="", $scriptname="repository.php", $question_title="") | |
| set Locator | |
| prepareOutput () | |
| setPageEditorTabs () | |
| output tabs | |
| getPageEditorTabs (&$tabs_gui) | |
| get tabs | |
| setQuestionTabs () | |
| exportObject () | |
| createExportFileObject () | |
| create export file | |
| downloadExportFileObject () | |
| download export file | |
| confirmDeleteExportFileObject () | |
| confirmation screen for export file deletion | |
| cancelDeleteExportFileObject () | |
| cancel deletion of export files | |
| deleteExportFileObject () | |
| delete export files | |
| & | editQuestionForTestObject () |
| edit question | |
| createObject () | |
| form for new content object creation | |
| importFileObject () | |
| form for new questionpool object import | |
| getTabs (&$tabs_gui) | |
| adds tabs to tab gui object | |
Definition at line 45 of file class.ilObjQuestionPoolGUI.php.
| ilObjQuestionPoolGUI::_deleteQuestionsObject | ( | ) |
delete questions confirmation screen
Definition at line 854 of file class.ilObjQuestionPoolGUI.php.
References $_POST, $_SESSION, $counter, ilObjectGUI::$data, $id, $query, ilUtil::getImagePath(), and sendInfo().
{
//echo "<br>ilObjQuestionPoolGUI->deleteQuestions()";
// duplicate button was pressed
if (count($_POST["q_id"]) < 1)
{
sendInfo($this->lng->txt("qpl_delete_select_none"), true);
$this->ctrl->redirect($this, "questions");
}
$checked_questions = $_POST["q_id"];
$_SESSION["ass_q_id"] = $_POST["q_id"];
sendInfo();
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.il_as_qpl_confirm_delete_questions.html", true);
// buidling SQL statements is not allowed in GUI classes!
$whereclause = join($checked_questions, " OR qpl_questions.question_id = ");
$whereclause = " AND (qpl_questions.question_id = " . $whereclause . ")";
$query = "SELECT qpl_questions.*, qpl_question_type.type_tag FROM qpl_questions, qpl_question_type WHERE qpl_questions.question_type_fi = qpl_question_type.question_type_id$whereclause ORDER BY qpl_questions.title";
$query_result = $this->ilias->db->query($query);
$colors = array("tblrow1", "tblrow2");
$counter = 0;
$img_locked = "<img src=\"" . ilUtil::getImagePath("locked.gif", true) . "\" alt=\"" . $this->lng->txt("locked") . "\" title=\"" . $this->lng->txt("locked") . "\" border=\"0\" />";
if ($query_result->numRows() > 0)
{
while ($data = $query_result->fetchRow(DB_FETCHMODE_OBJECT))
{
if (in_array($data->question_id, $checked_questions))
{
$this->tpl->setCurrentBlock("row");
$this->tpl->setVariable("COLOR_CLASS", $colors[$counter % 2]);
if ($this->object->isInUse($data->question_id))
{
$this->tpl->setVariable("TXT_LOCKED", $img_locked);
}
$this->tpl->setVariable("TXT_TITLE", $data->title);
$this->tpl->setVariable("TXT_DESCRIPTION", $data->comment);
$this->tpl->setVariable("TXT_TYPE", $this->lng->txt($data->type_tag));
$this->tpl->parseCurrentBlock();
$counter++;
}
}
}
foreach ($checked_questions as $id)
{
$this->tpl->setCurrentBlock("hidden");
$this->tpl->setVariable("HIDDEN_NAME", "id_$id");
$this->tpl->setVariable("HIDDEN_VALUE", "1");
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("adm_content");
$this->tpl->setVariable("TXT_TITLE", $this->lng->txt("tst_question_title"));
$this->tpl->setVariable("TXT_DESCRIPTION", $this->lng->txt("description"));
$this->tpl->setVariable("TXT_TYPE", $this->lng->txt("tst_question_type"));
$this->tpl->setVariable("TXT_LOCKED", $this->lng->txt("locked"));
$this->tpl->setVariable("BTN_CONFIRM", $this->lng->txt("confirm"));
$this->tpl->setVariable("BTN_CANCEL", $this->lng->txt("cancel"));
$this->tpl->setVariable("FORM_ACTION", $this->ctrl->getFormAction($this));
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::assessmentObject | ( | ) |
show assessment data of object
Definition at line 714 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $counter, ASS_Question::_getTitle(), ASS_Question::_getTotalAnswers(), ASS_Question::_getTotalRightAnswers(), sendInfo(), and setLocator().
{
$this->tpl->addBlockFile("CONTENT", "content", "tpl.il_as_qpl_content.html", true);
$this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
// catch feedback message
sendInfo();
$this->setLocator();
$title = $this->lng->txt("qpl_assessment_of_questions");
if (!empty($title))
{
$this->tpl->setVariable("HEADER", $title);
}
include_once("./assessment/classes/class.assQuestion.php");
$total_of_answers = ASS_Question::_getTotalAnswers($_GET["q_id"]);
$counter = 0;
$color_class = array("tblrow1", "tblrow2");
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.il_as_qpl_assessment_of_questions.html", true);
if (!$total_of_answers)
{
$this->tpl->setCurrentBlock("emptyrow");
$this->tpl->setVariable("TXT_NO_ASSESSMENT", $this->lng->txt("qpl_assessment_no_assessment_of_questions"));
$this->tpl->setVariable("COLOR_CLASS", $color_class[$counter % 2]);
$this->tpl->parseCurrentBlock();
}
else
{
$this->tpl->setCurrentBlock("row");
$this->tpl->setVariable("TXT_RESULT", $this->lng->txt("qpl_assessment_total_of_answers"));
$this->tpl->setVariable("TXT_VALUE", $total_of_answers);
$this->tpl->setVariable("COLOR_CLASS", $color_class[$counter % 2]);
$counter++;
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("row");
$this->tpl->setVariable("TXT_RESULT", $this->lng->txt("qpl_assessment_total_of_right_answers"));
$this->tpl->setVariable("TXT_VALUE", sprintf("%2.2f", ASS_Question::_getTotalRightAnswers($_GET["edit"]) * 100.0) . " %");
$this->tpl->setVariable("COLOR_CLASS", $color_class[$counter % 2]);
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("adm_content");
$this->tpl->setVariable("TXT_QUESTION_TITLE", ASS_Question::_getTitle($_GET["q_id"]));
$this->tpl->setVariable("TXT_RESULT", $this->lng->txt("result"));
$this->tpl->setVariable("TXT_VALUE", $this->lng->txt("value"));
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::cancelDeleteExportFileObject | ( | ) |
cancel deletion of export files
Definition at line 1819 of file class.ilObjQuestionPoolGUI.php.
{
session_unregister("ilExportFiles");
$this->ctrl->redirect($this, "export");
}
| ilObjQuestionPoolGUI::cancelDeleteQuestionsObject | ( | ) |
Cancel question deletion.
Definition at line 934 of file class.ilObjQuestionPoolGUI.php.
{
$this->ctrl->redirect($this, "questions");
}
| ilObjQuestionPoolGUI::cancelImportObject | ( | ) |
Definition at line 481 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $_POST, ilObjectGUI::getReturnLocation(), and ilUtil::redirect().
{
if ($_POST["questions_only"] == 1)
{
$this->ctrl->redirect($this, "questions");
}
else
{
ilUtil::redirect($this->getReturnLocation("cancel", "adm_object.php?ref_id=" . $_GET["ref_id"]));
}
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::confirmDeleteExportFileObject | ( | ) |
confirmation screen for export file deletion
Definition at line 1769 of file class.ilObjQuestionPoolGUI.php.
References $_POST, $_SESSION, $counter, $file, ilUtil::getImagePath(), sendInfo(), and ilUtil::switchColor().
{
if(!isset($_POST["file"]))
{
$this->ilias->raiseError($this->lng->txt("no_checkbox"),$this->ilias->error_obj->MESSAGE);
}
//$this->setTabs();
// SAVE POST VALUES
$_SESSION["ilExportFiles"] = $_POST["file"];
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.confirm_deletion.html", true);
sendInfo($this->lng->txt("info_delete_sure"));
$this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
// BEGIN TABLE HEADER
$this->tpl->setCurrentBlock("table_header");
$this->tpl->setVariable("TEXT",$this->lng->txt("objects"));
$this->tpl->parseCurrentBlock();
// BEGIN TABLE DATA
$counter = 0;
foreach($_POST["file"] as $file)
{
$this->tpl->setCurrentBlock("table_row");
$this->tpl->setVariable("CSS_ROW",ilUtil::switchColor(++$counter,"tblrow1","tblrow2"));
$this->tpl->setVariable("TEXT_CONTENT", $file);
$this->tpl->parseCurrentBlock();
}
// cancel/confirm button
$this->tpl->setVariable("IMG_ARROW",ilUtil::getImagePath("arrow_downright.gif"));
$buttons = array( "cancelDeleteExportFile" => $this->lng->txt("cancel"),
"deleteExportFile" => $this->lng->txt("confirm"));
foreach ($buttons as $name => $value)
{
$this->tpl->setCurrentBlock("operation_btn");
$this->tpl->setVariable("BTN_NAME",$name);
$this->tpl->setVariable("BTN_VALUE",$value);
$this->tpl->parseCurrentBlock();
}
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::confirmDeleteQuestionsObject | ( | ) |
delete questions
Definition at line 920 of file class.ilObjQuestionPoolGUI.php.
References $_SESSION, and sendInfo().
{
// delete questions after confirmation
sendInfo($this->lng->txt("qpl_questions_deleted"), true);
foreach ($_SESSION["ass_q_id"] as $key => $value)
{
$this->object->deleteQuestion($value["question_id"]);
}
$this->ctrl->redirect($this, "questions");
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::createExportFileObject | ( | ) |
create export file
Definition at line 1711 of file class.ilObjQuestionPoolGUI.php.
References $rbacsystem, exportObject(), and sendInfo().
{
global $rbacsystem;
if ($rbacsystem->checkAccess("write", $this->ref_id))
{
require_once("assessment/classes/class.ilQuestionpoolExport.php");
$question_ids =& $this->object->getAllQuestionIds();
$qpl_exp = new ilQuestionpoolExport($this->object, "xml", $question_ids);
$qpl_exp->buildExportFile();
$this->exportObject();
//ilUtil::deliverData($this->object->to_xml(), $this->object->getTitle() . ".xml");
/*
$add_parameter = $this->getAddParameter();
if (!defined("ILIAS_MODULE"))
{
define("ILIAS_MODULE", "assessment");
}
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.il_as_tst_export.html", true);
$this->tpl->setCurrentBlock("adm_content");
$this->tpl->setVariable("FORMACTION", $add_parameter);
$this->tpl->setVariable("BUTTON_EXPORT", $this->lng->txt("export"));
$this->tpl->parseCurrentBlock();*/
}
else
{
sendInfo("cannot_export_qpl");
}
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::createObject | ( | ) |
form for new content object creation
Reimplemented from ilObjectGUI.
Definition at line 1864 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $_POST, $_SESSION, ilObjectGUI::$data, $rbacsystem, ilObjectGUI::getFormAction(), ilObjectGUI::getTargetFrame(), ilObjectGUI::getTemplateFile(), and ilUtil::prepareFormOutput().
Referenced by importFileObject().
{
global $rbacsystem;
$new_type = $_POST["new_type"] ? $_POST["new_type"] : $_GET["new_type"];
if (!$rbacsystem->checkAccess("create", $_GET["ref_id"], $new_type))
{
$this->ilias->raiseError($this->lng->txt("permission_denied"),$this->ilias->error_obj->MESSAGE);
}
else
{
$this->getTemplateFile("create", $new_type);
// fill in saved values in case of error
$data = array();
$data["fields"] = array();
$data["fields"]["title"] = ilUtil::prepareFormOutput($_SESSION["error_post_vars"]["Fobject"]["title"],true);
$data["fields"]["desc"] = ilUtil::prepareFormOutput($_SESSION["error_post_vars"]["Fobject"]["desc"]);
foreach ($data["fields"] as $key => $val)
{
$this->tpl->setVariable("TXT_".strtoupper($key), $this->lng->txt($key));
$this->tpl->setVariable(strtoupper($key), $val);
if ($this->prepare_output)
{
$this->tpl->parseCurrentBlock();
}
}
$this->tpl->setVariable("FORMACTION", $this->getFormAction("save","adm_object.php?cmd=gateway&ref_id=".
$_GET["ref_id"]."&new_type=".$new_type));
$this->tpl->setVariable("TXT_HEADER", $this->lng->txt($new_type."_new"));
$this->tpl->setVariable("TXT_CANCEL", $this->lng->txt("cancel"));
$this->tpl->setVariable("TXT_SUBMIT", $this->lng->txt($new_type."_add"));
$this->tpl->setVariable("CMD_SUBMIT", "save");
$this->tpl->setVariable("TARGET", $this->getTargetFrame("save"));
$this->tpl->setVariable("TXT_REQUIRED_FLD", $this->lng->txt("required_field"));
$this->tpl->setVariable("TXT_IMPORT_QPL", $this->lng->txt("import_qpl"));
$this->tpl->setVariable("TXT_QPL_FILE", $this->lng->txt("qpl_upload_file"));
$this->tpl->setVariable("NEW_TYPE", $this->type);
$this->tpl->setVariable("TXT_IMPORT", $this->lng->txt("import"));
$this->tpl->parseCurrentBlock();
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| & ilObjQuestionPoolGUI::createQuestionForTestObject | ( | ) |
create new question
Definition at line 668 of file class.ilObjQuestionPoolGUI.php.
References $_GET, ASS_QuestionGUI::_getQuestionGUI(), and executeCommand().
{
//echo "<br>create--".$_GET["new_type"];
$q_gui =& ASS_QuestionGUI::_getQuestionGUI($_GET["sel_question_types"]);
$q_gui->object->setObjId($this->object->getId());
$this->ctrl->setCmdClass(get_class($q_gui));
$this->ctrl->setCmd("editQuestion");
$ret =& $this->executeCommand();
return $ret;
}
Here is the call graph for this function:| & ilObjQuestionPoolGUI::createQuestionObject | ( | ) |
create new question
Definition at line 653 of file class.ilObjQuestionPoolGUI.php.
References $_POST, ASS_QuestionGUI::_getQuestionGUI(), and executeCommand().
{
//echo "<br>create--".$_POST["sel_question_types"];
$q_gui =& ASS_QuestionGUI::_getQuestionGUI($_POST["sel_question_types"]);
$q_gui->object->setObjId($this->object->getId());
$this->ctrl->setCmdClass(get_class($q_gui));
$this->ctrl->setCmd("editQuestion");
$ret =& $this->executeCommand();
return $ret;
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::deleteExportFileObject | ( | ) |
delete export files
Definition at line 1828 of file class.ilObjQuestionPoolGUI.php.
References $_SESSION, $file, and ilUtil::delDir().
{
$export_dir = $this->object->getExportDirectory();
foreach($_SESSION["ilExportFiles"] as $file)
{
$exp_file = $export_dir."/".$file;
$exp_dir = $export_dir."/".substr($file, 0, strlen($file) - 4);
if (@is_file($exp_file))
{
unlink($exp_file);
}
if (@is_dir($exp_dir))
{
ilUtil::delDir($exp_dir);
}
}
$this->ctrl->redirect($this, "export");
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::deleteQuestionsObject | ( | ) |
delete questions confirmation screen
Definition at line 778 of file class.ilObjQuestionPoolGUI.php.
References $_POST, $_SESSION, $counter, ilUtil::getImagePath(), and sendInfo().
{
//echo "<br>ilObjQuestionPoolGUI->deleteQuestions()";
// duplicate button was pressed
if (count($_POST["q_id"]) < 1)
{
sendInfo($this->lng->txt("qpl_delete_select_none"), true);
$this->ctrl->redirect($this, "questions");
}
$checked_questions =& $this->object->getQuestionDetails($_POST["q_id"]);
$deleteable_questions =& $this->object->getDeleteableQuestionDetails($_POST["q_id"]);
$used_questions =& $this->object->getUsedQuestionDetails($_POST["q_id"]);
$_SESSION["ass_q_id"] = $deleteable_questions;
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.il_as_qpl_confirm_delete_questions.html", true);
$colors = array("tblrow1", "tblrow2");
$counter = 0;
include_once "./classes/class.ilUtil.php";
$img_locked = "<img src=\"" . ilUtil::getImagePath("locked.gif", true) . "\" alt=\"" . $this->lng->txt("locked") . "\" title=\"" . $this->lng->txt("locked") . "\" border=\"0\" />";
if (count($deleteable_questions) > 0)
{
foreach ($deleteable_questions as $question)
{
$this->tpl->setCurrentBlock("row");
$this->tpl->setVariable("COLOR_CLASS", $colors[$counter % 2]);
if ($this->object->isInUse($question["question_id"]))
{
$this->tpl->setVariable("TXT_LOCKED", $img_locked);
}
$this->tpl->setVariable("TXT_TITLE", $question["title"]);
$this->tpl->setVariable("TXT_DESCRIPTION", $question["comment"]);
$this->tpl->setVariable("TXT_TYPE", $this->lng->txt($question["type_tag"]));
$this->tpl->parseCurrentBlock();
$counter++;
$this->tpl->setCurrentBlock("hidden");
$this->tpl->setVariable("HIDDEN_NAME", "id_" . $question["question_id"]);
$this->tpl->setVariable("HIDDEN_VALUE", "1");
$this->tpl->parseCurrentBlock();
}
}
else
{
$this->tpl->setCurrentBlock("emptyrow");
$this->tpl->setVariable("TEXT_EMPTY_ROW", $this->lng->txt("qpl_delete_no_deleteable_questions"));
$this->tpl->parseCurrentBlock();
}
if (count($used_questions))
{
foreach ($used_questions as $question)
{
$this->tpl->setCurrentBlock("undeleteable_row");
$this->tpl->setVariable("QUESTION_TITLE", $question["title"]);
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("undeleteable_questions");
$this->tpl->setVariable("TEXT_UNDELETEABLE_QUESTIONS", $this->lng->txt("qpl_delete_describe_undeleteable_questions"));
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("adm_content");
$this->tpl->setVariable("TXT_TITLE", $this->lng->txt("tst_question_title"));
$this->tpl->setVariable("TXT_DESCRIPTION", $this->lng->txt("description"));
$this->tpl->setVariable("TXT_TYPE", $this->lng->txt("tst_question_type"));
$this->tpl->setVariable("TXT_LOCKED", $this->lng->txt("locked"));
$this->tpl->setVariable("BTN_CONFIRM", $this->lng->txt("confirm"));
$this->tpl->setVariable("BTN_CANCEL", $this->lng->txt("cancel"));
$this->tpl->setVariable("FORM_ACTION", $this->ctrl->getFormAction($this));
$this->tpl->setVariable("DELETE_QUESTION", $this->lng->txt("qpl_confirm_delete_questions"));
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::download_paragraphObject | ( | ) |
download source code paragraph
Definition at line 262 of file class.ilObjQuestionPoolGUI.php.
{
require_once("content/classes/Pages/class.ilPageObject.php");
$pg_obj =& new ilPageObject("qpl", $_GET["pg_id"]);
$pg_obj->send_paragraph ($_GET["par_id"], $_GET["downloadtitle"]);
exit;
}
| ilObjQuestionPoolGUI::downloadExportFileObject | ( | ) |
download export file
Definition at line 1745 of file class.ilObjQuestionPoolGUI.php.
References $_POST, ilUtil::deliverFile(), and sendInfo().
{
if(!isset($_POST["file"]))
{
sendInfo($this->lng->txt("no_checkbox"), true);
$this->ctrl->redirect($this, "export");
}
if (count($_POST["file"]) > 1)
{
sendInfo($this->lng->txt("cont_select_max_one_item"), true);
$this->ctrl->redirect($this, "export");
}
$export_dir = $this->object->getExportDirectory();
ilUtil::deliverFile($export_dir."/".$_POST["file"][0],
$_POST["file"][0]);
$this->ctrl->redirect($this, "export");
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::downloadFileObject | ( | ) |
| ilObjQuestionPoolGUI::duplicateObject | ( | ) |
duplicate a question
Definition at line 942 of file class.ilObjQuestionPoolGUI.php.
References $_POST, and sendInfo().
{
// duplicate button was pressed
if (count($_POST["q_id"]) > 0)
{
foreach ($_POST["q_id"] as $key => $value)
{
$this->object->duplicateQuestion($value);
}
}
else
{
sendInfo($this->lng->txt("qpl_duplicate_select_none"), true);
}
$this->ctrl->redirect($this, "questions");
}
Here is the call graph for this function:| & ilObjQuestionPoolGUI::editQuestionForTestObject | ( | ) |
edit question
Definition at line 1850 of file class.ilObjQuestionPoolGUI.php.
References $_GET, ASS_QuestionGUI::_getQuestionGUI(), and executeCommand().
{
//echo "<br>create--".$_GET["new_type"];
$q_gui =& ASS_QuestionGUI::_getQuestionGUI("", $_GET["q_id"]);
$this->ctrl->setCmdClass(get_class($q_gui));
$this->ctrl->setCmd("editQuestion");
$ret =& $this->executeCommand();
return $ret;
}
Here is the call graph for this function:| & ilObjQuestionPoolGUI::executeCommand | ( | ) |
execute command
Reimplemented from ilObjectGUI.
Definition at line 91 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $_POST, $cmd, $count, $rbacsystem, ilObjectGUI::$ref_id, ASS_QuestionGUI::_getQuestionGUI(), sendInfo(), ilObjectGUI::setAdminTabs(), and setQuestionTabs().
Referenced by createQuestionForTestObject(), createQuestionObject(), and editQuestionForTestObject().
{
$cmd = $this->ctrl->getCmd("questions");
$next_class = $this->ctrl->getNextClass($this);
$this->ctrl->setReturn($this, "questions");
if ($_GET["q_id"] < 1)
{
$q_type = ($_POST["sel_question_types"] != "")
? $_POST["sel_question_types"]
: $_GET["sel_question_types"];
}
if ($cmd != "createQuestion" && $cmd != "createQuestionForTest"
&& $next_class != "ilpageobjectgui")
{
if (($_GET["test_ref_id"] != "") or ($_GET["calling_test"]))
{
$ref_id = $_GET["test_ref_id"];
if (!$ref_id)
{
$ref_id = $_GET["calling_test"];
}
include_once "./classes/class.ilTabsGUI.php";
$tabs_gui =& new ilTabsGUI();
$tabs_gui->addTarget("back",
"test.php?ref_id=$ref_id&cmd=questions", "", "");
// output tabs
$this->tpl->setVariable("TABS", $tabs_gui->getHTML());
}
}
//echo "<br>nextclass:$next_class:cmd:$cmd:";
switch($next_class)
{
case 'ilmdeditorgui':
$this->setAdminTabs();
include_once 'Services/MetaData/classes/class.ilMDEditorGUI.php';
$md_gui =& new ilMDEditorGUI($this->object->getId(), 0, $this->object->getType());
$md_gui->addObserver($this->object,'MDUpdateListener','General');
$this->ctrl->forwardCommand($md_gui);
break;
case "ilpageobjectgui":
$q_gui =& ASS_QuestionGUI::_getQuestionGUI("", $_GET["q_id"]);
$q_gui->object->setObjId($this->object->getId());
$question =& $q_gui->object;
$this->tpl->setVariable("HEADER", $question->getTitle());
$this->ctrl->saveParameter($this, "q_id");
$count = $question->isInUse();
if (($count) && strcmp($this->ctrl->getCmd(), "view") == 0)
{
global $rbacsystem;
if ($rbacsystem->checkAccess("write", $this->ref_id))
{
sendInfo(sprintf($this->lng->txt("qpl_question_is_in_use"), $count));
}
}
include_once("content/classes/Pages/class.ilPageObjectGUI.php");
$this->lng->loadLanguageModule("content");
$this->setQuestionTabs();
//$this->setPageEditorTabs();
$this->ctrl->setReturnByClass("ilPageObjectGUI", "view");
$this->ctrl->setReturn($this, "questions");
$page =& new ilPageObject("qpl", $_GET["q_id"]);
$page_gui =& new ilPageObjectGUI($page);
if (strlen($this->ctrl->getCmd()) == 0)
{
$this->ctrl->setCmdClass(get_class($page_gui));
$this->ctrl->setCmd("preview");
}
$page_gui->setQuestionXML($question->to_xml(false, false, true));
$page_gui->setTemplateTargetVar("ADM_CONTENT");
$page_gui->setOutputMode("edit");
$page_gui->setHeader($question->getTitle());
$page_gui->setFileDownloadLink("questionpool.php?cmd=downloadFile".
"&ref_id=".$_GET["ref_id"]);
$page_gui->setFullscreenLink("questionpool.php?cmd=fullscreen".
"&ref_id=".$_GET["ref_id"]);
$page_gui->setSourcecodeDownloadScript("questionpool.php?ref_id=".$_GET["ref_id"]);
$page_gui->setPresentationTitle($question->getTitle());
$ret =& $this->ctrl->forwardCommand($page_gui);
break;
case "ass_multiplechoicegui":
case "ass_clozetestgui":
case "ass_orderingquestiongui":
case "ass_matchingquestiongui":
case "ass_imagemapquestiongui":
case "ass_javaappletgui":
case "ass_textquestiongui":
$this->setQuestionTabs();
$this->ctrl->setReturn($this, "questions");
$q_gui =& ASS_QuestionGUI::_getQuestionGUI($q_type, $_GET["q_id"]);
$q_gui->object->setObjId($this->object->getId());
$count = $q_gui->object->isInUse();
if (($count) && strcmp($this->ctrl->getCmd(), "assessment") != 0)
{
global $rbacsystem;
if ($rbacsystem->checkAccess("write", $this->ref_id))
{
sendInfo(sprintf($this->lng->txt("qpl_question_is_in_use"), $count));
}
}
$ret =& $this->ctrl->forwardCommand($q_gui);
break;
default:
// echo "setAdminTabs<br>";
if ($cmd != "createQuestion" && $cmd != "createQuestionForTest" && $cmd != "editQuestionForTest")
{
$this->setAdminTabs();
}
$cmd.= "Object";
$ret =& $this->$cmd();
break;
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjQuestionPoolGUI::exportObject | ( | ) |
Definition at line 1599 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $num, $tbl, ilObjectGUI::$tree, ilUtil::getImagePath(), and ilUtil::switchColor().
Referenced by createExportFileObject().
{
global $tree;
//$this->setTabs();
//add template for view button
$this->tpl->addBlockfile("BUTTONS", "buttons", "tpl.buttons.html");
// create export file button
$this->tpl->setCurrentBlock("btn_cell");
$this->tpl->setVariable("BTN_LINK", "questionpool.php?ref_id=".$_GET["ref_id"]."&cmd=createExportFile");
$this->tpl->setVariable("BTN_TXT", $this->lng->txt("ass_create_export_file"));
$this->tpl->parseCurrentBlock();
// view last export log button
/*
if (is_file($this->object->getExportDirectory()."/export.log"))
{
$this->tpl->setCurrentBlock("btn_cell");
$this->tpl->setVariable("BTN_LINK", $this->ctrl->getLinkTarget($this, "viewExportLog"));
$this->tpl->setVariable("BTN_TXT", $this->lng->txt("cont_view_last_export_log"));
$this->tpl->parseCurrentBlock();
}*/
$export_dir = $this->object->getExportDirectory();
$export_files = $this->object->getExportFiles($export_dir);
// create table
require_once("classes/class.ilTableGUI.php");
$tbl = new ilTableGUI();
// load files templates
$this->tpl->addBlockfile("ADM_CONTENT", "adm_content", "tpl.table.html");
// load template for table content data
$this->tpl->addBlockfile("TBL_CONTENT", "tbl_content", "tpl.export_file_row.html", true);
$num = 0;
$this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
$tbl->setTitle($this->lng->txt("ass_export_files"));
$tbl->setHeaderNames(array("<input type=\"checkbox\" name=\"chb_check_all\" value=\"1\" onclick=\"setCheckboxes('ObjectItems', 'file', document.ObjectItems.chb_check_all.checked);\" />", $this->lng->txt("ass_file"),
$this->lng->txt("ass_size"), $this->lng->txt("date") ));
$tbl->enabled["sort"] = false;
$tbl->setColumnWidth(array("1%", "49%", "25%", "25%"));
// control
$tbl->setOrderColumn($_GET["sort_by"]);
$tbl->setOrderDirection($_GET["sort_order"]);
$tbl->setLimit($_GET["limit"]);
$tbl->setOffset($_GET["offset"]);
$this->tpl->setVariable("COLUMN_COUNTS", 4);
// delete button
$this->tpl->setVariable("IMG_ARROW", ilUtil::getImagePath("arrow_downright.gif"));
$this->tpl->setCurrentBlock("tbl_action_btn");
$this->tpl->setVariable("BTN_NAME", "confirmDeleteExportFile");
$this->tpl->setVariable("BTN_VALUE", $this->lng->txt("delete"));
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("tbl_action_btn");
$this->tpl->setVariable("BTN_NAME", "downloadExportFile");
$this->tpl->setVariable("BTN_VALUE", $this->lng->txt("download"));
$this->tpl->parseCurrentBlock();
// footer
$tbl->setFooter("tblfooter",$this->lng->txt("previous"),$this->lng->txt("next"));
//$tbl->disable("footer");
$tbl->setMaxCount(count($export_files));
$export_files = array_slice($export_files, $_GET["offset"], $_GET["limit"]);
$tbl->render();
if(count($export_files) > 0)
{
$i=0;
foreach($export_files as $exp_file)
{
$this->tpl->setCurrentBlock("tbl_content");
$this->tpl->setVariable("TXT_FILENAME", $exp_file);
$css_row = ilUtil::switchColor($i++, "tblrow1", "tblrow2");
$this->tpl->setVariable("CSS_ROW", $css_row);
$this->tpl->setVariable("TXT_SIZE", filesize($export_dir."/".$exp_file));
$this->tpl->setVariable("CHECKBOX_ID", $exp_file);
$file_arr = explode("__", $exp_file);
$this->tpl->setVariable("TXT_DATE", date("Y-m-d H:i:s",$file_arr[0]));
$this->tpl->parseCurrentBlock();
}
} //if is_array
else
{
$this->tpl->setCurrentBlock("notfound");
$this->tpl->setVariable("TXT_OBJECT_NOT_FOUND", $this->lng->txt("obj_not_found"));
$this->tpl->setVariable("NUM_COLS", 3);
$this->tpl->parseCurrentBlock();
}
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjQuestionPoolGUI::exportQuestionObject | ( | ) |
export question
Definition at line 962 of file class.ilObjQuestionPoolGUI.php.
References $_POST, ilUtil::deliverFile(), exit, and sendInfo().
{
// export button was pressed
if (count($_POST["q_id"]) > 0)
{
require_once("assessment/classes/class.ilQuestionpoolExport.php");
$qpl_exp = new ilQuestionpoolExport($this->object, "xml", $_POST["q_id"]);
$export_file = $qpl_exp->buildExportFile();
$filename = $export_file;
$filename = preg_replace("/.*\//", "", $filename);
ilUtil::deliverFile($export_file, $filename);
exit();
}
else
{
sendInfo($this->lng->txt("qpl_export_select_none"), true);
}
$this->ctrl->redirect($this, "questions");
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::filterObject | ( | ) |
set question list filter
Definition at line 244 of file class.ilObjQuestionPoolGUI.php.
References questionsObject().
{
$this->questionsObject();
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::fullscreenObject | ( | ) |
show fullscreen view
Definition at line 231 of file class.ilObjQuestionPoolGUI.php.
References $_GET.
{
$page =& new ilPageObject("qpl", $_GET["pg_id"]);
include_once("content/classes/Pages/class.ilPageObjectGUI.php");
$page_gui =& new ilPageObjectGUI($page);
$page_gui->showMediaFullscreen();
}
| ilObjQuestionPoolGUI::getAddParameter | ( | ) |
Definition at line 762 of file class.ilObjQuestionPoolGUI.php.
References $_GET.
Referenced by questionsObject().
Here is the caller graph for this function:| ilObjQuestionPoolGUI::getPageEditorTabs | ( | &$ | tabs_gui | ) |
get tabs
Definition at line 1377 of file class.ilObjQuestionPoolGUI.php.
References $rbacsystem.
Referenced by setPageEditorTabs().
{
global $rbacsystem;
if ($rbacsystem->checkAccess('write', $this->ref_id))
{
// edit page
$tabs_gui->addTarget("edit_content",
$this->ctrl->getLinkTargetByClass("ilPageObjectGUI", "view"), "view",
"ilPageObjectGUI");
}
// preview page
$tabs_gui->addTarget("preview",
$this->ctrl->getLinkTargetByClass("ilPageObjectGUI", "preview"), "preview",
"ilPageObjectGUI");
// back to upper context
$tabs_gui->addTarget("back",
$this->ctrl->getLinkTarget($this, "questions"), "questions",
"ilObjQuestionPoolGUI");
}
Here is the caller graph for this function:| ilObjQuestionPoolGUI::getTabs | ( | &$ | tabs_gui | ) |
adds tabs to tab gui object
| object | $tabs_gui ilTabsGUI object |
Reimplemented from ilObjectGUI.
Definition at line 1929 of file class.ilObjQuestionPoolGUI.php.
{
$tabs_gui->getTargetsByObjectType($this, "qpl");
$tabs_gui->addTarget("meta_data",
$this->ctrl->getLinkTargetByClass('ilmdeditorgui',''),
"meta_data", get_class($this));
}
| ilObjQuestionPoolGUI::ilObjQuestionPoolGUI | ( | $ | a_data, | |
| $ | a_id, | |||
| $ | a_call_by_reference = true, |
|||
| $ | a_prepare_output = true | |||
| ) |
Constructor public.
Definition at line 51 of file class.ilObjQuestionPoolGUI.php.
References $ilCtrl, ilObjectGUI::$lng, ilObjStyleSheet::getContentStylePath(), ilObjStyleSheet::getSyntaxStylePath(), ilObjectGUI::ilObjectGUI(), prepareOutput(), and ilObjectGUI::setTabTargetScript().
{
global $lng, $ilCtrl;
$this->type = "qpl";
$lng->loadLanguageModule("assessment");
$this->ilObjectGUI($a_data,$a_id,$a_call_by_reference, false);
$this->ctrl =& $ilCtrl;
$this->ctrl->saveParameter($this, array("ref_id", "test_ref_id", "calling_test"));
if (!defined("ILIAS_MODULE"))
{
$this->setTabTargetScript("adm_object.php");
}
else
{
$this->setTabTargetScript("questionpool.php");
}
if ($a_prepare_output)
{
include_once("classes/class.ilObjStyleSheet.php");
$this->prepareOutput();
$this->tpl->setCurrentBlock("ContentStyle");
$this->tpl->setVariable("LOCATION_CONTENT_STYLESHEET",
ilObjStyleSheet::getContentStylePath(0));
$this->tpl->parseCurrentBlock();
// syntax style
$this->tpl->setCurrentBlock("SyntaxStyle");
$this->tpl->setVariable("LOCATION_SYNTAX_STYLESHEET",
ilObjStyleSheet::getSyntaxStylePath());
$this->tpl->parseCurrentBlock();
}
//echo "<br>ilObjQuestionPool_End of constructor.";
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::importFileObject | ( | ) |
form for new questionpool object import
Definition at line 1913 of file class.ilObjQuestionPoolGUI.php.
References createObject(), sendInfo(), and uploadQplObject().
{
if (strcmp($_FILES["xmldoc"]["tmp_name"], "") == 0)
{
sendInfo($this->lng->txt("qpl_select_file_for_import"));
$this->createObject();
return;
}
$this->uploadQplObject();
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::importObject | ( | ) |
display dialogue for importing questionpools
public
Reimplemented from ilObjectGUI.
Definition at line 632 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $rbacsystem, and ilObjectGUI::getTemplateFile().
Referenced by uploadQplObject().
{
global $rbacsystem;
if (!$rbacsystem->checkAccess("create", $_GET["ref_id"]))
{
$this->ilias->raiseError($this->lng->txt("permission_denied"),$this->ilias->error_obj->MESSAGE);
}
$this->getTemplateFile("import", "qpl");
$this->tpl->setVariable("FORMACTION", "adm_object.php?&ref_id=".$_GET["ref_id"]."&cmd=gateway&new_type=".$this->type);
$this->tpl->setVariable("BTN_NAME", "uploadQpl");
$this->tpl->setVariable("TXT_UPLOAD", $this->lng->txt("import"));
$this->tpl->setVariable("NEW_TYPE", $this->type);
$this->tpl->setVariable("TXT_IMPORT_QPL", $this->lng->txt("import_qpl"));
$this->tpl->setVariable("TXT_SELECT_MODE", $this->lng->txt("select_mode"));
$this->tpl->setVariable("TXT_SELECT_FILE", $this->lng->txt("select_file"));
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjQuestionPoolGUI::importQuestionsObject | ( | ) |
display the import form to import questions into the questionpool
Definition at line 616 of file class.ilObjQuestionPoolGUI.php.
{
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.il_as_import_question.html", true);
$this->tpl->setCurrentBlock("adm_content");
$this->tpl->setVariable("TEXT_IMPORT_QUESTION", $this->lng->txt("import_question"));
$this->tpl->setVariable("TEXT_SELECT_FILE", $this->lng->txt("select_file"));
$this->tpl->setVariable("TEXT_UPLOAD", $this->lng->txt("upload"));
$this->tpl->setVariable("FORM_ACTION", $this->ctrl->getFormAction($this));
$this->tpl->parseCurrentBlock();
}
| ilObjQuestionPoolGUI::importVerifiedFileObject | ( | ) |
imports question(s) into the questionpool (after verification)
Definition at line 421 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $_POST, $_SESSION, $result, ilObjQuestionPool::_getImportDirectory(), ilUtil::delDir(), ilObjectGUI::getReturnLocation(), and ilUtil::redirect().
{
if ($_POST["questions_only"] == 1)
{
$newObj =& $this->object;
}
else
{
// create new questionpool object
$newObj = new ilObjQuestionpool(true);
// set type of questionpool object
$newObj->setType($_GET["new_type"]);
// set title of questionpool object to "dummy"
$newObj->setTitle("dummy");
// set description of questionpool object
$newObj->setDescription("questionpool import");
// create the questionpool class in the ILIAS database (object_data table)
$newObj->create(true);
// create a reference for the questionpool object in the ILIAS database (object_reference table)
$newObj->createReference();
// put the questionpool object in the administration tree
$newObj->putInTree($_GET["ref_id"]);
// get default permissions and set the permissions for the questionpool object
$newObj->setPermissions($_GET["ref_id"]);
// notify the questionpool object and all its parent objects that a "new" object was created
$newObj->notify("new",$_GET["ref_id"],$_GET["parent_non_rbac_id"],$_GET["ref_id"],$newObj->getRefId());
}
// start parsing of QTI files
include_once "./assessment/classes/class.ilQTIParser.php";
$qtiParser = new ilQTIParser($_SESSION["qpl_import_qti_file"], IL_MO_PARSE_QTI, $newObj->getId(), $_POST["ident"]);
$result = $qtiParser->startParsing();
// import page data
include_once ("content/classes/class.ilContObjParser.php");
$contParser = new ilContObjParser($newObj, $_SESSION["qpl_import_xml_file"], $_SESSION["qpl_import_subdir"]);
$contParser->setQuestionMapping($qtiParser->getImportMapping());
$contParser->startParsing();
// set another question pool name (if possible)
$qpl_name = $_POST["qpl_new"];
if ((strcmp($qpl_name, $newObj->getTitle()) != 0) && (strlen($qpl_name) > 0))
{
$newObj->setTitle($qpl_name);
$newObj->update();
}
// delete import directory
ilUtil::delDir(ilObjQuestionPool::_getImportDirectory());
if ($_POST["questions_only"] == 1)
{
$this->ctrl->redirect($this, "questions");
}
else
{
ilUtil::redirect($this->getReturnLocation("save", "adm_object.php?ref_id=" . $_GET["ref_id"]));
}
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::prepareOutput | ( | ) |
Reimplemented from ilObjectGUI.
Definition at line 1337 of file class.ilObjQuestionPoolGUI.php.
References $_POST, sendInfo(), ilObjectGUI::setAdminTabs(), and setLocator().
Referenced by ilObjQuestionPoolGUI().
{
$this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
$this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
$title = $this->object->getTitle();
// catch feedback message
sendInfo();
if (!empty($title))
{
$this->tpl->setVariable("HEADER", $title);
}
if (!defined("ILIAS_MODULE"))
{
$this->setAdminTabs($_POST["new_type"]);
}
$this->setLocator();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjQuestionPoolGUI::questionObject | ( | ) |
| ilObjQuestionPoolGUI::questionsObject | ( | ) |
list questions of question pool
Definition at line 985 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $_POST, $_SESSION, $counter, ilObjectGUI::$data, $query, $rbacsystem, $type, ASS_QuestionGUI::_getGUIClassNameForId(), ilFormat::formatDate(), ilFormat::ftimestamp2dateDB(), getAddParameter(), and ilUtil::getImagePath().
Referenced by filterObject(), and resetFilterObject().
{
global $rbacsystem;
$type = $_GET["sel_question_types"];
// reset test_id SESSION variable
$_SESSION["test_id"] = "";
$add_parameter = $this->getAddParameter();
// create an array of all checked checkboxes
$checked_questions = array();
foreach ($_POST as $key => $value)
{
if (preg_match("/cb_(\d+)/", $key, $matches))
{
array_push($checked_questions, $matches[1]);
}
}
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.qpl_questions.html", true);
if ($rbacsystem->checkAccess('write', $this->ref_id))
{
$this->tpl->addBlockFile("CREATE_QUESTION", "create_question", "tpl.il_as_create_new_question.html", true);
$this->tpl->addBlockFile("A_BUTTONS", "a_buttons", "tpl.il_as_qpl_action_buttons.html", true);
}
$this->tpl->addBlockFile("FILTER_QUESTION_MANAGER", "filter_questions", "tpl.il_as_qpl_filter_questions.html", true);
// create filter form
$filter_fields = array(
"title" => $this->lng->txt("title"),
"comment" => $this->lng->txt("description"),
"author" => $this->lng->txt("author"),
);
$this->tpl->setCurrentBlock("filterrow");
foreach ($filter_fields as $key => $value)
{
$this->tpl->setVariable("VALUE_FILTER_TYPE", "$key");
$this->tpl->setVariable("NAME_FILTER_TYPE", "$value");
if (strcmp($_POST["sel_filter_type"], $key) == 0)
{
$this->tpl->setVariable("VALUE_FILTER_SELECTED", " selected=\"selected\"");
}
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("filter_questions");
$this->tpl->setVariable("FILTER_TEXT", $this->lng->txt("filter"));
$this->tpl->setVariable("TEXT_FILTER_BY", $this->lng->txt("by"));
$this->tpl->setVariable("VALUE_FILTER_TEXT", $_POST["filter_text"]);
$this->tpl->setVariable("VALUE_SUBMIT_FILTER", $this->lng->txt("set_filter"));
$this->tpl->setVariable("VALUE_RESET_FILTER", $this->lng->txt("reset_filter"));
$this->tpl->parseCurrentBlock();
// create edit buttons & table footer
if ($rbacsystem->checkAccess('write', $this->ref_id))
{
$this->tpl->setCurrentBlock("standard");
$this->tpl->setVariable("DELETE", $this->lng->txt("delete"));
$this->tpl->setVariable("DUPLICATE", $this->lng->txt("duplicate"));
$this->tpl->setVariable("EXPORT", $this->lng->txt("export"));
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("Footer");
$this->tpl->setVariable("ARROW", "<img src=\"" . ilUtil::getImagePath("arrow_downright.gif") . "\" alt=\"\">");
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("QTab");
// reset the filter
$startrow = 0;
if ($_GET["prevrow"])
{
$startrow = $_GET["prevrow"];
}
if ($_GET["nextrow"])
{
$startrow = $_GET["nextrow"];
}
if ($_GET["startrow"])
{
$startrow = $_GET["startrow"];
}
if (!$_GET["sort"])
{
// default sort order
$_GET["sort"] = array("title" => "ASC");
}
$table = $this->object->getQuestionsTable($_GET["sort"], $_POST["filter_text"], $_POST["sel_filter_type"], $startrow);
$colors = array("tblrow1", "tblrow2");
$img_locked = "<img src=\"" . ilUtil::getImagePath("locked.gif", true) . "\" alt=\"" . $this->lng->txt("locked") . "\" title=\"" . $this->lng->txt("locked") . "\" border=\"0\" />";
$counter = 0;
$editable = $rbacsystem->checkAccess('write', $this->ref_id);
foreach ($table["rows"] as $data)
{
if ($data["complete"] == 0)
{
$this->tpl->setCurrentBlock("qpl_warning");
$this->tpl->setVariable("IMAGE_WARNING", ilUtil::getImagePath("warning.png"));
$this->tpl->setVariable("ALT_WARNING", $this->lng->txt("warning_question_not_complete"));
$this->tpl->setVariable("TITLE_WARNING", $this->lng->txt("warning_question_not_complete"));
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("QTab");
}
$this->tpl->setVariable("QUESTION_ID", $data["question_id"]);
$class = strtolower(ASS_QuestionGUI::_getGUIClassNameForId($data["question_id"]));
$this->ctrl->setParameterByClass("ilpageobjectgui", "q_id", $data["question_id"]);
$this->ctrl->setParameterByClass($class, "q_id", $data["question_id"]);
if ($editable)
{
$this->tpl->setVariable("TXT_EDIT", $this->lng->txt("edit"));
$this->tpl->setVariable("LINK_EDIT", $this->ctrl->getLinkTargetByClass("ilpageobjectgui", "view"));
}
$this->tpl->setVariable("QUESTION_TITLE", "<strong>" .$data["title"] . "</strong>");
$this->tpl->setVariable("TXT_PREVIEW", $this->lng->txt("preview"));
$this->tpl->setVariable("LINK_PREVIEW", $this->ctrl->getLinkTargetByClass("ilpageobjectgui", "preview"));
$this->tpl->setVariable("QUESTION_COMMENT", $data["comment"]);
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt($data["type_tag"]));
$this->tpl->setVariable("LINK_ASSESSMENT", $this->ctrl->getLinkTargetByClass($class, "assessment"));
$this->tpl->setVariable("TXT_ASSESSMENT", $this->lng->txt("qpl_assessment_of_questions"));
$this->tpl->setVariable("IMG_ASSESSMENT",
ilUtil::getImagePath("assessment.gif", true));
$this->tpl->setVariable("QUESTION_AUTHOR", $data["author"]);
$this->tpl->setVariable("QUESTION_CREATED", ilFormat::formatDate(ilFormat::ftimestamp2dateDB($data["created"]), "date"));
$this->tpl->setVariable("QUESTION_UPDATED", ilFormat::formatDate(ilFormat::ftimestamp2dateDB($data["TIMESTAMP14"]), "date"));
$this->tpl->setVariable("COLOR_CLASS", $colors[$counter % 2]);
$this->tpl->parseCurrentBlock();
$counter++;
}
if ($table["rowcount"] > count($table["rows"]))
{
$nextstep = $table["nextrow"] + $table["step"];
if ($nextstep > $table["rowcount"])
{
$nextstep = $table["rowcount"];
}
$sort = "";
if (is_array($_GET["sort"]))
{
$key = key($_GET["sort"]);
$sort = "&sort[$key]=" . $_GET["sort"]["$key"];
}
$counter = 1;
for ($i = 0; $i < $table["rowcount"]; $i += $table["step"])
{
$this->tpl->setCurrentBlock("pages");
if ($table["startrow"] == $i)
{
$this->tpl->setVariable("PAGE_NUMBER", "<span class=\"inactivepage\">$counter</span>");
}
else
{
$this->tpl->setVariable("PAGE_NUMBER", "<a href=\"" . $this->ctrl->getFormAction($this) . "$sort&nextrow=$i" . "\">$counter</a>");
}
$this->tpl->parseCurrentBlock();
$counter++;
}
$this->tpl->setCurrentBlock("navigation_bottom");
$this->tpl->setVariable("TEXT_ITEM", $this->lng->txt("item"));
$this->tpl->setVariable("TEXT_ITEM_START", $table["startrow"] + 1);
$end = $table["startrow"] + $table["step"];
if ($end > $table["rowcount"])
{
$end = $table["rowcount"];
}
$this->tpl->setVariable("TEXT_ITEM_END", $end);
$this->tpl->setVariable("TEXT_OF", strtolower($this->lng->txt("of")));
$this->tpl->setVariable("TEXT_ITEM_COUNT", $table["rowcount"]);
$this->tpl->setVariable("TEXT_PREVIOUS", $this->lng->txt("previous"));
$this->tpl->setVariable("TEXT_NEXT", $this->lng->txt("next"));
$this->tpl->setVariable("HREF_PREV_ROWS", $this->ctrl->getFormAction($this) . "$sort&prevrow=" . $table["prevrow"]);
$this->tpl->setVariable("HREF_NEXT_ROWS", $this->ctrl->getFormAction($this) . "$sort&nextrow=" . $table["nextrow"]);
$this->tpl->parseCurrentBlock();
}
// if there are no questions, display a message
if ($counter == 0)
{
$this->tpl->setCurrentBlock("Emptytable");
$this->tpl->setVariable("TEXT_EMPTYTABLE", $this->lng->txt("no_questions_available"));
$this->tpl->parseCurrentBlock();
}
if ($rbacsystem->checkAccess('write', $this->ref_id))
{
// "create question" form
$this->tpl->setCurrentBlock("QTypes");
$query = "SELECT * FROM qpl_question_type ORDER BY question_type_id";
$query_result = $this->ilias->db->query($query);
while ($data = $query_result->fetchRow(DB_FETCHMODE_OBJECT))
{
// temporary disable java questions
// if ($data->type_tag != "qt_javaapplet")
// {
$this->tpl->setVariable("QUESTION_TYPE_ID", $data->type_tag);
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt($data->type_tag));
$this->tpl->parseCurrentBlock();
// }
}
$this->tpl->setCurrentBlock("CreateQuestion");
$this->tpl->setVariable("QUESTION_ADD", $this->lng->txt("create"));
$this->tpl->setVariable("ACTION_QUESTION_ADD", $this->ctrl->getFormAction($this));
$this->tpl->setVariable("QUESTION_IMPORT", $this->lng->txt("import"));
$this->tpl->parseCurrentBlock();
}
// define the sort column parameters
$sort = array(
"title" => $_GET["sort"]["title"],
"comment" => $_GET["sort"]["comment"],
"type" => $_GET["sort"]["type"],
"author" => $_GET["sort"]["author"],
"created" => $_GET["sort"]["created"],
"updated" => $_GET["sort"]["updated"]
);
foreach ($sort as $key => $value)
{
if (strcmp($value, "ASC") == 0)
{
$sort[$key] = "DESC";
}
else
{
$sort[$key] = "ASC";
}
}
$this->tpl->setCurrentBlock("adm_content");
// create table header
$this->ctrl->setParameterByClass(get_class($this), "startrow", $table["startrow"]);
$this->tpl->setVariable("QUESTION_TITLE", "<a href=\"" . $this->ctrl->getFormAction($this) . "&sort[title]=" . $sort["title"] . "\">" . $this->lng->txt("title") . "</a>" . $table["images"]["title"]);
$this->tpl->setVariable("QUESTION_COMMENT", "<a href=\"" . $this->ctrl->getFormAction($this) . "&sort[comment]=" . $sort["comment"] . "\">" . $this->lng->txt("description") . "</a>". $table["images"]["comment"]);
$this->tpl->setVariable("QUESTION_TYPE", "<a href=\"" . $this->ctrl->getFormAction($this) . "&sort[type]=" . $sort["type"] . "\">" . $this->lng->txt("question_type") . "</a>" . $table["images"]["type"]);
$this->tpl->setVariable("QUESTION_AUTHOR", "<a href=\"" . $this->ctrl->getFormAction($this) . "&sort[author]=" . $sort["author"] . "\">" . $this->lng->txt("author") . "</a>" . $table["images"]["author"]);
$this->tpl->setVariable("QUESTION_CREATED", "<a href=\"" . $this->ctrl->getFormAction($this) . "&sort[created]=" . $sort["created"] . "\">" . $this->lng->txt("create_date") . "</a>" . $table["images"]["created"]);
$this->tpl->setVariable("QUESTION_UPDATED", "<a href=\"" . $this->ctrl->getFormAction($this) . "&sort[updated]=" . $sort["updated"] . "\">" . $this->lng->txt("last_update") . "</a>" . $table["images"]["updated"]);
$this->tpl->setVariable("BUTTON_CANCEL", $this->lng->txt("cancel"));
$this->tpl->setVariable("ACTION_QUESTION_FORM", $this->ctrl->getFormAction($this));
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjQuestionPoolGUI::resetFilterObject | ( | ) |
resets filter
Definition at line 252 of file class.ilObjQuestionPoolGUI.php.
References $_POST, and questionsObject().
{
$_POST["filter_text"] = "";
$_POST["sel_filter_type"] = "";
$this->questionsObject();
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::saveObject | ( | ) |
save object public
Reimplemented from ilObjectGUI.
Definition at line 684 of file class.ilObjQuestionPoolGUI.php.
References $rbacadmin, exit, ilObjectGUI::getReturnLocation(), ilUtil::redirect(), and sendInfo().
{
global $rbacadmin;
// create and insert forum in objecttree
$newObj = parent::saveObject();
// setup rolefolder & default local roles
//$roles = $newObj->initDefaultRoles();
// ...finally assign role to creator of object
//$rbacadmin->assignUser($roles[0], $newObj->getOwner(), "y");
// put here object specific stuff
// always send a message
sendInfo($this->lng->txt("object_added"),true);
$returnlocation = "questionpool.php";
if (!defined("ILIAS_MODULE"))
{
$returnlocation = "adm_object.php";
}
ilUtil::redirect($this->getReturnLocation("save","$returnlocation?".$this->link_params));
exit();
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::setLocator | ( | $ | a_tree = "", |
|
| $ | a_id = "", |
|||
| $ | scriptname = "repository.php", |
|||
| $ | question_title = "" | |||
| ) |
set Locator
| object | tree object | |
| integer | reference id | |
| scriptanme | that is used for linking; if not set adm_object.php is used public |
Definition at line 1244 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $_POST, $id, $ilias_locator, $path, $row, and ilUtil::removeTrailingPathSeparators().
Referenced by assessmentObject(), and prepareOutput().
{
//echo "<br>ilObjQuestionPoolGUI->setLocator()";
$ilias_locator = new ilLocatorGUI(false);
if (!is_object($a_tree))
{
$a_tree =& $this->tree;
}
if (!($a_id))
{
$a_id = $_GET["ref_id"];
}
if (!($scriptname))
{
$scriptname = "repository.php";
}
$path = $a_tree->getPathFull($a_id);
//check if object isn't in tree, this is the case if parent_parent is set
// TODO: parent_parent no longer exist. need another marker
if ($a_parent_parent)
{
//$subObj = getObject($a_ref_id);
$subObj =& $this->ilias->obj_factory->getInstanceByRefId($a_ref_id);
$path[] = array(
"id" => $a_ref_id,
"title" => $this->lng->txt($subObj->getTitle())
);
}
// this is a stupid workaround for a bug in PEAR:IT
$modifier = 1;
if (isset($_GET["obj_id"]))
{
$modifier = 0;
}
// ### AA 03.11.10 added new locator GUI class ###
$i = 1;
if (!defined("ILIAS_MODULE"))
{
foreach ($path as $key => $row)
{
$ilias_locator->navigate($i++, $row["title"], ilUtil::removeTrailingPathSeparators(ILIAS_HTTP_PATH) . "/adm_object.php?ref_id=".$row["child"],"");
}
}
else
{
foreach ($path as $key => $row)
{
if (strcmp($row["title"], "ILIAS") == 0)
{
$row["title"] = $this->lng->txt("repository");
}
if ($this->ref_id == $row["child"])
{
$param = "&cmd=questions";
$ilias_locator->navigate($i++, $row["title"], ilUtil::removeTrailingPathSeparators(ILIAS_HTTP_PATH) . "/assessment/questionpool.php" . "?ref_id=".$row["child"] . $param,"");
switch ($_GET["cmd"])
{
case "question":
$id = $_GET["edit"];
if (!$id)
{
$id = $_POST["id"];
}
if ($question_title)
{
if ($id > 1)
{
$ilias_locator->navigate($i++, $question_title, ilUtil::removeTrailingPathSeparators(ILIAS_HTTP_PATH) . "/assessment/questionpool.php" . "?ref_id=".$row["child"] . "&cmd=question&edit=$id","");
}
}
break;
}
}
else
{
$ilias_locator->navigate($i++, $row["title"], ilUtil::removeTrailingPathSeparators(ILIAS_HTTP_PATH) . "/" . $scriptname."?cmd=frameset&ref_id=".$row["child"],"");
}
}
if (isset($_GET["obj_id"]))
{
$obj_data =& $this->ilias->obj_factory->getInstanceByObjId($_GET["obj_id"]);
$ilias_locator->navigate($i++,$obj_data->getTitle(),$scriptname."?ref_id=".$_GET["ref_id"]."&obj_id=".$_GET["obj_id"],"");
}
}
$ilias_locator->output(true);
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjQuestionPoolGUI::setPageEditorTabs | ( | ) |
output tabs
Definition at line 1362 of file class.ilObjQuestionPoolGUI.php.
References getPageEditorTabs().
{
// catch feedback message
include_once("classes/class.ilTabsGUI.php");
$tabs_gui =& new ilTabsGUI();
$this->getPageEditorTabs($tabs_gui);
$this->tpl->setVariable("TABS", $tabs_gui->getHTML());
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::setQuestionTabs | ( | ) |
Definition at line 1400 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $rbacsystem, and ASS_Question::getQuestionTypeFromDb().
Referenced by executeCommand().
{
// echo "<br>setQuestionTabs<br>";
global $rbacsystem;
$this->ctrl->setParameterByClass("ilpageobjectgui", "q_id", $_GET["q_id"]);
$q_type = ASS_Question::getQuestionTypeFromDb($_GET["q_id"]);
include_once "./classes/class.ilTabsGUI.php";
$tabs_gui =& new ilTabsGUI();
switch ($q_type)
{
case "qt_multiple_choice_sr":
$classname = "ASS_MultipleChoiceGUI";
$this->ctrl->setParameterByClass("ass_multiplechoicegui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_multiplechoicegui", "q_id", $_GET["q_id"]);
break;
case "qt_multiple_choice_mr":
$classname = "ASS_MultipleChoiceGUI";
$this->ctrl->setParameterByClass("ass_multiplechoicegui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_multiplechoicegui", "q_id", $_GET["q_id"]);
break;
case "qt_cloze":
$classname = "ASS_ClozeTestGUI";
$this->ctrl->setParameterByClass("ass_clozetestgui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_clozetestgui", "q_id", $_GET["q_id"]);
break;
case "qt_matching":
$classname = "ASS_MatchingQuestionGUI";
$this->ctrl->setParameterByClass("ass_matchingquestiongui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_matchingquestiongui", "q_id", $_GET["q_id"]);
break;
case "qt_ordering":
$classname = "ASS_OrderingQuestionGUI";
$this->ctrl->setParameterByClass("ass_orderingquestiongui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_orderingquestiongui", "q_id", $_GET["q_id"]);
break;
case "qt_imagemap":
$classname = "ASS_ImagemapQuestionGUI";
$this->ctrl->setParameterByClass("ass_imagemapquestiongui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_imagemapquestiongui", "q_id", $_GET["q_id"]);
break;
case "qt_javaapplet":
$classname = "ASS_JavaAppletGUI";
$this->ctrl->setParameterByClass("ass_javaappletgui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_javaappletgui", "q_id", $_GET["q_id"]);
break;
case "qt_text":
$classname = "ASS_TextQuestionGUI";
$this->ctrl->setParameterByClass("ass_textquestiongui", "sel_question_types", $q_type);
$this->ctrl->setParameterByClass("ass_textquestiongui", "q_id", $_GET["q_id"]);
break;
}
if (($_GET["q_id"]) && (strlen($_GET["calling_test"]) == 0))
{
if ($rbacsystem->checkAccess('write', $this->ref_id))
{
// edit page
$tabs_gui->addTarget("edit_content",
$this->ctrl->getLinkTargetByClass("ilPageObjectGUI", "view"), "view",
"ilPageObjectGUI");
}
$tabs_gui->addTarget("preview",
$this->ctrl->getLinkTargetByClass("ilPageObjectGUI", "preview"), "preview",
"ilPageObjectGUI");
}
if (($classname) && (strlen($_GET["calling_test"]) == 0))
{
if ($rbacsystem->checkAccess('write', $this->ref_id))
{
$tabs_gui->addTarget("edit_properties",
$this->ctrl->getLinkTargetByClass($classname, "editQuestion"), "editQuestion",
$classname);
}
}
if (strlen($_GET["calling_test"]) == 0)
{
$tabs_gui->addTarget("back",
$this->ctrl->getLinkTarget($this, "questions"), "questions",
"ilObjQuestionPoolGUI");
}
else
{
$tabs_gui->addTarget("backtocallingtest",
"test.php?cmd=questions&ref_id=".$_GET["calling_test"], "questions",
"ilObjQuestionPoolGUI");
}
$this->tpl->setVariable("TABS", $tabs_gui->getHTML());
// echo "<br>end setQuestionTabs<br>";
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjQuestionPoolGUI::updateObject | ( | ) |
updates object entry in object_data
public
Reimplemented from ilObjectGUI.
Definition at line 1229 of file class.ilObjQuestionPoolGUI.php.
References sendInfo().
{
// $this->update = $this->object->updateMetaData();
$this->update = $this->object->update();
sendInfo($this->lng->txt("msg_obj_modified"), true);
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::uploadObject | ( | ) |
imports question(s) into the questionpool
Definition at line 561 of file class.ilObjQuestionPoolGUI.php.
References uploadQplObject().
{
$this->uploadQplObject(true);
/* // check if file was uploaded
$source = $_FILES["xmldoc"]["tmp_name"];
$error = 0;
if (($source == 'none') || (!$source) || $_FILES["xmldoc"]["error"] > UPLOAD_ERR_OK)
{
// $this->ilias->raiseError("No file selected!",$this->ilias->error_obj->MESSAGE);
$error = 1;
}
// check correct file type
if (strcmp($_FILES["xmldoc"]["type"], "text/xml") == 0)
{
if (!$error)
{
$this->object->importObject($source);
}
}
else
{
// create import directory
ilObjQuestionPool::_createImportDirectory();
// copy uploaded file to import directory
$file = pathinfo($_FILES["xmldoc"]["name"]);
$full_path = ilObjQuestionPool::_getImportDirectory()."/".$_FILES["xmldoc"]["name"];
ilUtil::moveUploadedFile($_FILES["xmldoc"]["tmp_name"], $_FILES["xmldoc"]["name"], $full_path);
//move_uploaded_file($_FILES["xmldoc"]["tmp_name"], $full_path);
// unzip file
ilUtil::unzip($full_path);
// determine filename of xml file
$subdir = basename($file["basename"],".".$file["extension"]);
$xml_file = ilObjQuestionPool::_getImportDirectory()."/".$subdir."/".$subdir.".xml";
$qti_file = ilObjQuestionPool::_getImportDirectory()."/".$subdir."/". str_replace("qpl", "qti", $subdir).".xml";
// import qti data
$qtiresult = $this->object->importObject($qti_file);
// import page data
include_once ("content/classes/class.ilContObjParser.php");
$contParser = new ilContObjParser($this->object, $xml_file, $subdir);
$contParser->setQuestionMapping($this->object->getImportMapping());
$contParser->startParsing();
// delete import directory
ilUtil::delDir(ilObjQuestionPool::_getImportDirectory());
}
$this->questionsObject();*/
}
Here is the call graph for this function:| ilObjQuestionPoolGUI::uploadQplObject | ( | $ | questions_only = false |
) |
imports question(s) into the questionpool
Definition at line 273 of file class.ilObjQuestionPoolGUI.php.
References $_GET, $_SESSION, $counter, $file, $result, $xml, ilObjQuestionPool::_createImportDirectory(), ilObjQuestionPool::_getImportDirectory(), ilUtil::delDir(), ilObjectGUI::getFormAction(), ilUtil::getImagePath(), importObject(), ilUtil::moveUploadedFile(), sendInfo(), and ilUtil::unzip().
Referenced by importFileObject(), and uploadObject().
{
if ($_FILES["xmldoc"]["error"] > UPLOAD_ERR_OK)
{
sendInfo($this->lng->txt("error_upload"));
$this->importObject();
return;
}
// create import directory
ilObjQuestionPool::_createImportDirectory();
// copy uploaded file to import directory
$file = pathinfo($_FILES["xmldoc"]["name"]);
$full_path = ilObjQuestionPool::_getImportDirectory()."/".$_FILES["xmldoc"]["name"];
ilUtil::moveUploadedFile($_FILES["xmldoc"]["tmp_name"], $_FILES["xmldoc"]["name"], $full_path);
// unzip file
ilUtil::unzip($full_path);
// determine filenames of xml files
$subdir = basename($file["basename"],".".$file["extension"]);
$xml_file = ilObjQuestionPool::_getImportDirectory()."/".$subdir."/".$subdir.".xml";
$qti_file = ilObjQuestionPool::_getImportDirectory()."/".$subdir."/". str_replace("qpl", "qti", $subdir).".xml";
// start verification of QTI files
include_once "./assessment/classes/class.ilQTIParser.php";
$qtiParser = new ilQTIParser($qti_file, IL_MO_VERIFY_QTI, 0, "");
$result = $qtiParser->startParsing();
$founditems =& $qtiParser->getFoundItems();
if (count($founditems) == 0)
{
// nothing found
// delete import directory
ilUtil::delDir(ilObjQuestionPool::_getImportDirectory());
sendInfo($this->lng->txt("qpl_import_no_items"));
$this->importObject();
return;
}
$complete = 0;
$incomplete = 0;
foreach ($founditems as $item)
{
if (strlen($item["type"]))
{
$complete++;
}
else
{
$incomplete++;
}
}
if ($complete == 0)
{
// delete import directory
ilUtil::delDir(ilObjQuestionPool::_getImportDirectory());
sendInfo($this->lng->txt("qpl_import_non_ilias_files"));
$this->importObject();
return;
}
$_SESSION["qpl_import_xml_file"] = $xml_file;
$_SESSION["qpl_import_qti_file"] = $qti_file;
$_SESSION["qpl_import_subdir"] = $subdir;
// display of found questions
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.qpl_import_verification.html");
$row_class = array("tblrow1", "tblrow2");
$counter = 0;
foreach ($founditems as $item)
{
$this->tpl->setCurrentBlock("verification_row");
$this->tpl->setVariable("ROW_CLASS", $row_class[$counter++ % 2]);
$this->tpl->setVariable("QUESTION_TITLE", $item["title"]);
$this->tpl->setVariable("QUESTION_IDENT", $item["ident"]);
switch ($item["type"])
{
case "MULTIPLE CHOICE QUESTION":
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt("qt_multiple_choice"));
break;
case "CLOZE QUESTION":
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt("qt_cloze"));
break;
case "IMAGE MAP QUESTION":
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt("qt_imagemap"));
break;
case "JAVA APPLET QUESTION":
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt("qt_javaapplet"));
break;
case "MATCHING QUESTION":
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt("qt_matching"));
break;
case "ORDERING QUESTION":
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt("qt_ordering"));
break;
case "TEXT QUESTION":
$this->tpl->setVariable("QUESTION_TYPE", $this->lng->txt("qt_text"));
break;
}
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("import_qpl");
if (is_file($xml_file))
{
// read file into a string
$fh = @fopen($xml_file, "r") or die("");
$xml = @fread($fh, filesize($xml_file));
@fclose($fh);
if (preg_match("/<ContentObject.*?MetaData.*?General.*?Title[^>]*?>([^<]*?)</", $xml, $matches))
{
$this->tpl->setVariable("VALUE_NEW_QUESTIONPOOL", $matches[1]);
}
}
$this->tpl->setVariable("TEXT_CREATE_NEW_QUESTIONPOOL", $this->lng->txt("qpl_import_create_new_qpl"));
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("adm_content");
$this->tpl->setVariable("TEXT_TYPE", $this->lng->txt("question_type"));
$this->tpl->setVariable("TEXT_TITLE", $this->lng->txt("question_title"));
$this->tpl->setVariable("FOUND_QUESTIONS_INTRODUCTION", $this->lng->txt("qpl_import_verify_found_questions"));
if ($questions_only)
{
$this->tpl->setVariable("VERIFICATION_HEADING", $this->lng->txt("import_questions_into_qpl"));
$this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
}
else
{
$this->tpl->setVariable("VERIFICATION_HEADING", $this->lng->txt("import_qpl"));
$this->tpl->setVariable("FORMACTION", $this->getFormAction("save","adm_object.php?cmd=gateway&ref_id=".$_GET["ref_id"]."&new_type=".$this->type));
}
$this->tpl->setVariable("ARROW", ilUtil::getImagePath("arrow_downright.gif"));
$this->tpl->setVariable("VALUE_IMPORT", $this->lng->txt("import"));
$this->tpl->setVariable("VALUE_CANCEL", $this->lng->txt("cancel"));
$value_questions_only = 0;
if ($questions_only) $value_questions_only = 1;
$this->tpl->setVariable("VALUE_QUESTIONS_ONLY", $value_questions_only);
$this->tpl->parseCurrentBlock();
}
Here is the call graph for this function:
Here is the caller graph for this function:
1.7.1