Skip to content

Commit

Permalink
increase time options
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Henrique Lelis de Almeida committed Mar 6, 2024
1 parent 68fc733 commit 1b1a15c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/app/Controller/ExerciseCasesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,19 @@ public function add($id_exercise = null)
}
}

$timeoptions = array('1' => __('1sec'), '2' => __('2sec'), '3' => __('3sec'), '4' => __('4sec'), '5' => __('5sec'), '10' => __('10sec'));
$timeoptions = array(
'1' => __('1sec'),
'2' => __('2sec'),
'3' => __('3sec'),
'4' => __('4sec'),
'5' => __('5sec'),
'10' => __('10sec'),
'20' => __('20sec'),
'30' => __('30sec'),
'40' => __('40sec'),
'50' => __('50sec'),
'60' => __('1min'),
);
$breadcrumbs = array();
$this->loadModel('Course');
$this->Course->recursive = -1;
Expand Down

0 comments on commit 1b1a15c

Please sign in to comment.