function moditem($object_item) { checkPerm('view', FALSE, 'storage'); $lang =& DoceboLanguage::createInstance('scorm', 'lms'); //area title $query = "SELECT idOrg " . " FROM " . $GLOBALS['prefix_lms'] . "_organization " . " WHERE idResource = " . (int) $object_item->id . " AND objectType = 'scormorg' "; list($id_reference) = mysql_fetch_row(mysql_query($query)); require_once _lib_ . '/lib.table.php'; $tb = new Table(); $h_type = array('', ''); $h_content = array($lang->def('_NAME'), $lang->def('_LINK')); $tb->setColsStyle($h_type); $tb->addHead($h_content); $qry = "SELECT item_identifier, idscorm_resource, title " . " FROM " . $GLOBALS['prefix_lms'] . "_scorm_items " . " WHERE idscorm_organization = " . (int) $object_item->id . "" . " ORDER BY idscorm_item "; $res = mysql_query($qry); while ($row = mysql_fetch_row($res)) { $line = array(); $line[] = $row[2]; $line[] = $row[1] != 0 ? Get::abs_path('lms') . '/index.php?id_course=' . $_SESSION['idCourse'] . '&act=playsco&courseid=' . $_SESSION['idCourse'] . '&id_item=' . $id_reference . '&chapter=' . $row[0] . '' : ''; $tb->addBody($line); } cout(getTitleArea($lang->getLangText('_SCORMIMGSECTION'), 'scorm') . '<div class="std_block">' . getBackUi($object_item->back_url . '&edit_result=0', $lang->getLangText('_BACK_TOLIST')) . $tb->getTable() . '</div>'); }