mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-26 00:23:33 +03:00
Added var tags in the template comments
This commit is contained in:
parent
5420ef1389
commit
2cc3123a2f
3 changed files with 27 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @property bool $manage_mode
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="wizard-frame-4" class="wizard-frame" style="display:none;">
|
<div id="wizard-frame-4" class="wizard-frame" style="display:none;">
|
||||||
<div class="frame-container">
|
<div class="frame-container">
|
||||||
<h2 class="frame-title"><?= lang('appointment_confirmation') ?></h2>
|
<h2 class="frame-title"><?= lang('appointment_confirmation') ?></h2>
|
||||||
|
|
|
@ -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 id="wizard-frame-3" class="wizard-frame" style="display:none;">
|
||||||
<div class="frame-container">
|
<div class="frame-container">
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @var array $available_services
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="wizard-frame-1" class="wizard-frame">
|
<div id="wizard-frame-1" class="wizard-frame">
|
||||||
<div class="frame-container">
|
<div class="frame-container">
|
||||||
<h2 class="frame-title"><?= lang('service_and_provider') ?></h2>
|
<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
|
// We need the uncategorized services at the end of the list, so we will use another
|
||||||
// another iteration only for the uncategorized services.
|
// iteration only for the uncategorized services.
|
||||||
$grouped_services['uncategorized'] = [];
|
$grouped_services['uncategorized'] = [];
|
||||||
foreach ($available_services as $service)
|
foreach ($available_services as $service)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue