1.7.01 Ecran de gestion des espaces
This commit is contained in:
parent
5a8fc68049
commit
cfb0d8a0e9
@ -1,4 +1,4 @@
|
|||||||
# ZwiiCampus 1.7.00
|
# ZwiiCampus 1.7.01
|
||||||
|
|
||||||
ZwiiCampus (Learning Management System) est logiciel auteur destiné à mettre en ligne des tutoriels. Il dispose de plusieurs modalités d'ouverture et d'accès des contenus. Basé sur la version 13 du CMS Zwii, la structure logicielle est solide, le framework de Zwii est éprouvé.
|
ZwiiCampus (Learning Management System) est logiciel auteur destiné à mettre en ligne des tutoriels. Il dispose de plusieurs modalités d'ouverture et d'accès des contenus. Basé sur la version 13 du CMS Zwii, la structure logicielle est solide, le framework de Zwii est éprouvé.
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ class common
|
|||||||
const ACCESS_TIMER = 1800;
|
const ACCESS_TIMER = 1800;
|
||||||
|
|
||||||
// Numéro de version
|
// Numéro de version
|
||||||
const ZWII_VERSION = '1.7.00';
|
const ZWII_VERSION = '1.7.01';
|
||||||
|
|
||||||
// URL autoupdate
|
// URL autoupdate
|
||||||
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/campus-update/raw/branch/master/';
|
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/campus-update/raw/branch/master/';
|
||||||
|
@ -70,30 +70,30 @@
|
|||||||
<?php echo template::text('courseManageShortTitle', [
|
<?php echo template::text('courseManageShortTitle', [
|
||||||
'label' => 'Titre',
|
'label' => 'Titre',
|
||||||
'value' => $this->getdata(['course', $this->getUrl(2), 'title']),
|
'value' => $this->getdata(['course', $this->getUrl(2), 'title']),
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col5">
|
<div class="col5">
|
||||||
<?php echo template::select('courseManageAuthor', $module::$courseTeachers, [
|
<?php echo template::text('courseManageAuthor', [
|
||||||
'label' => 'Auteur',
|
'label' => 'text',
|
||||||
'selected' => $this->getdata(['course', $this->getUrl(2), 'author']),
|
'value' => $this->signature( $this->getdata(['course', $this->getUrl(2), 'author']) ),
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col6">
|
<div class="col6">
|
||||||
<?php echo template::select('courseManageHomePageId', helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC'), [
|
<?php echo template::text('courseManageHomePageId', [
|
||||||
'label' => 'Page d\'accueil',
|
'label' => 'Page d\'accueil',
|
||||||
'selected' => $this->getdata(['course', $this->getUrl(2), 'homePageId']),
|
'value' => $module::$pagesList[$this->getdata(['course', $this->getUrl(2), 'homePageId'])]['shortTitle'],
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col6">
|
<div class="col6">
|
||||||
<?php echo template::select('courseManageCategorie', $module::$courseCategories, [
|
<?php echo template::text('courseManageCategorie', [
|
||||||
'label' => 'Catégorie',
|
'label' => 'Catégorie',
|
||||||
'selected' => $this->getdata(['course', $this->getUrl(2), 'category']),
|
'value' => $module::$courseCategories[$this->getdata(['course', $this->getUrl(2), 'category'])],
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -102,16 +102,16 @@
|
|||||||
<?php echo template::textarea('courseManageDescription', [
|
<?php echo template::textarea('courseManageDescription', [
|
||||||
'label' => 'Description',
|
'label' => 'Description',
|
||||||
'value' => $this->getdata(['course', $this->getUrl(2), 'description']),
|
'value' => $this->getdata(['course', $this->getUrl(2), 'description']),
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col4">
|
<div class="col4">
|
||||||
<?php echo template::select('courseManageAccess', $module::$courseAccess, [
|
<?php echo template::text('courseManageAccess', [
|
||||||
'label' => 'Disponibilité',
|
'label' => 'Disponibilité',
|
||||||
'selected' => $this->getdata(['course', $this->getUrl(2), 'access']),
|
'value' =>$module::$courseAccess [$this->getdata(['course', $this->getUrl(2), 'access'])],
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col4">
|
<div class="col4">
|
||||||
@ -119,7 +119,7 @@
|
|||||||
'type' => 'datetime-local',
|
'type' => 'datetime-local',
|
||||||
'label' => 'Ouverture',
|
'label' => 'Ouverture',
|
||||||
'value' => is_null($this->getdata(['course', $this->getUrl(2), 'openingDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'openingDate']) / 60) * 60,
|
'value' => is_null($this->getdata(['course', $this->getUrl(2), 'openingDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'openingDate']) / 60) * 60,
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col4">
|
<div class="col4">
|
||||||
@ -127,23 +127,23 @@
|
|||||||
'type' => 'datetime-local',
|
'type' => 'datetime-local',
|
||||||
'label' => 'Fermeture',
|
'label' => 'Fermeture',
|
||||||
'value' => is_null($this->getdata(['course', $this->getUrl(2), 'closingDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'closingDate']) / 60) * 60,
|
'value' => is_null($this->getdata(['course', $this->getUrl(2), 'closingDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'closingDate']) / 60) * 60,
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col4">
|
<div class="col4">
|
||||||
<?php echo template::select('courseManageEnrolment', $module::$courseEnrolment, [
|
<?php echo template::text('courseManageEnrolment', [
|
||||||
'label' => 'Participation',
|
'label' => 'Participation',
|
||||||
'selected' => $this->getdata(['course', $this->getUrl(2), 'enrolment']),
|
'value' => $module::$courseEnrolment[$this->getdata(['course', $this->getUrl(2), 'enrolment'])],
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col4">
|
<div class="col4">
|
||||||
<?php echo template::text('courseManageEnrolmentKey', [
|
<?php echo template::text('courseManageEnrolmentKey', [
|
||||||
'label' => 'Clé',
|
'label' => 'Clé',
|
||||||
'value' => $this->getdata(['course', $this->getUrl(2), 'enrolmentKey']),
|
'value' => $this->getdata(['course', $this->getUrl(2), 'enrolmentKey']),
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -160,7 +160,7 @@
|
|||||||
'type' => 'datetime-local',
|
'type' => 'datetime-local',
|
||||||
'label' => 'Fermeture',
|
'label' => 'Fermeture',
|
||||||
'value' => is_null($this->getdata(['course', $this->getUrl(2), 'limitEnrolmentDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'limitEnrolmentDate']) / 60) * 60,
|
'value' => is_null($this->getdata(['course', $this->getUrl(2), 'limitEnrolmentDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'limitEnrolmentDate']) / 60) * 60,
|
||||||
'disabled' => true,
|
'readonly' => true,
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user