39 $this->content_style_domain = $DIC
42 $this->notes = $DIC->notes();
47 return array(
"4.3.0",
"5.0.0",
"5.3.0");
52 string $a_schema_version
54 return "https://www.ilias.de/xml/Modules/Blog/" . $a_entity;
61 if ($a_entity ===
"blog") {
67 "Description" =>
"text",
70 "FontColor" =>
"text",
73 "RssActive" =>
"integer",
74 "Approval" =>
"integer",
82 "Description" =>
"text",
85 "FontColor" =>
"text",
88 "RssActive" =>
"integer",
89 "Approval" =>
"integer",
91 "AbsShorten" =>
"integer",
92 "AbsShortenLen" =>
"integer",
93 "AbsImage" =>
"integer",
94 "AbsImgWidth" =>
"integer",
95 "AbsImgHeight" =>
"integer",
96 "NavMode" =>
"integer",
97 "NavListPost" =>
"integer",
98 "NavListMon" =>
"integer",
99 "Keywords" =>
"integer",
100 "Authors" =>
"integer",
101 "NavOrder" =>
"text",
102 "OvPost" =>
"integer",
110 "Description" =>
"text",
111 "Notes" =>
"integer",
113 "FontColor" =>
"text",
116 "RssActive" =>
"integer",
117 "Approval" =>
"integer",
118 "Dir" =>
"directory",
119 "AbsShorten" =>
"integer",
120 "AbsShortenLen" =>
"integer",
121 "AbsImage" =>
"integer",
122 "AbsImgWidth" =>
"integer",
123 "AbsImgHeight" =>
"integer",
124 "NavMode" =>
"integer",
125 "NavListMonWithPost" =>
"integer",
126 "NavListMon" =>
"integer",
127 "Keywords" =>
"integer",
128 "Authors" =>
"integer",
129 "NavOrder" =>
"text",
130 "OvPost" =>
"integer",
137 if ($a_entity ===
"blog_posting") {
138 switch ($a_version) {
144 "BlogId" =>
"integer",
145 "Title" =>
"integer",
148 "Approved" =>
"integer",
149 "LastWithdrawn" =>
"text" 163 if ($a_entity ===
"blog") {
164 switch ($a_version) {
167 "SELECT bl.id,od.title,od.description," .
168 "bl.notes,bl.bg_color,bl.font_color,bl.img,bl.ppic,bl.rss_active,bl.approval" .
170 " JOIN object_data od ON (od.obj_id = bl.id)" .
171 " WHERE " .
$ilDB->in(
"bl.id", $a_ids,
false,
"integer") .
172 " AND od.type = " .
$ilDB->quote(
"blog",
"text")
178 "SELECT bl.id,od.title,od.description," .
179 "bl.bg_color,bl.font_color,bl.img,bl.ppic,bl.rss_active,bl.approval," .
180 "bl.abs_shorten,bl.abs_shorten_len,bl.abs_image,bl.abs_img_width,bl.abs_img_height," .
181 "bl.nav_mode,bl.nav_list_post,bl.nav_list_mon,bl.keywords,bl.authors,bl.nav_order," .
184 " JOIN object_data od ON (od.obj_id = bl.id)" .
185 " WHERE " .
$ilDB->in(
"bl.id", $a_ids,
false,
"integer") .
186 " AND od.type = " .
$ilDB->quote(
"blog",
"text")
192 "SELECT bl.id,od.title,od.description," .
193 "bl.bg_color,bl.font_color,bl.img,bl.ppic,bl.rss_active,bl.approval," .
194 "bl.abs_shorten,bl.abs_shorten_len,bl.abs_image,bl.abs_img_width,bl.abs_img_height," .
195 "bl.nav_mode,bl.nav_list_mon_with_post,bl.nav_list_mon,bl.keywords,bl.authors,bl.nav_order," .
198 " JOIN object_data od ON (od.obj_id = bl.id)" .
199 " WHERE " .
$ilDB->in(
"bl.id", $a_ids,
false,
"integer") .
200 " AND od.type = " .
$ilDB->quote(
"blog",
"text")
206 if ($a_entity ===
"blog_posting") {
207 switch ($a_version) {
212 "SELECT id,blog_id,title,created,author,approved,last_withdrawn" .
213 " FROM il_blog_posting WHERE " .
214 $ilDB->in(
"blog_id", $a_ids,
false,
"integer")
216 foreach ($this->data as $idx => $item) {
224 foreach ($this->data as $idx => $item) {
228 foreach ($keywords as $kidx => $keyword) {
229 $this->data[$idx][
"Keyword" . $kidx] = $keyword;
239 ?array $a_rec = null,
242 if ($a_entity ===
"blog") {
244 "blog_posting" => array(
"ids" => $a_rec[
"Id"] ?? null)
255 if ($a_entity ===
"blog") {
256 $style = $this->content_style_domain->styleForObjId((
int) $a_set[
"Id"]);
259 $a_set[
"Dir"] = $dir;
261 $a_set[
"Style"] = $style->getStyleId();
264 $a_set[
"Notes"] = $this->notes->domain()->commentsActive((
int) $a_set[
"Id"]);
275 string $a_schema_version
282 if ($new_id = $a_mapping->
getMapping(
"Services/Container",
"objs", $a_rec[
"Id"])) {
289 $newObj->setTitle($a_rec[
"Title"] ??
"");
290 $newObj->setDescription($a_rec[
"Description"] ??
"");
291 $newObj->setNotesStatus((
bool) ($a_rec[
"Notes"] ??
false));
292 $newObj->setBackgroundColor($a_rec[
"BgColor"] ??
"");
293 $newObj->setFontColor($a_rec[
"FontColor"] ??
"");
294 $newObj->setProfilePicture((
bool) ($a_rec[
"Ppic"] ??
false));
295 $newObj->setRSS((
bool) ($a_rec[
"RssActive"] ??
false));
296 $newObj->setApproval((
bool) ($a_rec[
"Approval"] ??
false));
297 $newObj->setImage($a_rec[
"Img"] ??
"");
299 $newObj->setAbstractShorten((
bool) ($a_rec[
"AbsShorten"] ??
false));
300 $newObj->setAbstractShortenLength((
int) ($a_rec[
"AbsShortenLen"] ?? 0));
301 $newObj->setAbstractImage((
int) ($a_rec[
"AbsImage"] ?? 0));
302 $newObj->setAbstractImageWidth((
int) ($a_rec[
"AbsImgWidth"] ?? 0));
303 $newObj->setAbstractImageHeight((
int) ($a_rec[
"AbsImgHeight"] ?? 0));
304 $newObj->setNavMode((
int) ($a_rec[
"NavMode"] ?? 0));
305 if (($a_rec[
"NavListMonWithPost"] ?? 0) == 0) {
306 $newObj->setNavModeListMonthsWithPostings(3);
308 $newObj->setNavModeListMonthsWithPostings((
int) $a_rec[
"NavListMonWithPost"]);
311 if (($nav_list_months = $a_rec[
"NavListMon"] ?? null) !== null) {
312 $nav_list_months = (
int) $nav_list_months;
314 $newObj->setNavModeListMonths($nav_list_months);
315 $newObj->setKeywords((
bool) ($a_rec[
"Keywords"] ??
false));
316 $newObj->setAuthors((
bool) ($a_rec[
"Authors"] ??
false));
318 trim($a_rec[
"NavOrder"])
319 ? explode(
";", $a_rec[
"NavOrder"])
322 if (($ov_post = $a_rec[
"OvPost"] ?? null) !== null) {
323 $ov_post = (
int) $ov_post;
325 $newObj->setOverviewPostings($ov_post);
330 if ($a_rec[
"Img"] ??
false) {
331 $dir = str_replace(
"..",
"", $a_rec[
"Dir"]);
339 if ($a_rec[
"Style"] ??
false) {
340 self::$style_map[$a_rec[
"Style"]][] = $newObj->getId();
342 $a_mapping->
addMapping(
"Modules/Blog",
"blog", $a_rec[
"Id"], $newObj->getId());
346 $blog_id = (
int) $a_mapping->
getMapping(
"Modules/Blog",
"blog", $a_rec[
"BlogId"]);
349 $newObj->setBlogId($blog_id);
350 $newObj->setTitle($a_rec[
"Title"] ??
"");
352 $newObj->setApproved($a_rec[
"Approved"] ?? null);
357 $newObj->setAuthor((
int) $author[
"id"]);
359 $newObj->create(
true);
363 for ($loop = 0; $loop < 1000; $loop++) {
364 $idx =
"Keyword" . $loop;
365 if (isset($a_rec[$idx])) {
366 $keyword = trim($a_rec[$idx]);
367 if ($keyword !==
'') {
368 $keywords[] = $keyword;
372 if (count($keywords)) {
373 $newObj->updateKeywords($keywords);
376 $a_mapping->
addMapping(
"Services/COPage",
"pg",
"blp:" . $a_rec[
"Id"],
"blp:" . $newObj->getId());
getXmlNamespace(string $a_entity, string $a_schema_version)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
parseObjectExportId(string $a_id, ?string $a_fallback_id=null)
Parse export id.
ILIAS Style Content DomainService $content_style_domain
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
Blog Data set class This class implements the following entities:
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
createObjectExportId(string $a_type, string $a_id)
Build ilias export id.
getMapping(string $a_comp, string $a_entity, string $a_old_id)
static initStorage(int $a_id, string $a_subdir=null)
Init file system storage.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readData(string $a_entity, string $a_version, array $a_ids)
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 lookupBlogId(int $a_posting_id)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
getXmlRecord(string $a_entity, string $a_version, array $a_set)
__construct(Container $dic, ilPlugin $plugin)
static getKeywords(int $a_obj_id, int $a_posting_id)
getTypes(string $a_entity, string $a_version)
stripTags(array $rec, array $omit_keys=[])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...