/**
  * initialisation
  *
  * this method should be overwritten by derived classes
  */
 function init()
 {
     $this->copy_enabled = true;
     $this->delete_enabled = true;
     $this->cut_enabled = true;
     $this->subscribe_enabled = true;
     $this->link_enabled = true;
     $this->payment_enabled = true;
     $this->info_screen_enabled = true;
     $this->type = "htlm";
     $this->gui_class_name = "ilobjfilebasedlmgui";
     // general commands array
     include_once 'Modules/HTMLLearningModule/classes/class.ilObjFileBasedLMAccess.php';
     $this->commands = ilObjFileBasedLMAccess::_getCommands();
 }