/**
  * Delete Chapter
  */
 function delete($a_delete_meta_data = true)
 {
     // only relevant for online help authoring
     include_once "./Services/Help/classes/class.ilHelpMapping.php";
     ilHelpMapping::removeScreenIdsOfChapter($this->getId());
     $this->tree = new ilTree($this->getLmId());
     $this->tree->setTableNames('lm_tree', 'lm_data');
     $this->tree->setTreeTablePK("lm_id");
     $node_data = $this->tree->getNodeData($this->getId());
     $this->delete_rec($this->tree, $a_delete_meta_data);
     $this->tree->deleteTree($node_data);
 }