Added var tags in the template comments

This commit is contained in:
Alex Tselegidis 2021-12-17 10:59:07 +01:00
parent 5420ef1389
commit 2cc3123a2f
3 changed files with 27 additions and 2 deletions

View file

@ -1,3 +1,9 @@
<?php
/**
* @property bool $manage_mode
*/
?>
<div id="wizard-frame-4" class="wizard-frame" style="display:none;">
<div class="frame-container">
<h2 class="frame-title"><?= lang('appointment_confirmation') ?></h2>

View file

@ -1,3 +1,16 @@
<?php
/**
* @var string $require_phone_number
* @var string $show_phone_number
* @var string $show_address
* @var string $show_city
* @var string $show_zip_code
* @var string $show_notes
* @var string $display_terms_and_conditions
* @var string $display_privacy_policy
*/
?>
<div id="wizard-frame-3" class="wizard-frame" style="display:none;">
<div class="frame-container">

View file

@ -1,3 +1,9 @@
<?php
/**
* @var array $available_services
*/
?>
<div id="wizard-frame-1" class="wizard-frame">
<div class="frame-container">
<h2 class="frame-title"><?= lang('service_and_provider') ?></h2>
@ -39,8 +45,8 @@
}
}
// We need the uncategorized services at the end of the list so we will use
// another iteration only for the uncategorized services.
// We need the uncategorized services at the end of the list, so we will use another
// iteration only for the uncategorized services.
$grouped_services['uncategorized'] = [];
foreach ($available_services as $service)
{