PluginProbe ʕ •ᴥ•ʔ
VikAppointments Services Booking Calendar / 1.2.21
VikAppointments Services Booking Calendar v1.2.21
1.2.21 1.2.20 trunk 1.2.17 1.2.18 1.2.19
vikappointments / site / views / order / tmpl / default_usernote.php
vikappointments / site / views / order / tmpl Last commit date
default.php 4 days ago default.xml 4 days ago default_appointment.php 4 days ago default_attendees.php 4 days ago default_backbutton.php 4 days ago default_countdown.php 4 days ago default_locations.php 4 days ago default_orderdetails.php 4 days ago default_service.php 4 days ago default_usernote.php 4 days ago default_usernote_block.php 4 days ago index.html 4 days ago track.php 4 days ago
default_usernote.php
45 lines
1 <?php
2 /**
3 * @package VikAppointments
4 * @subpackage core
5 * @author E4J s.r.l.
6 * @copyright Copyright (C) 2021 E4J s.r.l. All Rights Reserved.
7 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
8 * @link https://vikwp.com
9 */
10
11 // No direct access
12 defined('ABSPATH') or die('No script kiddies please!');
13
14 ?>
15
16 <div class="vaporderboxcontent parent-order">
17
18 <!-- BOX TITLE -->
19
20 <div class="vap-order-first">
21
22 <h3 class="vaporderheader vap-head-first"><?php echo JText::translate('VAPORDERTITLE4'); ?></h3>
23
24 </div>
25
26 <!-- CONTENT -->
27
28 <div class="vapordercontentinfo">
29
30 <?php
31 // iterate all notes that belong to the parent order
32 foreach ($this->order->getUserNotes($this->order->id) as $note)
33 {
34 // keep track of the current note
35 $this->itemNote = $note;
36
37 // display the user notes block through an apposite template
38 // to take advantage of reusability
39 echo $this->loadTemplate('usernote_block');
40 }
41 ?>
42
43 </div>
44
45 </div>