ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilChatroomImporter Class Reference

Class ilChatroomImporter. More...

+ Inheritance diagram for ilChatroomImporter:
+ Collaboration diagram for ilChatroomImporter:

Public Member Functions

 importXmlRepresentation ($a_entity, $a_id, $a_xml, $a_mapping)
 Import XML. More...
 
- Public Member Functions inherited from ilXmlImporter
 __construct ()
 Constructor. More...
 
 setImport ($a_val)
 Set import. More...
 
 getImport ()
 Get import. More...
 
 init ()
 Init. More...
 
 setInstallId ($a_val)
 Set installation id. More...
 
 getInstallId ()
 Get installation id. More...
 
 setInstallUrl ($a_val)
 Set installation url. More...
 
 getInstallUrl ()
 Get installation url. More...
 
 setSchemaVersion ($a_val)
 Set schema version. More...
 
 getSchemaVersion ()
 Get schema version. More...
 
 setImportDirectory ($a_val)
 Set import directory. More...
 
 getImportDirectory ()
 Get import directory. More...
 
 setSkipEntities ($a_val)
 Set skip entities. More...
 
 getSkipEntities ()
 Get skip entities. More...
 
 exportedFromSameInstallation ()
 Is exporting and importing installation identical? More...
 
 importXmlRepresentation ($a_entity, $a_id, $a_xml, $a_mapping)
 Import xml representation. More...
 
 finalProcessing ($a_mapping)
 Final processing. More...
 
 afterContainerImportProcessing (ilImportMapping $mapping)
 Called after all container objects have been implemented. More...
 

Additional Inherited Members

- Protected Attributes inherited from ilXmlImporter
 $skip_entities = array()
 
 $imp
 

Detailed Description

Class ilChatroomImporter.

Definition at line 9 of file class.ilChatroomImporter.php.

Member Function Documentation

◆ importXmlRepresentation()

ilChatroomImporter::importXmlRepresentation (   $a_entity,
  $a_id,
  $a_xml,
  $a_mapping 
)

Import XML.

Parameters

Definition at line 17 of file class.ilChatroomImporter.php.

References $parser, ilXmlImporter\getInstallId(), and ilObjectFactory\getInstanceByObjId().

18  {
19  require_once 'Modules/Chatroom/classes/class.ilObjChatroom.php';
20 
21  if ($new_id = $a_mapping->getMapping('Services/Container', 'objs', $a_id)) {
22  $newObj = ilObjectFactory::getInstanceByObjId($new_id, false);
23  } else {
24  $newObj = new ilObjChatroom();
25  $newObj->setType('chtr');
26  $newObj->create();
27  }
28 
29  require_once 'Modules/Chatroom/classes/class.ilChatroomXMLParser.php';
30  $parser = new ilChatroomXMLParser($newObj, $a_xml);
31  $parser->setImportInstallId($this->getInstallId());
32  $parser->startParsing();
33 
34  $a_mapping->addMapping('Modules/Chatroom', 'chtr', $a_id, $newObj->getId());
35  }
Class ilObjChatroom.
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
$parser
Definition: BPMN2Parser.php:23
getInstallId()
Get installation id.
Class ilChatroomXMLParser.
+ Here is the call graph for this function:

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