33 $this->ctrl = $DIC->ctrl();
34 $this->lng = $DIC->language();
35 $this->access = $DIC->access();
36 $this->tree = $DIC->repositoryTree();
37 $ilCtrl = $DIC->ctrl();
38 $lng = $DIC->language();
40 $this->question = $a_question;
44 $this->
setId(
"il_svy_spl_sync");
46 $this->
setTitle($this->question->getTitle());
60 $this->
setRowTemplate(
"tpl.il_svy_qpl_sync.html",
"Modules/SurveyQuestionPool");
73 $table_data = array();
74 foreach ($this->question->getCopyIds(
true) as $survey_obj_id => $questions) {
75 $survey_id =
new ilObjSurvey($survey_obj_id,
false);
76 $survey_id->loadFromDB();
77 $survey_id = $survey_id->getSurveyId();
85 foreach ($ref_ids as $ref_id) {
86 if ($ilAccess->checkAccess(
"edit",
"", $ref_id)) {
93 $message =
$lng->txt(
"survey_sync_insufficient_permissions");
100 $survey_path = $this->
buildPath($ref_ids);
102 foreach ($questions as $question_id) {
109 $table_data[] = array(
110 "id" => $question_id,
112 "path" => $survey_path,
131 $this->tpl->setVariable(
"TXT_PATH",
$lng->txt(
"path"));
133 if ($a_set[
"message"]) {
134 $this->tpl->setCurrentBlock(
"message");
135 $this->tpl->setVariable(
"TXT_MESSAGE", $a_set[
"message"]);
136 $this->tpl->parseCurrentBlock();
141 $this->tpl->setCurrentBlock(
"checkbox");
142 $this->tpl->setVariable(
"ID", $a_set[
"id"]);
143 $this->tpl->parseCurrentBlock();
147 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
148 $this->tpl->setVariable(
"VALUE_PATH", implode(
"<br />", $a_set[
"path"]));
162 if (!count($ref_ids)) {
165 foreach ($ref_ids as $ref_id) {
169 $path_full =
$tree->getPathFull($ref_id);
170 if (
sizeof($path_full)) {
171 foreach ($path_full as
$data) {
172 if (++$counter < (count($path_full) - 1)) {
175 $path .=
" » ";
176 if ($ref_id != $data[
'ref_id']) {
177 $path .= $data[
'title'];
179 $path .= (
'<a target="_top" href="' .
181 $data[
'title'] .
'</a>');
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setDescription($a_val)
Set description.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
Survey sync table GUI class.
static _hasDatasets($survey_id)
static _getTitle($question_id)
Returns the question title of a question with a given id.
__construct($a_parent_obj, $a_parent_cmd, SurveyQuestion $a_question)
Constructor.
static _lookupTitle($a_id)
lookup object title
static _getAllReferences($a_id)
get all reference ids of object
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Basic class for all survey question types.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
importData()
Import data from DB.
fillRow($a_set)
Fill table row.
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
buildPath($ref_ids)
Build path with deep-link.