- Remplacement du nom générique de classe dans les vues.
This commit is contained in:
parent
9b92e29a96
commit
b147f44776
@ -16,7 +16,7 @@
|
||||
class blog extends common
|
||||
{
|
||||
|
||||
const VERSION = '8.1';
|
||||
const VERSION = '8.2';
|
||||
const REALNAME = 'Blog';
|
||||
const DELETE = true;
|
||||
const UPDATE = '0.0';
|
||||
|
@ -1,4 +1,6 @@
|
||||
# Version 8.01
|
||||
# Version 8.2
|
||||
- Remplacement du nom générique de classe dans les vues.
|
||||
# Version 8.1
|
||||
- Un mail de notification est seulement envoyé lorsque le captcha est passé et que le commentaire est déposé.
|
||||
- Le mail de notification contient désormais le nom de l'auteur du commentaire ainsi que le commentaire.
|
||||
# Version 8.00
|
||||
|
@ -1,4 +1,6 @@
|
||||
# Versions 4.4
|
||||
# Version 4.5
|
||||
- Remplacement du nom générique de classe dans les vues.
|
||||
# Version 4.4
|
||||
- Le sélecteur de fichier affiche par défaut le chemin vers le fichier présent dans le champ.
|
||||
# Version 4.3
|
||||
- Contrôle de la variable de session liée au contenu. Evite des erreurs lorsque plusieurs onglets sont ouverts.
|
||||
|
@ -17,7 +17,7 @@
|
||||
class form extends common
|
||||
{
|
||||
|
||||
const VERSION = '4.4';
|
||||
const VERSION = '4.5';
|
||||
const REALNAME = 'Formulaire';
|
||||
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
# Version 2.7
|
||||
- Remplacement du nom générique de classe dans les vues.
|
||||
# Version 2.6
|
||||
- Corrige d'un bug empêchat de terminer la procédure d'inscription après approbation.
|
||||
# Version 2.5
|
||||
|
@ -15,7 +15,7 @@
|
||||
class suscribe extends common
|
||||
{
|
||||
|
||||
const VERSION = '2.6';
|
||||
const VERSION = '2.7';
|
||||
const REALNAME = 'Auto Inscription';
|
||||
const DELETE = true;
|
||||
const UPDATE = '0.0';
|
||||
|
@ -25,7 +25,7 @@
|
||||
<h4>Paramètres</h4>
|
||||
<div class="row">
|
||||
<div class="col4">
|
||||
<?php echo template::select('registrationConfigLayout', $module::$layout, [
|
||||
<?php echo template::select('registrationConfigLayout', suscribe::$layout, [
|
||||
'label' => 'Disposition',
|
||||
'selected' => $this->getData(['module', $this->getUrl(0), 'config', 'layout'])
|
||||
]); ?>
|
||||
@ -52,7 +52,7 @@
|
||||
<h4>Communication</h4>
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<?php echo template::select('registrationConfigTimeOut', $module::$timeLimit, [
|
||||
<?php echo template::select('registrationConfigTimeOut', suscribe::$timeLimit, [
|
||||
'label' => 'Validité du lien',
|
||||
'selected' => $this->getData(['module', $this->getUrl(0), 'config', 'timeOut']) / 60
|
||||
]); ?>
|
||||
@ -99,5 +99,5 @@
|
||||
</div>
|
||||
</div>
|
||||
<?php echo template::formClose(); ?>
|
||||
<div class="moduleVersion">Version n°<?php echo $module::VERSION; ?>
|
||||
<div class="moduleVersion">Version n°<?php echo suscribe::VERSION; ?>
|
||||
</div>
|
@ -26,7 +26,7 @@
|
||||
</div>
|
||||
<div class="col4">
|
||||
<?php if ($this->getUser('group') === self::GROUP_ADMIN): ?>
|
||||
<?php echo template::select('registrationUserEditGroup', $module::$groups, [
|
||||
<?php echo template::select('registrationUserEditGroup', suscribe::$groups, [
|
||||
'disabled' => ($this->getUrl(2) === $this->getUser('id')),
|
||||
'help' => ($this->getUrl(2) === $this->getUser('id') ? 'Impossible de modifier votre propre groupe.' : ''),
|
||||
'label' => 'Groupe',
|
||||
@ -37,7 +37,7 @@
|
||||
<div class="col4">
|
||||
<div class="registrationUserEditGroupProfil"
|
||||
id="registrationUserEditGroupProfil<?php echo self::GROUP_MEMBER; ?>">
|
||||
<?php echo template::select('registrationUserEditProfil' . self::GROUP_MEMBER, $module::$userProfils[self::GROUP_MEMBER], [
|
||||
<?php echo template::select('registrationUserEditProfil' . self::GROUP_MEMBER, suscribe::$userProfils[self::GROUP_MEMBER], [
|
||||
'label' => 'Profil',
|
||||
'selected' => $this->getData(['user', $this->getUrl(2), 'profil']),
|
||||
'disabled' => $this->getUser('group') !== self::GROUP_ADMIN,
|
||||
@ -45,7 +45,7 @@
|
||||
</div>
|
||||
<div class="registrationUserEditGroupProfil"
|
||||
id="registrationUserEditGroupProfil<?php echo self::GROUP_EDITOR; ?>">
|
||||
<?php echo template::select('registrationUserEditProfil' . self::GROUP_EDITOR, $module::$userProfils[self::GROUP_EDITOR], [
|
||||
<?php echo template::select('registrationUserEditProfil' . self::GROUP_EDITOR, suscribe::$userProfils[self::GROUP_EDITOR], [
|
||||
'label' => 'Profil',
|
||||
'selected' => $this->getData(['user', $this->getUrl(2), 'profil']),
|
||||
'disabled' => $this->getUser('group') !== self::GROUP_ADMIN,
|
||||
@ -58,7 +58,7 @@
|
||||
class="col12 registrationUserCommentProfil">
|
||||
<?php echo template::textarea('registrationUserEditProfilComment' . self::GROUP_MEMBER, [
|
||||
'label' => 'Commentaire',
|
||||
'value' => implode("\n", $module::$userProfilsComments[self::GROUP_MEMBER]),
|
||||
'value' => implode("\n", suscribe::$userProfilsComments[self::GROUP_MEMBER]),
|
||||
'readonly' => true,
|
||||
|
||||
]);
|
||||
@ -68,7 +68,7 @@
|
||||
class="col12 registrationUserCommentProfil">
|
||||
<?php echo template::textarea('registrationUserEditProfilComment' . self::GROUP_EDITOR, [
|
||||
'label' => 'Commentaire',
|
||||
'value' => implode("\n", $module::$userProfilsComments[self::GROUP_EDITOR]),
|
||||
'value' => implode("\n", suscribe::$userProfilsComments[self::GROUP_EDITOR]),
|
||||
'readonly' => true,
|
||||
|
||||
]);
|
||||
@ -78,7 +78,7 @@
|
||||
class="col12 registrationUserCommentProfil">
|
||||
<?php echo template::textarea('registrationUserEditProfilComment' . self::GROUP_ADMIN, [
|
||||
'label' => 'Commentaire',
|
||||
'value' => implode("\n", $module::$userProfilsComments[self::GROUP_ADMIN]),
|
||||
'value' => implode("\n", suscribe::$userProfilsComments[self::GROUP_ADMIN]),
|
||||
'readonly' => true,
|
||||
]);
|
||||
?>
|
||||
@ -127,7 +127,7 @@
|
||||
<div class="col8">
|
||||
<?php echo template::text('registrationUserState', [
|
||||
'label' => 'État de l\'inscription',
|
||||
'value' => $module::$statusGroups[$this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'status'])],
|
||||
'value' => suscribe::$statusGroups[$this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'status'])],
|
||||
'disabled' => true,
|
||||
'help' => 'En attente : le mail n\'a pas encore été validé<br>Email validé : approbation nécessaire.'
|
||||
]); ?>
|
||||
|
@ -8,8 +8,8 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if($module::$users): ?>
|
||||
<?php echo template::table([3, 3, 2,21, 1, 1], $module::$users, ['Identifiant', 'Nom', 'Etat', 'Date', '', '']); ?>
|
||||
<?php if(suscribe::$users): ?>
|
||||
<?php echo template::table([3, 3, 2,21, 1, 1], suscribe::$users, ['Identifiant', 'Nom', 'Etat', 'Date', '', '']); ?>
|
||||
<?php else: ?>
|
||||
<?php echo template::speech('Pas d\'inscription en attente.'); ?>
|
||||
<?php endif; ?>
|
2
module/workshop/changes.md
Normal file
2
module/workshop/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# Version 1.2
|
||||
- Remplacement du nom générique de classe dans les vues.
|
@ -13,7 +13,7 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<?php echo template::select('coursesConfigCategories', $module::$courseCategories, [
|
||||
<?php echo template::select('coursesConfigCategories', workshop::$courseCategories, [
|
||||
'label' => 'Catégorie à afficher',
|
||||
'selected' => $this->getData(['module', $this->getUrl(0), 'config', 'category'])
|
||||
]); ?>
|
||||
@ -76,7 +76,7 @@
|
||||
</h4>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::select('coursesConfigLayout', $module::$coursesLayout, [
|
||||
<?php echo template::select('coursesConfigLayout', workshop::$coursesLayout, [
|
||||
'label' => 'Présentation en colonnes',
|
||||
'selected' => $this->getData(['module', $this->getUrl(0), 'config', 'layout']),
|
||||
'help' => 'Chaque contenu est présenté dans une colonne'
|
||||
@ -186,5 +186,5 @@
|
||||
|
||||
<?php echo template::formClose(); ?>
|
||||
<div class="moduleVersion">Version n°
|
||||
<?php echo $module::VERSION; ?>
|
||||
<?php echo workshop::VERSION; ?>
|
||||
</div>
|
@ -56,7 +56,7 @@
|
||||
<div class="workshopAccessContainer">
|
||||
<p>
|
||||
<span class="workshopAccess">
|
||||
<?php echo sprintf(helper::translate($module::$coursesAccess[$courseValue['access']]), helper::dateUTF8('%d %B %Y', $courseValue['openingDate']) . helper::translate(' à ') . helper::dateUTF8('%H:%M', $courseValue['openingDate']), helper::dateUTF8('%d %B %Y', $courseValue['closingDate']) . helper::translate(' à ') . helper::dateUTF8('%H:%M', $courseValue['closingDate'])) ?>
|
||||
<?php echo sprintf(helper::translate(workshop::$coursesAccess[$courseValue['access']]), helper::dateUTF8('%d %B %Y', $courseValue['openingDate']) . helper::translate(' à ') . helper::dateUTF8('%H:%M', $courseValue['openingDate']), helper::dateUTF8('%d %B %Y', $courseValue['closingDate']) . helper::translate(' à ') . helper::dateUTF8('%H:%M', $courseValue['closingDate'])) ?>
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
@ -66,7 +66,7 @@
|
||||
<?php if ($this->getData(['module', $this->getUrl(0), 'config', 'enrolment']) === true): ?>
|
||||
<p>
|
||||
<span class="workshopEnrolment">
|
||||
<?php echo $module::$coursesEnrolment[$courseValue['enrolment']]; ?>
|
||||
<?php echo workshop::$coursesEnrolment[$courseValue['enrolment']]; ?>
|
||||
</span>
|
||||
</p>
|
||||
<?php if ($this->getData(['course', $courseId, 'limitEnrolment']) === true): ?>
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
class workshop extends common
|
||||
{
|
||||
const VERSION = '1.01';
|
||||
const VERSION = '1.2';
|
||||
const REALNAME = 'Liste des espaces';
|
||||
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user