ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilLearningModuleImportConfig 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 ilLearningModuleImportConfig:
+ Collaboration diagram for ilLearningModuleImportConfig:

Public Member Functions

 setTranslationImportMode (ilObjLearningModule $a_lm, string $a_lang="")
 
 getTranslationImportMode ()
 
 getTranslationLM ()
 
 getTranslationLang ()
 

Protected Attributes

bool $transl_into = false
 
ilObjLearningModule $transl_into_lm = null
 
string $transl_lang = ""
 

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 Import configuration for learning modules

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

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

Member Function Documentation

◆ getTranslationImportMode()

ilLearningModuleImportConfig::getTranslationImportMode ( )

Definition at line 43 of file class.ilLearningModuleImportConfig.php.

References $transl_into.

43  : bool
44  {
45  return $this->transl_into;
46  }

◆ getTranslationLang()

ilLearningModuleImportConfig::getTranslationLang ( )

Definition at line 53 of file class.ilLearningModuleImportConfig.php.

References $transl_lang.

53  : string
54  {
55  return $this->transl_lang;
56  }

◆ getTranslationLM()

ilLearningModuleImportConfig::getTranslationLM ( )

Definition at line 48 of file class.ilLearningModuleImportConfig.php.

References $transl_into_lm.

49  {
50  return $this->transl_into_lm;
51  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

◆ setTranslationImportMode()

ilLearningModuleImportConfig::setTranslationImportMode ( ilObjLearningModule  $a_lm,
string  $a_lang = "" 
)

Definition at line 30 of file class.ilLearningModuleImportConfig.php.

References null.

33  : void {
34  if ($a_lm != null) {
35  $this->transl_into = true;
36  $this->transl_into_lm = $a_lm;
37  $this->transl_lang = $a_lang;
38  } else {
39  $this->transl_into = false;
40  }
41  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null

Field Documentation

◆ $transl_into

bool ilLearningModuleImportConfig::$transl_into = false
protected

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

Referenced by getTranslationImportMode().

◆ $transl_into_lm

ilObjLearningModule ilLearningModuleImportConfig::$transl_into_lm = null
protected

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

Referenced by getTranslationLM().

◆ $transl_lang

string ilLearningModuleImportConfig::$transl_lang = ""
protected

Definition at line 28 of file class.ilLearningModuleImportConfig.php.

Referenced by getTranslationLang().


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