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 / admin / layouts / timeline / multiple.php
vikappointments / admin / layouts / timeline Last commit date
index.html 5 days ago multiple.php 5 days ago
multiple.php
35 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 * Layout variables
16 * -----------------
17 * @var array $employees A list of employees.
18 */
19 extract($displayData);
20
21 foreach ($employees as $employee)
22 {
23 ?>
24 <div class="vaptimeline-empblock" data-id="<?php echo $employee['id']; ?>">
25
26 <h3><?php echo $employee['name']; ?></h3>
27
28 <div class="vaptimelinewt">
29 <?php echo $employee['timeline']; ?>
30 </div>
31
32 </div>
33 <?php
34 }
35