19 declare(strict_types=1);
48 $this->notes = $DIC->notes();
50 $this->
user = $DIC->user();
51 $this->poll_image_factory =
new PollImageFactory();
56 return array(
"4.3.0",
"5.0.0",
"10.0");
59 protected function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
61 return "http://www.ilias.de/xml/Modules/Poll/" . $a_entity;
67 protected function getTypes(
string $a_entity,
string $a_version): array
69 if ($a_entity === self::ENTITY) {
75 "Description" =>
"text",
78 "ViewResults" =>
"integer",
86 "Description" =>
"text",
89 "ViewResults" =>
"integer",
91 "ShowResultsAs" =>
"integer",
92 "ShowComments" =>
"integer",
93 "MaxAnswers" =>
"integer",
94 "ResultSort" =>
"integer",
95 "NonAnon" =>
"integer",
96 "Period" =>
"integer",
97 "PeriodBegin" =>
"integer",
98 "PeriodEnd" =>
"integer" 106 "Description" =>
"text",
107 "Question" =>
"text",
109 "ViewResults" =>
"integer",
110 "ShowResultsAs" =>
"integer",
111 "ShowComments" =>
"integer",
112 "MaxAnswers" =>
"integer",
113 "ResultSort" =>
"integer",
114 "NonAnon" =>
"integer",
115 "Period" =>
"integer",
116 "PeriodBegin" =>
"integer",
117 "PeriodEnd" =>
"integer" 123 if ($a_entity ===
"poll_answer") {
124 switch ($a_version) {
130 "PollId" =>
"integer",
141 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
145 if ($a_entity === self::ENTITY) {
146 switch ($a_version) {
149 "pl.question,pl.image,pl.view_results" .
151 " JOIN object_data od ON (od.obj_id = pl.id)" .
152 " WHERE " .
$ilDB->in(
"pl.id", $a_ids,
false,
"integer") .
153 " AND od.type = " .
$ilDB->quote(
"poll",
"text"));
157 ",pl.question,pl.image,pl.view_results,pl.show_results_as" .
158 ",pl.max_answers,pl.result_sort,pl.non_anon,pl.period,pl.period_begin,pl.period_end" .
160 " JOIN object_data od ON (od.obj_id = pl.id)" .
161 " WHERE " .
$ilDB->in(
"pl.id", $a_ids,
false,
"integer") .
162 " AND od.type = " .
$ilDB->quote(
"poll",
"text"));
166 ",pl.question,pl.view_results,pl.show_results_as" .
167 ",pl.max_answers,pl.result_sort,pl.non_anon,pl.period,pl.period_begin,pl.period_end" .
169 " JOIN object_data od ON (od.obj_id = pl.id)" .
170 " WHERE " .
$ilDB->in(
"pl.id", $a_ids,
false,
"integer") .
171 " AND od.type = " .
$ilDB->quote(
"poll",
"text"));
176 if ($a_entity ===
"poll_answer") {
177 switch ($a_version) {
182 " FROM il_poll_answer WHERE " .
183 $ilDB->in(
"poll_id", $a_ids,
false,
"integer"));
192 ?array $a_rec =
null,
198 "poll_answer" => array(
"ids" => $a_rec[
"Id"] ??
null)
204 public function getXmlRecord(
string $a_entity,
string $a_version, array $a_set): array
206 if ($a_entity === self::ENTITY) {
207 $resource = $this->poll_image_factory->handler()->getRessource(
208 $this->data_factory->objId((
int) $a_set[
"Id"])
210 if ($resource !==
null) {
211 $title = $resource->getTitle();
212 $path_in_container = ltrim($this->export->getExportDirInContainer(),
'/') .
'/image/' . $title;
213 $this->export->getExportWriter()->writeFilesByResourceId(
214 $resource->getIdentification()->serialize(),
221 $path_to_image = explode(
'/', $path_in_container);
222 unset($path_to_image[0]);
223 $path_to_image = implode(
'/', $path_to_image);
224 $a_set[
"Image"] = $path_to_image;
226 $a_set[
"Image"] =
'';
229 $a_set[
"ShowComments"] = $this->notes->domain()->commentsActive((
int) $a_set[
"Id"]);
239 string $a_schema_version
262 if ($new_id = $a_mapping->
getMapping(
"components/ILIAS/Container",
"objs", (
string) ($a_rec[
"Id"] ??
"0"))) {
270 $newObj->setTitle((
string) ($a_rec[
"Title"] ??
''));
271 $newObj->setDescription((
string) ($a_rec[
"Description"]));
272 if ((
int) $a_rec[
"MaxAnswers"]) {
273 $newObj->setMaxNumberOfAnswers((
int) $a_rec[
"MaxAnswers"]);
275 $newObj->setSortResultByVotes((
bool) ($a_rec[
"ResultSort"] ??
false));
276 $newObj->setNonAnonymous((
bool) ($a_rec[
"NonAnon"] ??
false));
277 if ((
int) $a_rec[
"ShowResultsAs"]) {
278 $newObj->setShowResultsAs((
int) $a_rec[
"ShowResultsAs"]);
280 $newObj->setShowComments((
bool) ($a_rec[
"ShowComments"] ??
false));
281 $newObj->setQuestion((
string) ($a_rec[
"Question"] ??
''));
283 $newObj->setVotingPeriod((
bool) ($a_rec[
"Period"] ?? 0));
284 $newObj->setVotingPeriodBegin((
int) ($a_rec[
"PeriodBegin"] ?? 0));
285 $newObj->setVotingPeriodEnd((
int) ($a_rec[
"PeriodEnd"] ?? 0));
290 $dir = str_replace(
"..",
"", (
string) ($a_rec[
"Dir"] ??
''));
291 if ($a_schema_version ===
"4.3.0" || $a_schema_version ===
"5.0.0") {
293 $name = $a_rec[
"Image"];
296 $name = basename($source);
298 $this->poll_image_factory->handler()->uploadImage(
299 $this->data_factory->objId($newObj->getId()),
306 $a_mapping->
addMapping(
"components/ILIAS/Poll",
"poll", (
string) ($a_rec[
"Id"] ??
"0"), (
string) $newObj->getId());
310 $poll_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/Poll",
"poll", (
string) ($a_rec[
"PollId"] ??
"0"));
313 $poll->saveAnswer((
string) ($a_rec[
"Answer"] ??
''), (
int) ($a_rec[
"pos"] ?? 10));
const VIEW_RESULTS_AFTER_VOTE
getTypes(string $a_entity, string $a_version)
PollImageFactoryInterface $poll_image_factory
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getMapping(string $a_comp, string $a_entity, string $a_old_id)
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
Needs to be overwritten for import use case.
getXmlRecord(string $a_entity, string $a_version, array $a_set)
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
__construct(Container $dic, ilPlugin $plugin)
DataFactory $data_factory
readData(string $a_entity, string $a_version, array $a_ids)
stripTags(array $rec, array $omit_keys=[])
getXmlNamespace(string $a_entity, string $a_schema_version)