當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SortableTable::get_pager方法代碼示例

本文整理匯總了PHP中SortableTable::get_pager方法的典型用法代碼示例。如果您正苦於以下問題:PHP SortableTable::get_pager方法的具體用法?PHP SortableTable::get_pager怎麽用?PHP SortableTable::get_pager使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SortableTable的用法示例。


在下文中一共展示了SortableTable::get_pager方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: usort

         }
         $row[] = $avg_student_progress . ' %';
         $row[] = $avg_student_score . ' %';
         $row[] = $total_assignments;
         $row[] = $total_messages;
         $row[] = Tracking::get_first_connection_date_on_the_course($student_id, $course_code);
         $row[] = Tracking::get_last_connection_date_on_the_course($student_id, $course_code);
         if ($export_csv) {
             $row[8] = strip_tags($row[8]);
             $csv_content[] = $row;
         }
         $row[] = '<center><a href="../mySpace/myStudents.php?student=' . $student_id . '&details=true&course=' . $course_code . '&origin=tracking_course"><img src="' . api_get_path(WEB_IMG_PATH) . '2rightarrow.gif" border="0" /></a></center>';
         $all_datas[] = $row;
     }
     usort($all_datas, 'sort_users');
     $page = $table->get_pager()->getCurrentPageID();
     $all_datas = array_slice($all_datas, ($page - 1) * $table->per_page, $table->per_page);
     if ($export_csv) {
         usort($csv_content, 'sort_users');
     }
     foreach ($all_datas as $row) {
         $table->addRow($row, 'align="right"');
     }
     $table->setColAttributes(0, array('align' => 'left'));
     $table->setColAttributes(1, array('align' => 'left'));
     $table->setColAttributes(2, array('align' => 'left'));
     $table->setColAttributes(7, array('align' => 'right'));
     $table->setColAttributes(8, array('align' => 'center'));
     $table->setColAttributes(9, array('align' => 'center'));
     $table->display();
 } else {
開發者ID:RusticiSoftware,項目名稱:SCORMCloud_DokeosMod,代碼行數:31,代碼來源:courseLog.php


注:本文中的SortableTable::get_pager方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。