69 $this->db = $DIC->database();
72 $this->log->debug(
"constructed");
73 $this->rbacsystem = $DIC->rbac()->system();
74 $this->
user = $DIC->user();
75 $this->style_domain = $DIC->contentStyle()->internal()->domain();
76 $this->content_style_domain = $DIC->contentStyle()->domain();
77 $this->repo = $DIC->contentStyle()->internal()->repo();
87 return array(
"10.0",
"8.0",
"5.1.0");
95 public function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
97 return "http://www.ilias.de/xml/Services/Style/" . $a_entity;
106 protected function getTypes(
string $a_entity,
string $a_version): array
108 if ($a_entity ==
"sty") {
109 switch ($a_version) {
115 "Description" =>
"text",
116 "ImagesDir" =>
"directory" 122 "Description" =>
"text",
123 "StyleContainer" =>
"rscontainer" 128 if ($a_entity ==
"object_style") {
129 switch ($a_version) {
134 "ObjectId" =>
"integer" 139 if ($a_entity ==
"sty_setting") {
140 switch ($a_version) {
145 "StyleId" =>
"integer",
152 if ($a_entity ==
"sty_char") {
153 switch ($a_version) {
156 "StyleId" =>
"integer",
158 "Characteristic" =>
"text",
164 "StyleId" =>
"integer",
166 "Characteristic" =>
"text",
168 "OrderNr" =>
"integer",
169 "Outdate" =>
"integer" 174 if ($a_entity ==
"sty_char_title") {
175 switch ($a_version) {
179 "StyleId" =>
"integer",
181 "Characteristic" =>
"text",
188 if ($a_entity ==
"sty_parameter") {
189 switch ($a_version) {
194 "StyleId" =>
"integer",
197 "Parameter" =>
"text",
201 "Custom" =>
"integer" 206 if ($a_entity ==
"sty_color") {
207 switch ($a_version) {
212 "StyleId" =>
"integer",
213 "ColorName" =>
"text",
214 "ColorCode" =>
"text" 219 if ($a_entity ==
"sty_media_query") {
220 switch ($a_version) {
226 "StyleId" =>
"integer",
227 "OrderNr" =>
"integer",
233 if ($a_entity ==
"sty_template") {
234 switch ($a_version) {
240 "StyleId" =>
"integer",
248 if ($a_entity ==
"sty_template_class") {
249 switch ($a_version) {
254 "TemplateId" =>
"integer",
255 "ClassType" =>
"text",
261 if ($a_entity ==
"sty_usage") {
262 switch ($a_version) {
267 "ObjId" =>
"integer",
268 "StyleId" =>
"integer" 279 public function getXmlRecord(
string $a_entity,
string $a_version, array $a_set): array
281 if ($a_entity ==
"sty") {
282 $a_set[
"StyleContainer"] = serialize($this->style_domain->style((
int) $a_set[
"Id"])->getResourceIdentification());
293 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
297 if (!is_array($a_ids)) {
298 $a_ids = array($a_ids);
301 if ($a_entity ==
"object_style") {
302 switch ($a_version) {
306 foreach ($a_ids as
$id) {
307 $this->data[] = array(
"ObjectId" => $id);
313 if ($a_entity ==
"sty") {
314 switch ($a_version) {
319 " FROM object_data o " .
320 " WHERE " .
$ilDB->in(
"o.obj_id", $a_ids,
false,
"integer"));
325 if ($a_entity ==
"sty_setting") {
326 switch ($a_version) {
331 " FROM style_setting " .
332 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
337 if ($a_entity ==
"sty_char") {
338 switch ($a_version) {
341 " FROM style_char " .
342 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
347 " FROM style_char " .
348 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
353 if ($a_entity ==
"sty_char_title") {
354 switch ($a_version) {
358 " FROM style_char_title " .
359 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
364 if ($a_entity ==
"sty_parameter") {
365 switch ($a_version) {
370 " FROM style_parameter " .
371 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
376 if ($a_entity ==
"sty_color") {
377 switch ($a_version) {
382 " FROM style_color " .
383 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
388 if ($a_entity ==
"sty_media_query") {
389 switch ($a_version) {
394 " FROM sty_media_query " .
395 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
400 if ($a_entity ==
"sty_template") {
401 switch ($a_version) {
406 " FROM style_template " .
407 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
412 if ($a_entity ==
"sty_template_class") {
413 switch ($a_version) {
418 " FROM style_template_class " .
419 " WHERE " .
$ilDB->in(
"template_id", $a_ids,
false,
"integer"));
424 if ($a_entity ==
"sty_usage") {
425 switch ($a_version) {
430 " FROM style_usage " .
431 " WHERE " .
$ilDB->in(
"style_id", $a_ids,
false,
"integer"));
444 if ($entity ===
"sty" && $field ===
"StyleContainer") {
445 $rid = $this->style_domain->style((
int) $record[
"Id"])->getResourceIdentification();
447 $container = $this->irss->manageContainer()->getResource($rid);
465 ?array $a_rec =
null,
468 $this->ds_log->debug(
"entity: " . $a_entity .
", rec: " . print_r($a_rec,
true));
471 $this->ds_log->debug(
"object id: " . ($a_rec[
"ObjectId"] ??
null));
472 $style_id = $this->content_style_domain->styleForObjId($a_rec[
"ObjectId"] ?? 0)->getExportStyleId();
473 $this->ds_log->debug(
"style id: " . $style_id);
477 "sty" => array(
"ids" => $style_id));
484 "sty_setting" => array(
"ids" => $a_rec[
"Id"] ?? null),
485 "sty_media_query" => array(
"ids" => $a_rec[
"Id"] ?? null),
486 "sty_char" => array(
"ids" => $a_rec[
"Id"] ?? null),
487 "sty_char_title" => array(
"ids" => $a_rec[
"Id"] ?? null),
488 "sty_color" => array(
"ids" => $a_rec[
"Id"] ?? null),
489 "sty_parameter" => array(
"ids" => $a_rec[
"Id"] ?? null),
490 "sty_template" => array(
"ids" => $a_rec[
"Id"] ?? null),
491 "sty_usage" => array(
"ids" => $a_rec[
"Id"] ?? null)
496 "sty_template_class" => array(
"ids" => $a_rec[
"Id"] ?? null)
512 $service = $DIC->contentStyle()->internal();
513 $access_manager =
$service->domain()->access(
517 $access_manager->enableWrite(
true);
519 $style_id = (isset($this->current_obj))
520 ? $this->current_obj->getId()
522 $characteristic_manager =
$service->domain()->characteristic(
527 $color_manager =
$service->domain()->color(
535 $this->log->debug(
"Entity: " . $a_entity);
536 if ($new_id = $a_mapping->
getMapping(
'components/ILIAS/Container',
'objs', $a_rec[
'Id'])) {
540 $newObj->create(0,
true);
543 $newObj->setTitle($a_rec[
"Title"]);
544 $newObj->setDescription($a_rec[
"Description"]);
545 $newObj->update(
true);
547 $this->current_obj = $newObj;
548 $a_mapping->
addMapping(
"components/ILIAS/Style",
"sty", $a_rec[
"Id"], $newObj->getId());
549 $a_mapping->
addMapping(
"components/ILIAS/ILIASObject",
"obj", $a_rec[
"Id"], $newObj->getId());
550 $this->log->debug(
"Added mapping Services/Style sty " . $a_rec[
"Id"] .
" > " . $newObj->getId());
553 $dir = str_replace(
"..",
"", $a_rec[
"ImagesDir"] ??
"");
556 $sm = $this->style_domain->style($newObj->getId());
557 $sm->createContainerFromLocalDir($source_dir,
"images",
false);
560 $dir = str_replace(
"..",
"", ($a_rec[
"StyleContainer"] ??
""));
563 if (is_dir($source_dir)) {
564 $sm = $this->style_domain->style($newObj->getId());
565 $sm->createContainerFromLocalDir($source_dir,
"images",
false);
571 $this->current_obj->writeStyleSetting($a_rec[
"Name"], $a_rec[
"Value"]);
575 $this->current_obj->addCharacteristic($a_rec[
"Type"], $a_rec[
"Characteristic"], $a_rec[
"Hide"], (
int) ($a_rec[
"OrderNr"] ?? 0), (
bool) ($a_rec[
"Outdated"] ??
false));
578 case "sty_char_title":
579 $char_repo = $this->repo->characteristic();
580 $char_repo->addTitle(
581 $this->current_obj->getId(),
583 $a_rec[
"Characteristic"],
589 case "sty_parameter":
590 $mq_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/Style",
"media_query", $a_rec[
"MqId"]);
591 $characteristic_manager->replaceParameter($a_rec[
"Tag"], $a_rec[
"Class"], $a_rec[
"Parameter"], $a_rec[
"Value"], $a_rec[
"Type"], $mq_id, $a_rec[
"Custom"]);
595 $color_manager->addColor($a_rec[
"ColorName"], $a_rec[
"ColorCode"]);
598 case "sty_media_query":
599 $mq_id = $this->current_obj->addMediaQuery($a_rec[
"MQuery"], $a_rec[
"OrderNr"]);
600 $a_mapping->
addMapping(
"components/ILIAS/Style",
"media_query", $a_rec[
"Id"], $mq_id);
604 $tid = $this->current_obj->addTemplate($a_rec[
"TempType"], $a_rec[
"Name"], array());
605 $a_mapping->
addMapping(
"components/ILIAS/Style",
"template", $a_rec[
"Id"], $tid);
608 case "sty_template_class":
609 $tid = (
int) $a_mapping->
getMapping(
"components/ILIAS/Style",
"template", $a_rec[
"TemplateId"]);
610 $this->current_obj->addTemplateClass($tid, $a_rec[
"ClassType"], $a_rec[
"Class"]);
614 $obj_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/ILIASObject",
"obj", $a_rec[
"ObjId"]);
615 $style_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/Style",
"sty", $a_rec[
"StyleId"]);
616 if ($obj_id > 0 && $style_id > 0) {
static getLogger(string $a_component_id)
Get component logger.
Facade for consumer domain interface.
Content InternalRepoService $repo
Content InternalDomainService $style_domain
Content DomainService $content_style_domain
ilObjStyleSheet $current_obj
getXmlRecord(string $a_entity, string $a_version, array $a_set)
Get xml record.
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
getIRSSContainerExportConfig(StorableResource $source_container, string $source_path, string $target_path="")
static writeOwner($obj_id, $style_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
Determine the dependent sets of data.
getMapping(string $a_comp, string $a_entity, string $a_old_id)
getSupportedVersions()
Get supported versions.
readData(string $a_entity, string $a_version, array $a_ids)
Read data.
getTypes(string $a_entity, string $a_version)
Get field types for entity.
getXmlNamespace(string $a_entity, string $a_schema_version)
Get xml namespace.
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
static writeStyleUsage(int $a_obj_id, int $a_style_id)
Write style usage.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
getContainerExportConfig(array $record, string $entity, string $schema_version, string $field, string $value)
stripTags(array $rec, array $omit_keys=[])
static _lookupType(int $id, bool $reference=false)
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
Import record.