| Server IP : 172.67.191.97 / Your IP : 104.23.197.208 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/fcarn/components/com_dpcalendar/tmpl/bookingform/ |
Upload File : |
<?php
/**
* @package DPCalendar
* @copyright Copyright (C) 2022 Digital Peak GmbH. <https://www.digital-peak.com>
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
*/
defined('_JEXEC') or die();
use DigitalPeak\Component\DPCalendar\Administrator\HTML\Block\Icon;
if ($this->bookingId) {
return;
}
$counter = 1;
?>
<div class="com-dpcalendar-bookingform__step dp-steps">
<span class="dp-step dp-step-choose dp-step_active">
<span class="dp-step__number"><?php echo $counter++; ?></span>
</span>
<?php if ($this->params->get('booking_review_step', 2)) { ?>
<span class="dp-steps__separator"><?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::NEXT]); ?></span>
<span class="dp-step dp-step-configure">
<span class="dp-step__number"><?php echo $counter++; ?></span>
</span>
<?php } ?>
<?php if (!$this->needsPayment && $this->params->get('booking_confirm_step', 1)) { ?>
<span class="dp-steps__separator"><?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::NEXT]); ?></span>
<span class="dp-step dp-step-confirm ">
<span class="dp-step__number"><?php echo $counter++; ?></span>
</span>
<?php } elseif ($this->needsPayment) { ?>
<span class="dp-steps__separator"><?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::NEXT]); ?></span>
<span class="dp-step dp-step-provider">
<span class="dp-step__number"><?php echo $counter++; ?></span>
</span>
<span class="dp-steps__separator"><?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::NEXT]); ?></span>
<span class="dp-step dp-step-pay">
<span class="dp-step__number"><?php echo $counter++; ?></span>
</span>
<?php } ?>
</div>