forked from ZwiiCMS-Team/ZwiiCampus
workshop tient compte des restrictions d'inscriptions
This commit is contained in:
parent
3c4e5f7d05
commit
9c23902d63
@ -165,6 +165,15 @@
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col4">
|
||||
<?php echo template::text('coursesCaptionEnrolmentLimit', [
|
||||
'label' => 'Limitation date inscription',
|
||||
'value' => $this->getData(['module', $this->getUrl(0), 'caption', 'enrolmentLimit']),
|
||||
'help' => 'Classe CSS de la division : workshopEnrolmentLimit'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -8,7 +8,8 @@
|
||||
<div class="row workshopRowContainer">
|
||||
<?php endif; ?>
|
||||
<!-- Layout en colonnes -->
|
||||
<div class="workshopItemContainer col<?php echo $this->getData(['module', $this->getUrl(0), 'config', 'layout']); ?>">
|
||||
<div
|
||||
class="workshopItemContainer col<?php echo $this->getData(['module', $this->getUrl(0), 'config', 'layout']); ?>">
|
||||
<!-- Affchage par bloc et bordure -->
|
||||
<?php if ($this->getData(['module', $this->getUrl(0), 'config', 'template']) === true): ?>
|
||||
<div class="block">
|
||||
@ -62,8 +63,11 @@
|
||||
<?php echo $module::$coursesEnrolment[$courseValue['enrolment']]; ?>
|
||||
</span>
|
||||
</p>
|
||||
<?php if ($this->getData(['course', $courseId, 'limitEnrolment']) === true ):?>
|
||||
<?php echo $this->getData(['module', $this->getUrl(0), 'caption', 'enrolmentLimit']); ?>
|
||||
<?php echo helper::dateUTF8(' %d %B %Y', $this->getData(['course', $courseId, 'limitEnrolmentDate']), self::$i18nUI) . helper::translate(' à ') . helper::dateUTF8('%H:%M', $this->getData(['course', $courseId, 'limitEnrolmentDate']), self::$i18nUI); ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- Lien accès au contenu-->
|
||||
<div class="row">
|
||||
<div class="col6 workshopLinkContainer">
|
||||
|
@ -41,25 +41,26 @@ class workshop extends common
|
||||
public static $coursesEnrolment = [];
|
||||
|
||||
public static $default = [
|
||||
"config" => array(
|
||||
"category" => "general",
|
||||
"title" => true,
|
||||
"author" => true,
|
||||
"description" => true,
|
||||
"access" => true,
|
||||
"enrolment" => true,
|
||||
"layout" => 6,
|
||||
"template" => true
|
||||
'config' => array(
|
||||
'category' => 'general',
|
||||
'title' => true,
|
||||
'author' => true,
|
||||
'description' => true,
|
||||
'access' => true,
|
||||
'enrolment' => true,
|
||||
'layout' => 6,
|
||||
'template' => true
|
||||
),
|
||||
"caption" => array(
|
||||
"accessopen" => "Ouvert",
|
||||
"accessdate" => "Période d'ouverture du %s au %s",
|
||||
"accessclose" => "Fermé",
|
||||
"enrolguest" => "Anonyme",
|
||||
"enrolself" => "Membres",
|
||||
"enrolselfkey" => "Membres avec clé",
|
||||
"url" => "Accéder au contenu",
|
||||
"unsuscribe" => "Me désinscrire"
|
||||
'caption' => array(
|
||||
'accessopen' => 'Ouvert',
|
||||
'accessdate' => 'Période d'ouverture du %s au %s',
|
||||
'accessclose' => 'Fermé',
|
||||
'enrolguest' => 'Anonyme',
|
||||
'enrolself' => 'Membres',
|
||||
'enrolselfkey' => 'Membres avec clé',
|
||||
'url' => 'Accéder au contenu',
|
||||
'unsuscribe' => 'Me désinscrire',
|
||||
'enrolmentLimit' => 'Date limite des inscriptions',
|
||||
)
|
||||
];
|
||||
|
||||
@ -108,6 +109,7 @@ class workshop extends common
|
||||
'enrolselfkey' => $this->getInput('coursesCaptionSelfKey', helper::FILTER_STRING_SHORT),
|
||||
'url' => $this->getInput('coursesCaptionUrl', helper::FILTER_STRING_SHORT),
|
||||
'unsuscribe' => $this->getInput('coursesCaptionUnsuscribe', helper::FILTER_STRING_SHORT),
|
||||
'enrolmentLimit' => $this->getInput('coursesCaptionEnrolmentLimit', helper::FILTER_STRING_SHORT),
|
||||
]
|
||||
]);
|
||||
// Valeurs en sortie
|
||||
|
Loading…
Reference in New Issue
Block a user