mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Moved the modal view files to a new modals directory
This commit is contained in:
parent
fb92fa1832
commit
2068f70840
7 changed files with 6 additions and 5 deletions
|
@ -419,15 +419,15 @@
|
|||
</div>
|
||||
|
||||
<?php if ($display_cookie_notice === '1'): ?>
|
||||
<?php require 'cookie_notice_modal.php' ?>
|
||||
<?php require __DIR__ . '/../modals/cookie_notice_modal.php' ?>
|
||||
<?php endif ?>
|
||||
|
||||
<?php if ($display_terms_and_conditions === '1'): ?>
|
||||
<?php require 'terms_and_conditions_modal.php' ?>
|
||||
<?php require __DIR__ . '/../modals/terms_and_conditions_modal.php' ?>
|
||||
<?php endif ?>
|
||||
|
||||
<?php if ($display_privacy_policy === '1'): ?>
|
||||
<?php require 'privacy_policy_modal.php' ?>
|
||||
<?php require __DIR__ . '/../modals/privacy_policy_modal.php' ?>
|
||||
<?php endif ?>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -495,5 +495,5 @@
|
|||
|
||||
<!-- WORKING PLAN EXCEPTIONS MODAL -->
|
||||
|
||||
<?php require __DIR__ . '/working_plan_exceptions_modal.php' ?>
|
||||
<?php require __DIR__ . '/../modals/working_plan_exceptions_modal.php' ?>
|
||||
|
||||
|
|
|
@ -358,7 +358,7 @@
|
|||
<tbody><!-- Dynamic Content --></tbody>
|
||||
</table>
|
||||
|
||||
<?php require __DIR__ . '/working_plan_exceptions_modal.php' ?>
|
||||
<?php require __DIR__ . '/../modals/working_plan_exceptions_modal.php' ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
<div class="modal" id="working-plan-exceptions-modal" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
Loading…
Reference in a new issue