ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
ilHelpExporter Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilHelpExporter:
+ Collaboration diagram for ilHelpExporter:

Public Member Functions

 init ()
 
 getXmlExportTailDependencies (string $a_entity, string $a_target_release, array $a_ids)
 Get tail dependencies. More...
 
 getXmlRepresentation (string $a_entity, string $a_schema_version, string $a_id)
 
 getValidSchemaVersions (string $a_entity)
 Returns schema versions that the component can export to. More...
 
- Public Member Functions inherited from ilXmlExporter
 __construct ()
 
 setExport (ilExport $a_exp)
 
 getExport ()
 
 getXmlRepresentation (string $a_entity, string $a_schema_version, string $a_id)
 
 init ()
 
 setExportDirectories (string $a_dir_relative, string $a_dir_absolute)
 
 getRelativeExportDirectory ()
 
 getAbsoluteExportDirectory ()
 
 getXmlExportHeadDependencies (string $a_entity, string $a_target_release, array $a_ids)
 Get head dependencies. More...
 
 getXmlExportTailDependencies (string $a_entity, string $a_target_release, array $a_ids)
 Get tail dependencies. More...
 
 getValidSchemaVersions (string $a_entity)
 Returns schema versions that the component can export to. More...
 
 determineSchemaVersion (string $a_entity, string $a_target_release)
 

Protected Attributes

ILIAS Help InternalDomainService $help_domain
 
- Protected Attributes inherited from ilXmlExporter
ilExport $exp
 

Private Attributes

ilHelpDataSet $ds
 

Additional Inherited Members

- Static Public Member Functions inherited from ilXmlExporter
static lookupExportDirectory (string $a_obj_type, int $a_obj_id, string $a_export_type='xml', string $a_entity="")
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Exporter class for help system information

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 24 of file class.ilHelpExporter.php.

Member Function Documentation

◆ getValidSchemaVersions()

ilHelpExporter::getValidSchemaVersions ( string  $a_entity)

Returns schema versions that the component can export to.

ILIAS chooses the first one, that has min/max constraints which fit to the target release. Please put the newest on top. Example: return array ( "4.1.0" => array( "namespace" => "http://www.ilias.de/Services/MetaData/md/4_1", "xsd_file" => "ilias_md_4_1.xsd", "min" => "4.1.0", "max" => "") );

Reimplemented from ilXmlExporter.

Definition at line 102 of file class.ilHelpExporter.php.

102 : array
103 {
104 return array(
105 "10.0" => array(
106 "namespace" => "https://www.ilias.de/Services/Help/help/10_0",
107 "xsd_file" => "ilias_help_10.xsd",
108 "uses_dataset" => true,
109 "min" => "10.0",
110 "max" => ""),
111 "4.3.0" => array(
112 "namespace" => "https://www.ilias.de/Services/Help/help/4_3",
113 "xsd_file" => "ilias_help_4_3.xsd",
114 "uses_dataset" => true,
115 "min" => "4.3.0",
116 "max" => "")
117 );
118 }

◆ getXmlExportTailDependencies()

ilHelpExporter::getXmlExportTailDependencies ( string  $a_entity,
string  $a_target_release,
array  $a_ids 
)

Get tail dependencies.

Returns
array array of array with keys "component", entity", "ids"

Reimplemented from ilXmlExporter.

Definition at line 39 of file class.ilHelpExporter.php.

43 : array {
44 if ($a_entity === "help") {
45 $lm_node_ids = array();
46 foreach ($a_ids as $lm_id) {
47 $chaps = ilLMObject::getObjectList($lm_id, "st");
48 foreach ($chaps as $chap) {
49 $lm_node_ids[] = $chap["obj_id"];
50 }
51 }
52
53 return array(
54 array(
55 "component" => "components/ILIAS/Help",
56 "entity" => "help_map",
57 "ids" => $lm_node_ids),
58 array(
59 "component" => "components/ILIAS/Help",
60 "entity" => "help_tooltip",
61 "ids" => $a_ids)
62 );
63 }
64
65 if ($a_entity === "gdtr") {
66 $res = [];
67 // step pages
68 $pg_ids = [];
69 $step_ids = [];
70 foreach ($a_ids as $id) {
71 foreach ($this->help_domain->guidedTour()->step()->getStepsOfTour((int) $id) as $step) {
72 $pg_ids[] = "gdtr:" . $step->getId();
73 $step_ids[] = $step->getId();
74 }
75 }
76 if (count($pg_ids)) {
77 $res[] = [
78 "component" => "components/ILIAS/Help",
79 "entity" => "gdtr_step",
80 "ids" => $step_ids];
81 $res[] = array(
82 "component" => "components/ILIAS/COPage",
83 "entity" => "pg",
84 "ids" => $pg_ids
85 );
86 }
87 return $res;
88 }
89
90
91 return array();
92 }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static getObjectList(int $lm_id, string $type="")
$res
Definition: ltiservices.php:69

References ilLMObject\getObjectList().

+ Here is the call graph for this function:

◆ getXmlRepresentation()

ilHelpExporter::getXmlRepresentation ( string  $a_entity,
string  $a_schema_version,
string  $a_id 
)

Reimplemented from ilXmlExporter.

Definition at line 94 of file class.ilHelpExporter.php.

98 : string {
99 return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id], "", true, true);
100 }

◆ init()

ilHelpExporter::init ( )

Reimplemented from ilXmlExporter.

Definition at line 29 of file class.ilHelpExporter.php.

29 : void
30 {
31 global $DIC;
32
33 $this->ds = new ilHelpDataSet();
34 $this->ds->initByExporter($this);
35 $this->ds->setDSPrefix("ds");
36 $this->help_domain = $DIC->help()->internal()->domain();
37 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:26

References $DIC.

Field Documentation

◆ $ds

ilHelpDataSet ilHelpExporter::$ds
private

Definition at line 26 of file class.ilHelpExporter.php.

◆ $help_domain

ILIAS Help InternalDomainService ilHelpExporter::$help_domain
protected

Definition at line 27 of file class.ilHelpExporter.php.


The documentation for this class was generated from the following file: