当前位置: 首页>>代码示例>>PHP>>正文


PHP learnpath::set_course_int_id方法代码示例

本文整理汇总了PHP中learnpath::set_course_int_id方法的典型用法代码示例。如果您正苦于以下问题:PHP learnpath::set_course_int_id方法的具体用法?PHP learnpath::set_course_int_id怎么用?PHP learnpath::set_course_int_id使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在learnpath的用法示例。


在下文中一共展示了learnpath::set_course_int_id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: learnpath

                     <td colspan="4">' . $title . '</td>
                     <td colspan="2">&nbsp;</td>
                     <td colspan="2">&nbsp;</td>
                     <td colspan="2">&nbsp;</td>
                     <td>' . $correct_test_link . '</td>
                 </tr>';
     $output .= '</tr>';
 } else {
     if (isset($_GET['lp_id']) && $_GET['lp_id'] == $my_lp_id && (isset($_GET['lp_item_id']) && $_GET['lp_item_id'] == $my_id)) {
         $output .= "<tr class='{$oddclass}'>";
     } else {
         $output .= "<tr class='{$oddclass}'>";
     }
     if (($is_allowed_to_edit || api_is_drh()) && isset($_GET['lp_id']) && isset($course_code)) {
         $lp = new learnpath($course_code, $_GET['lp_id'], api_get_user_id());
         $lp->set_course_int_id($course_id);
         $item_path_url = $lp->get_link('http', $my_id, false);
         $item_path_url .= "&width=600";
         $title = Display::url($title, $item_path_url, array('class' => 'ajax'));
     }
     $output .= '<td>' . $extend_link . '</td>
                 <td colspan="4">' . $title . '</td>
                 <td colspan="2">' . learnpathitem::humanize_status($lesson_status) . '</td>
                 <td colspan="2">';
     if ($row['item_type'] == 'quiz') {
         if (!$is_allowed_to_edit && $result_disabled_ext_all) {
             $output .= Display::return_icon('invisible.gif', get_lang('ResultsHiddenByExerciseSetting'));
         } else {
             $output .= ExerciseLib::show_score($score, $maxscore, false);
         }
     } else {
开发者ID:ragebat,项目名称:chamilo-lms,代码行数:31,代码来源:lp_stats.php


注:本文中的learnpath::set_course_int_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。