ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBlogExporter.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  protected ilBlogDataSet $ds;
26  protected \ILIAS\Style\Content\DomainService $content_style_domain;
27 
28  public function init(): void
29  {
30  global $DIC;
31 
32  $this->ds = new ilBlogDataSet();
33  $this->ds->setDSPrefix("ds");
34  $this->content_style_domain = $DIC
35  ->contentStyle()
36  ->domain();
37  }
38 
40  string $a_entity,
41  string $a_target_release,
42  array $a_ids
43  ): array {
44  $res = array();
45 
46  // postings
47  $pg_ids = array();
48  foreach ($a_ids as $id) {
49  $pages = ilBlogPosting::getAllPostings($id);
50  foreach (array_keys($pages) as $p) {
51  $pg_ids[] = "blp:" . $p;
52  }
53  }
54  if (count($pg_ids)) {
55  $res[] = array(
56  "component" => "Services/COPage",
57  "entity" => "pg",
58  "ids" => $pg_ids
59  );
60  }
61 
62  // style
63  $style_ids = array();
64  foreach ($a_ids as $id) {
65  $style_id = $this->content_style_domain->styleForObjId((int) $id)->getStyleId();
66  if ($style_id > 0) {
67  $style_ids[] = $style_id;
68  }
69  }
70  if (count($style_ids)) {
71  $res[] = array(
72  "component" => "Services/Style",
73  "entity" => "sty",
74  "ids" => $style_ids
75  );
76  }
77 
78  // service settings
79  $res[] = array(
80  "component" => "Services/Object",
81  "entity" => "common",
82  "ids" => $a_ids
83  );
84 
85  return $res;
86  }
87 
88  public function getXmlRepresentation(
89  string $a_entity,
90  string $a_schema_version,
91  string $a_id
92  ): string {
93  $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
94  return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id], "", true, true);
95  }
96 
97  public function getValidSchemaVersions(
98  string $a_entity
99  ): array {
100  return array(
101  "5.3.0" => array(
102  "namespace" => "https://www.ilias.de/Modules/Blog/5_0",
103  "xsd_file" => "ilias_blog_5_0.xsd",
104  "uses_dataset" => true,
105  "min" => "5.3.0",
106  "max" => ""
107  ),
108  "5.0.0" => array(
109  "namespace" => "https://www.ilias.de/Modules/Blog/5_0",
110  "xsd_file" => "ilias_blog_5_0.xsd",
111  "uses_dataset" => true,
112  "min" => "5.0.0",
113  "max" => "5.2.99"
114  ),
115  "4.3.0" => array(
116  "namespace" => "https://www.ilias.de/Modules/Blog/4_3",
117  "xsd_file" => "ilias_blog_4_3.xsd",
118  "uses_dataset" => true,
119  "min" => "4.3.0",
120  "max" => "4.9.9"
121  )
122  );
123  }
124 }
$res
Definition: ltiservices.php:69
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getValidSchemaVersions(string $a_entity)
static getAllPostings(int $a_blog_id, int $a_limit=1000, int $a_offset=0)
Get all postings of blog.
Blog Data set class This class implements the following entities:
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
getXmlExportTailDependencies(string $a_entity, string $a_target_release, array $a_ids)
ILIAS Style Content DomainService $content_style_domain
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)