diff --git a/main/exercise/exercise.class.php b/main/exercise/exercise.class.php index 98165974df..487501ae08 100755 --- a/main/exercise/exercise.class.php +++ b/main/exercise/exercise.class.php @@ -8371,17 +8371,17 @@ class Exercise } /** + * Return an HTML table of exercises for on-screen printing, including + * action icons. If no exercise is present and the user can edit the + * course, show a "create test" button. * @param int $categoryId - * @param int $page - * @param int $from - * @param int $limit * @param string $keyword * * @throws \Doctrine\ORM\Query\QueryException * * @return string */ - public static function exerciseGrid($categoryId, $page, $from, $limit, $keyword = '') + public static function exerciseGrid($categoryId, $keyword = '') { $TBL_DOCUMENT = Database::get_course_table(TABLE_DOCUMENT); $TBL_ITEM_PROPERTY = Database::get_course_table(TABLE_ITEM_PROPERTY); @@ -8389,9 +8389,9 @@ class Exercise $TBL_EXERCISES = Database::get_course_table(TABLE_QUIZ_TEST); $TBL_TRACK_EXERCISES = Database::get_main_table(TABLE_STATISTIC_TRACK_E_EXERCISES); - $page = (int) $page; - $from = (int) $from; - $limit = (int) $limit; + //$page = (int) $page; + //$from = (int) $from; + //$limit = (int) $limit; $autoLaunchAvailable = false; if (api_get_course_setting('enable_exercise_auto_launch') == 1 && @@ -8456,8 +8456,8 @@ class Exercise $condition_session $categoryCondition $keywordCondition - ORDER BY title - LIMIT $from , $limit"; + ORDER BY title"; + // LIMIT $from , $limit"; } else { // Only for students $total_sql = "SELECT count(iid) as count @@ -8473,8 +8473,8 @@ class Exercise WHERE c_id = $courseId AND active='1' $condition_session $categoryCondition - $keywordCondition - ORDER BY title LIMIT $from , $limit"; + $keywordCondition "; + // ORDER BY title LIMIT $from , $limit"; } $result = Database::query($sql); $result_total = Database::query($total_sql); @@ -8767,7 +8767,7 @@ class Exercise '', ICON_SIZE_SMALL ), - 'exercise.php?'.api_get_cidreq().'&choice=enable_launch&sec_token='.$token.'&page='.$page.'&exerciseId='.$row['id'] + 'exercise.php?'.api_get_cidreq().'&choice=enable_launch&sec_token='.$token.'&exerciseId='.$row['id'] ); } else { $actions .= Display::url( @@ -8777,7 +8777,7 @@ class Exercise '', ICON_SIZE_SMALL ), - 'exercise.php?'.api_get_cidreq().'&choice=disable_launch&sec_token='.$token.'&page='.$page.'&exerciseId='.$row['id'] + 'exercise.php?'.api_get_cidreq().'&choice=disable_launch&sec_token='.$token.'&exerciseId='.$row['id'] ); } } @@ -8838,7 +8838,7 @@ class Exercise '', ICON_SIZE_SMALL ), - 'exercise.php?'.api_get_cidreq().'&choice=enable&sec_token='.$token.'&page='.$page.'&exerciseId='.$row['id'] + 'exercise.php?'.api_get_cidreq().'&choice=enable&sec_token='.$token.'&exerciseId='.$row['id'] ); } else { // else if not active @@ -8849,7 +8849,7 @@ class Exercise '', ICON_SIZE_SMALL ), - 'exercise.php?'.api_get_cidreq().'&choice=disable&sec_token='.$token.'&page='.$page.'&exerciseId='.$row['id'] + 'exercise.php?'.api_get_cidreq().'&choice=disable&sec_token='.$token.'&exerciseId='.$row['id'] ); } } @@ -8900,7 +8900,7 @@ class Exercise '', ICON_SIZE_SMALL ), - 'exercise.php?'.api_get_cidreq().'&choice=enable&sec_token='.$token.'&page='.$page.'&exerciseId='.$row['id'] + 'exercise.php?'.api_get_cidreq().'&choice=enable&sec_token='.$token.'&exerciseId='.$row['id'] ); } else { // else if not active @@ -8911,7 +8911,7 @@ class Exercise '', ICON_SIZE_SMALL ), - 'exercise.php?'.api_get_cidreq().'&choice=disable&sec_token='.$token.'&page='.$page.'&exerciseId='.$row['id'] + 'exercise.php?'.api_get_cidreq().'&choice=disable&sec_token='.$token.'&exerciseId='.$row['id'] ); } } @@ -9174,16 +9174,16 @@ class Exercise WHERE d.c_id = $courseId AND (d.path LIKE '%htm%') AND - d.path LIKE '".Database :: escape_string($uploadPath.'/%/%')."' - LIMIT $from , $limit"; // only .htm or .html files listed + d.path LIKE '".Database :: escape_string($uploadPath.'/%/%')."' "; + // LIMIT $from , $limit"; // only .htm or .html files listed } else { $sql = "SELECT d.iid, d.path as path, d.comment as comment FROM $TBL_DOCUMENT d WHERE d.c_id = $courseId AND (d.path LIKE '%htm%') AND - d.path LIKE '".Database :: escape_string($uploadPath.'/%/%')."' - LIMIT $from , $limit"; + d.path LIKE '".Database :: escape_string($uploadPath.'/%/%')."' "; + // LIMIT $from , $limit"; } $result = Database::query($sql); @@ -9255,10 +9255,10 @@ class Exercise // if active if ($visibility != 0) { $nbrActiveTests = $nbrActiveTests + 1; - $actions .= ' '. + $actions .= ' '. Display::return_icon('visible.png', get_lang('Deactivate'), '', ICON_SIZE_SMALL).''; } else { // else if not active - $actions .= ' '. + $actions .= ' '. Display::return_icon('invisible.png', get_lang('Activate'), '', ICON_SIZE_SMALL).''; } $actions .= ''. diff --git a/main/exercise/exercise.php b/main/exercise/exercise.php index 850b158d90..e8581687a8 100644 --- a/main/exercise/exercise.php +++ b/main/exercise/exercise.php @@ -79,15 +79,10 @@ $exerciseId = isset($_REQUEST['exerciseId']) ? (int) $_REQUEST['exerciseId'] : n $file = isset($_REQUEST['file']) ? Database::escape_string($_REQUEST['file']) : null; $learnpath_id = isset($_REQUEST['learnpath_id']) ? (int) $_REQUEST['learnpath_id'] : null; $learnpath_item_id = isset($_REQUEST['learnpath_item_id']) ? (int) $_REQUEST['learnpath_item_id'] : null; -$page = isset($_REQUEST['page']) ? (int) $_REQUEST['page'] : null; $categoryId = isset($_REQUEST['category_id']) ? (int) $_REQUEST['category_id'] : 0; $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : ''; $keyword = isset($_REQUEST['keyword']) ? Security::remove_XSS($_REQUEST['keyword']) : ''; -if ($page < 0) { - $page = 1; -} - if (api_is_in_gradebook()) { $interbreadcrumb[] = [ 'url' => Category::getUrl(), @@ -519,12 +514,6 @@ if ($origin !== 'learnpath') { } Display::display_introduction_section(TOOL_QUIZ); -// Selects $limit exercises at the same time -// maximum number of exercises on a same page -$limit = 50; - -// Display the next and previous link if needed -$from = $page * $limit; HotPotGCt($documentPath, 1, $userId); $token = Security::get_token(); @@ -622,11 +611,11 @@ if ($is_allowedToEdit) { } if (api_get_configuration_value('allow_exercise_categories') === false) { - echo Exercise::exerciseGrid(0, $page, $from, $limit, $keyword); + echo Exercise::exerciseGrid(0, $keyword); } else { if (empty($categoryId)) { echo Display::page_subheader(get_lang('NoCategory')); - echo Exercise::exerciseGrid(0, $page, $from, $limit, $keyword); + echo Exercise::exerciseGrid(0, $keyword); $counter = 0; $manager = new ExerciseCategoryManager(); $categories = $manager->getCategories($courseId); @@ -652,13 +641,13 @@ if (api_get_configuration_value('allow_exercise_categories') === false) { } } echo Display::page_subheader($category->getName().$up.$down); - echo Exercise::exerciseGrid($category->getId(), $page, $from, $limit, $keyword); + echo Exercise::exerciseGrid($category->getId(), $keyword); } } else { $manager = new ExerciseCategoryManager(); $category = $manager->get($categoryId); echo Display::page_subheader($category['name']); - echo Exercise::exerciseGrid($category['id'], $page, $from, $limit, $keyword); + echo Exercise::exerciseGrid($category['id'], $keyword); } }