Nom de fonction
This commit is contained in:
parent
09894a7518
commit
7e7d4cfce3
@ -1475,14 +1475,14 @@ class common
|
|||||||
case self::GROUP_STUDENT:
|
case self::GROUP_STUDENT:
|
||||||
return (
|
return (
|
||||||
// Le cours est-il ouvert ?
|
// Le cours est-il ouvert ?
|
||||||
$this->courseAccess($courseId) &&
|
$this->courseIsAvailable($courseId) &&
|
||||||
// L'étudiant est isncrits ?
|
// L'étudiant est inscrit ?
|
||||||
array_search($userId, $this->getData(['enrolment', $courseId, 'students']))
|
array_search($userId, $this->getData(['enrolment', $courseId, 'students']))
|
||||||
);
|
);
|
||||||
case self::GROUP_VISITOR:
|
case self::GROUP_VISITOR:
|
||||||
// Le cours est-il ouvert ?
|
// Le cours est-il ouvert ?
|
||||||
return (
|
return (
|
||||||
$this->courseAccess($courseId) &&
|
$this->courseIsAvailable($courseId) &&
|
||||||
$this->getData(['course', $courseId, 'enrolment']) === self::COURSE_ENROLMENT_GUEST
|
$this->getData(['course', $courseId, 'enrolment']) === self::COURSE_ENROLMENT_GUEST
|
||||||
);
|
);
|
||||||
default:
|
default:
|
||||||
@ -1509,7 +1509,7 @@ class common
|
|||||||
* @param @return bool le user a le droit d'entrée dans le cours
|
* @param @return bool le user a le droit d'entrée dans le cours
|
||||||
* @param string $courseId identifiant du cours sollicité
|
* @param string $courseId identifiant du cours sollicité
|
||||||
*/
|
*/
|
||||||
public function courseAccess($courseId)
|
public function courseIsAvailable($courseId)
|
||||||
{
|
{
|
||||||
$access = $this->getData(['course', $courseId, 'access']);
|
$access = $this->getData(['course', $courseId, 'access']);
|
||||||
switch ($access) {
|
switch ($access) {
|
||||||
|
Loading…
Reference in New Issue
Block a user