- Messages : 3
- Remerciements reçus 0
Connexion ou Créer un compte pour participer à la conversation.
...
<!-- Event -->
<?php // List of Events Template ?>
<?php // Show event ?>
<?php if ($EVENT_NEXT) : ?>
<?php // try to display how many seats are already booked ?>
<?php // code below taken from icevent_vars
$maxNbTickets = $item->params->get('maxReg', '1000000');
$statutReg = $item->params->get('statutReg', '');
// Set Event information on tickets available/bookable
if ($maxNbTickets != '1000000' && $statutReg == '1')
{
$SEATS_AVAILABLE = ($maxNbTickets - $item->registered);
if ($SEATS_AVAILABLE === 0)
{
$SEATS_AVAILABLE = JText::_('COM_ICAGENDA_REGISTRATION_DATE_NO_TICKETS_LEFT');
}
$MAX_NB_OF_SEATS = $maxNbTickets;
}
// display nr of seats taken vs nr initially available
echo $SEATS_AVAILABLE . '/' . $maxNbTickets . ' Plätze verfügbar <br>';
echo $item->registered;
?>
<?php // end custom code ?>
<?php // Display Date ?>
<div class="ic-box">
...
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.