Catégories de cours
This commit is contained in:
parent
99e7cb9a99
commit
e3286aee8e
@ -210,6 +210,7 @@ class common
|
|||||||
'language' => '',
|
'language' => '',
|
||||||
'profil' => '',
|
'profil' => '',
|
||||||
'enrolment' => '',
|
'enrolment' => '',
|
||||||
|
'categorie' => '',
|
||||||
];
|
];
|
||||||
|
|
||||||
private $configFiles = [
|
private $configFiles = [
|
||||||
@ -224,6 +225,7 @@ class common
|
|||||||
'language' => '',
|
'language' => '',
|
||||||
'profil' => '',
|
'profil' => '',
|
||||||
'enrolment' => '',
|
'enrolment' => '',
|
||||||
|
'categorie' => '',
|
||||||
];
|
];
|
||||||
|
|
||||||
private $contentFiles = [
|
private $contentFiles = [
|
||||||
|
@ -40,6 +40,8 @@ class course extends common
|
|||||||
|
|
||||||
public static $courseTeachers = [];
|
public static $courseTeachers = [];
|
||||||
|
|
||||||
|
public static $courseCategories = [];
|
||||||
|
|
||||||
public static $courses = [];
|
public static $courses = [];
|
||||||
|
|
||||||
public static $swapMessage = [];
|
public static $swapMessage = [];
|
||||||
@ -142,37 +144,6 @@ class course extends common
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function delete()
|
|
||||||
{
|
|
||||||
|
|
||||||
if (
|
|
||||||
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true ||
|
|
||||||
// Le cours n'existe pas
|
|
||||||
$this->getData(['course', $this->getUrl(2)]) === null
|
|
||||||
// Groupe insuffisant
|
|
||||||
and ($this->getUrl('group') < self::GROUP_EDITOR)
|
|
||||||
) {
|
|
||||||
// Valeurs en sortie
|
|
||||||
$this->addOutput([
|
|
||||||
'access' => false
|
|
||||||
]);
|
|
||||||
// Suppression
|
|
||||||
} else {
|
|
||||||
$this->deleteData(['course', $this->getUrl(2)]);
|
|
||||||
$this->deleteData(['enrolment', $this->getUrl(2)]);
|
|
||||||
if (is_dir(self::DATA_DIR . $this->getUrl(2))) {
|
|
||||||
$this->deleteDir(self::DATA_DIR . $this->getUrl(2));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Valeurs en sortie
|
|
||||||
$this->addOutput([
|
|
||||||
'redirect' => helper::baseUrl() . 'course',
|
|
||||||
'notification' => helper::translate('Cours supprimé'),
|
|
||||||
'state' => true
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Edite un cours
|
* Edite un cours
|
||||||
@ -218,6 +189,7 @@ class course extends common
|
|||||||
self::$courseTeachers[$teacherId] = $teacherInfo["firstname"] . ' ' . $teacherInfo["lastname"];
|
self::$courseTeachers[$teacherId] = $teacherInfo["firstname"] . ' ' . $teacherInfo["lastname"];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
self::$courseCategories = $this->getData(['categorie']);
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
@ -226,6 +198,39 @@ class course extends common
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function delete()
|
||||||
|
{
|
||||||
|
|
||||||
|
if (
|
||||||
|
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true ||
|
||||||
|
// Le cours n'existe pas
|
||||||
|
$this->getData(['course', $this->getUrl(2)]) === null
|
||||||
|
// Groupe insuffisant
|
||||||
|
and ($this->getUrl('group') < self::GROUP_EDITOR)
|
||||||
|
) {
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'access' => false
|
||||||
|
]);
|
||||||
|
// Suppression
|
||||||
|
} else {
|
||||||
|
$this->deleteData(['course', $this->getUrl(2)]);
|
||||||
|
$this->deleteData(['enrolment', $this->getUrl(2)]);
|
||||||
|
if (is_dir(self::DATA_DIR . $this->getUrl(2))) {
|
||||||
|
$this->deleteDir(self::DATA_DIR . $this->getUrl(2));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'redirect' => helper::baseUrl() . 'course',
|
||||||
|
'notification' => helper::translate('Cours supprimé'),
|
||||||
|
'state' => true
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Affiche un écran de connexion à un cours
|
* Affiche un écran de connexion à un cours
|
||||||
*/
|
*/
|
||||||
|
@ -36,6 +36,14 @@
|
|||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?php echo template::select('courseEditCategories', $module::$courseCategories, [
|
||||||
|
'label' => 'Catégorie',
|
||||||
|
'value' => $this->getdata(['course', $this->getUrl(2), 'category'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col12">
|
<div class="col12">
|
||||||
<?php echo template::textarea('courseAddDescription', [
|
<?php echo template::textarea('courseAddDescription', [
|
||||||
|
@ -39,6 +39,14 @@
|
|||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?php echo template::select('courseEditCategories', $module::$courseCategories, [
|
||||||
|
'label' => 'Catégorie',
|
||||||
|
'value' => $this->getdata(['course', $this->getUrl(2), 'category'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col12">
|
<div class="col12">
|
||||||
<?php echo template::textarea('courseEditDescription', [
|
<?php echo template::textarea('courseEditDescription', [
|
||||||
|
@ -668,7 +668,10 @@ class init extends common
|
|||||||
]
|
]
|
||||||
],
|
],
|
||||||
'course' => [],
|
'course' => [],
|
||||||
'enrolment' => []
|
'enrolment' => [],
|
||||||
|
'categorie' => [
|
||||||
|
'Générale'
|
||||||
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
public static $siteTemplate = [
|
public static $siteTemplate = [
|
||||||
|
Loading…
Reference in New Issue
Block a user