[svn r13100] Added call to api_item_property_update() to insert the learnpaths in item_property

skala
Yannick Warnier 18 years ago
parent 8d758d26f8
commit 50a611f23f
  1. 1
      main/newscorm/aicc.class.php
  2. 3
      main/newscorm/learnpath.class.php
  3. 2
      main/newscorm/scorm.class.php

@ -252,6 +252,7 @@ class aicc extends learnpath {
$res = api_sql_query($sql); $res = api_sql_query($sql);
$lp_id = Database::get_last_insert_id(); $lp_id = Database::get_last_insert_id();
$this->lp_id = $lp_id; $this->lp_id = $lp_id;
api_item_property_update(api_get_course_info($course_code),TOOL_LEARNPATH,$this->lp_id,'LearnpathAdded',api_get_user_id());
$previous = 0; $previous = 0;
foreach($this->aulist as $identifier => $dummy) foreach($this->aulist as $identifier => $dummy)

@ -602,6 +602,8 @@ class learnpath {
$res_insert = api_sql_query($sql_insert); $res_insert = api_sql_query($sql_insert);
$id = Database::get_last_insert_id(); $id = Database::get_last_insert_id();
if($id>0){ if($id>0){
//insert into item_property
api_item_property_update(api_get_course_info($course),TOOL_LEARNPATH,$id,'LearnpathAdded',api_get_user_id());
return $id; return $id;
} }
break; break;
@ -784,6 +786,7 @@ class learnpath {
$sql_del_lp = "DELETE FROM $lp WHERE id = ".$this->lp_id; $sql_del_lp = "DELETE FROM $lp WHERE id = ".$this->lp_id;
//if($this->debug>2){error_log('New LP - Deleting lp '.$this->lp_id.': '.$sql_del_lp,0);} //if($this->debug>2){error_log('New LP - Deleting lp '.$this->lp_id.': '.$sql_del_lp,0);}
$res_del_lp = api_sql_query($sql_del_lp); $res_del_lp = api_sql_query($sql_del_lp);
api_item_property_update(api_get_course_info(),TOOL_LEARNPATH,$this->lp_id,'delete',api_get_user_id());
//TODO: also delete items and item-views //TODO: also delete items and item-views
} }

@ -384,6 +384,8 @@ class scorm extends learnpath {
$res = api_sql_query($sql,__FILE__,__LINE__); $res = api_sql_query($sql,__FILE__,__LINE__);
$lp_id = Database::get_last_insert_id(); $lp_id = Database::get_last_insert_id();
$this->lp_id = $lp_id; $this->lp_id = $lp_id;
//insert into item_property
api_item_property_update(api_get_course_info($course_code),TOOL_LEARNPATH,$this->lp_id,'LearnpathAdded',api_get_user_id());
//now insert all elements from inside that learning path //now insert all elements from inside that learning path
//make sure we also get the href and sco/asset from the resources //make sure we also get the href and sco/asset from the resources

Loading…
Cancel
Save