25 return array(
"4.3.0",
"5.0.0",
"5.3.0");
33 return "http://www.ilias.de/xml/Modules/Blog/" . $a_entity;
39 protected function getTypes($a_entity, $a_version)
41 if ($a_entity ==
"blog") {
47 "Description" =>
"text",
50 "FontColor" =>
"text",
53 "RssActive" =>
"integer",
54 "Approval" =>
"integer",
62 "Description" =>
"text",
65 "FontColor" =>
"text",
68 "RssActive" =>
"integer",
69 "Approval" =>
"integer",
71 "AbsShorten" =>
"integer",
72 "AbsShortenLen" =>
"integer",
73 "AbsImage" =>
"integer",
74 "AbsImgWidth" =>
"integer",
75 "AbsImgHeight" =>
"integer",
76 "NavMode" =>
"integer",
77 "NavListPost" =>
"integer",
78 "NavListMon" =>
"integer",
79 "Keywords" =>
"integer",
80 "Authors" =>
"integer",
82 "OvPost" =>
"integer",
90 "Description" =>
"text",
93 "FontColor" =>
"text",
96 "RssActive" =>
"integer",
97 "Approval" =>
"integer",
99 "AbsShorten" =>
"integer",
100 "AbsShortenLen" =>
"integer",
101 "AbsImage" =>
"integer",
102 "AbsImgWidth" =>
"integer",
103 "AbsImgHeight" =>
"integer",
104 "NavMode" =>
"integer",
105 "NavListMonWithPost" =>
"integer",
106 "NavListMon" =>
"integer",
107 "Keywords" =>
"integer",
108 "Authors" =>
"integer",
109 "NavOrder" =>
"text",
110 "OvPost" =>
"integer",
117 if ($a_entity ==
"blog_posting") {
118 switch ($a_version) {
124 "BlogId" =>
"integer",
125 "Title" =>
"integer",
128 "Approved" =>
"integer",
129 "LastWithdrawn" =>
"text" 141 public function readData($a_entity, $a_version, $a_ids, $a_field =
"")
145 if (!is_array($a_ids)) {
146 $a_ids = array($a_ids);
149 if ($a_entity ==
"blog") {
150 switch ($a_version) {
153 "bl.notes,bl.bg_color,bl.font_color,bl.img,bl.ppic,bl.rss_active,bl.approval" .
155 " JOIN object_data od ON (od.obj_id = bl.id)" .
156 " WHERE " .
$ilDB->in(
"bl.id", $a_ids,
false,
"integer") .
157 " AND od.type = " .
$ilDB->quote(
"blog",
"text"));
162 "bl.bg_color,bl.font_color,bl.img,bl.ppic,bl.rss_active,bl.approval," .
163 "bl.abs_shorten,bl.abs_shorten_len,bl.abs_image,bl.abs_img_width,bl.abs_img_height," .
164 "bl.nav_mode,bl.nav_list_post,bl.nav_list_mon,bl.keywords,bl.authors,bl.nav_order," .
167 " JOIN object_data od ON (od.obj_id = bl.id)" .
168 " WHERE " .
$ilDB->in(
"bl.id", $a_ids,
false,
"integer") .
169 " AND od.type = " .
$ilDB->quote(
"blog",
"text"));
174 "bl.bg_color,bl.font_color,bl.img,bl.ppic,bl.rss_active,bl.approval," .
175 "bl.abs_shorten,bl.abs_shorten_len,bl.abs_image,bl.abs_img_width,bl.abs_img_height," .
176 "bl.nav_mode,bl.nav_list_mon_with_post,bl.nav_list_mon,bl.keywords,bl.authors,bl.nav_order," .
179 " JOIN object_data od ON (od.obj_id = bl.id)" .
180 " WHERE " .
$ilDB->in(
"bl.id", $a_ids,
false,
"integer") .
181 " AND od.type = " .
$ilDB->quote(
"blog",
"text"));
186 if ($a_entity ==
"blog_posting") {
187 switch ($a_version) {
192 " FROM il_blog_posting WHERE " .
193 $ilDB->in(
"blog_id", $a_ids,
false,
"integer"));
194 foreach ($this->data as $idx => $item) {
202 foreach ($this->data as $idx => $item) {
206 foreach ($keywords as $kidx => $keyword) {
207 $this->data[$idx][
"Keyword" . $kidx] = $keyword;
222 "blog_posting" => array(
"ids" => $a_rec[
"Id"])
236 if ($a_entity ==
"blog") {
238 $a_set[
"Dir"] = $dir;
255 public function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
262 if ($new_id = $a_mapping->getMapping(
"Services/Container",
"objs", $a_rec[
"Id"])) {
269 $newObj->setTitle($a_rec[
"Title"]);
270 $newObj->setDescription($a_rec[
"Description"]);
271 $newObj->setNotesStatus($a_rec[
"Notes"]);
272 $newObj->setBackgroundColor($a_rec[
"BgColor"]);
273 $newObj->setFontColor($a_rec[
"FontColor"]);
274 $newObj->setProfilePicture($a_rec[
"Ppic"]);
275 $newObj->setRSS($a_rec[
"RssActive"]);
276 $newObj->setApproval($a_rec[
"Approval"]);
277 $newObj->setImage($a_rec[
"Img"]);
279 $newObj->setAbstractShorten($a_rec[
"AbsShorten"]);
280 $newObj->setAbstractShortenLength($a_rec[
"AbsShortenLen"]);
281 $newObj->setAbstractImage($a_rec[
"AbsImage"]);
282 $newObj->setAbstractImageWidth($a_rec[
"AbsImgWidth"]);
283 $newObj->setAbstractImageHeight($a_rec[
"AbsImgHeight"]);
284 $newObj->setNavMode($a_rec[
"NavMode"]);
285 if ($a_rec[
"NavListMonWithPost"] == 0) {
286 $newObj->setNavModeListMonthsWithPostings(3);
288 $newObj->setNavModeListMonthsWithPostings($a_rec[
"NavListMonWithPost"]);
291 $newObj->setNavModeListMonths($a_rec[
"NavListMon"]);
292 $newObj->setKeywords($a_rec[
"Keywords"]);
293 $newObj->setAuthors($a_rec[
"Authors"]);
294 $newObj->setOrder(trim($a_rec[
"NavOrder"])
295 ? explode(
";", $a_rec[
"NavOrder"])
297 $newObj->setOverviewPostings($a_rec[
"OvPost"]);
303 $dir = str_replace(
"..",
"", $a_rec[
"Dir"]);
311 if ($a_rec[
"Style"]) {
312 self::$style_map[$a_rec[
"Style"]][] = $newObj->getId();
314 $a_mapping->addMapping(
"Modules/Blog",
"blog", $a_rec[
"Id"], $newObj->getId());
318 $blog_id = (int) $a_mapping->getMapping(
"Modules/Blog",
"blog", $a_rec[
"BlogId"]);
321 $newObj->setBlogId($blog_id);
322 $newObj->setTitle($a_rec[
"Title"]);
324 $newObj->setApproved($a_rec[
"Approved"]);
329 $newObj->setAuthor($author[
"id"]);
331 $newObj->create(
true);
335 for ($loop = 0; $loop < 1000; $loop++) {
336 if (isset($a_rec[
"Keyword" . $loop])) {
337 $keyword = trim($a_rec[
"Keyword" . $loop]);
338 if (strlen($keyword)) {
339 $keywords[] = $keyword;
343 if (
sizeof($keywords)) {
344 $newObj->updateKeywords($keywords);
347 $a_mapping->addMapping(
"Services/COPage",
"pg",
"blp:" . $a_rec[
"Id"],
"blp:" . $newObj->getId());
importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
Import record.
static commentsActivated($a_rep_obj_id, $a_obj_id, $a_obj_type, $a_news_id=0)
Are comments activated for object?
getSupportedVersions()
Get supported versions.
static lookupBlogId($a_posting_id)
Lookup blog id.
getDirectDataFromQuery($a_query, $a_convert_to_leading_upper=true, $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
readData($a_entity, $a_version, $a_ids, $a_field="")
Read data.
createObjectExportId($a_type, $a_id)
Build ilias export id.
static getKeywords($a_obj_id, $a_posting_id)
getImportDirectory()
Get import directory.
static lookupObjectStyle($a_obj_id)
Lookup object style.
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Determine the dependent sets of data.
getXmlRecord($a_entity, $a_version, $a_set)
Get xml record.
static initStorage($a_id, $a_subdir=null)
Init file system storage.
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
getTypes($a_entity, $a_version)
Get field types for entity.
parseObjectExportId($a_id, $a_fallback_id=null)
Parse export id.
stripTags(array $rec, array $omit_keys=[])
A dataset contains in data in a common structure that can be shared and transformed for different pur...